[Result window is too large, from + size must be less than or equal to: [10000] but was [44232]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level setting.]; }]
因为分页默认是10000之内的,这个时候,你只能去调用api进行改动
curl -XPUT -H "Content-Type: application/json" http://127.0.0.1:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'
curl -H "Content-Type: application/json" -XPUT http://127.0.0.1:18765/*/_settings -d '{ "index" : { "max_result_window" : 999999999}}'