列出所有索引:
curl 'localhost:9200/_cat/indices?v'
ES分页超过10000条数据以后,页面查查询分页1000页看不到数据解决办法
使用以下命令:
curl -XPUT ip:9200/ci_ng_log/_settings -H 'Content-Type: application/json' -d '{ "index.max_result_window" :"10000000"}'
ip:9200为es服务器地址
index为索引名称
index.max_result_window配置为100万大小