当前位置: 代码迷 >> 综合 >> Result window is too large, from + size must be less than or equal to [10000]
  详细解决方案

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

热度:36   发布时间:2023-12-05 08:23:33.0

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

 

  相关解决方案