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"}'

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章