Result window is too large, from + size must be less than or equal to [10000]

ES 分页查询时,默认最大信息条数 10000
当size超过10000时报错
Result window is too large, from + size must be less than or equal to [10000]

此时只用设置 

max_result_window 得值即可
curl -XPUT http://127.0.0.1:9200/mokao_bank_2/_settings -H 'Content-Type: application/json' -d "{ \"index\" : { \"max_result_window\" : 2000000}}"

服务器上可执行

curl -H "Content-Type: application/json" -X PUT 'http://127.0.0.1:9200/mokao_bank_2/_settings?preserve_existing=true' -d '{"max_result_window" : "2000000"}'

 

你可能感兴趣的:(Elasticsearch)