elasticsearch7.0 通过api 分页查询产生的问题

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_29556507/article/details/89842304

[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 -H "Content-Type: application/json"  -XPUT http://127.0.0.1:18765/*/_settings -d '{ "index" : { "max_result_window" : 999999999}}'

猜你喜欢

转载自blog.csdn.net/qq_29556507/article/details/89842304