列出所有索引:
curl 'localhost:9200/_cat/indices?v'
ES分頁超過10000條數(shù)據(jù)以后,頁面查查詢分頁1000頁看不到數(shù)據(jù)解決辦法
使用以下命令:
curl -XPUT ip:9200/ci_ng_log/_settings -H 'Content-Type: application/json' -d '{ "index.max_result_window" :"10000000"}'
ip:9200為es服務(wù)器地址
index為索引名稱
index.max_result_window配置為100萬大小