Elasticsearch常见问题汇总——持续更新
Posted 滕哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch常见问题汇总——持续更新相关的知识,希望对你有一定的参考价值。
分页
结果起点超过结果窗口
Caused by: QueryPhaseExecutionException[Result window is too large,
from + size must be less than or equal to: [10000] but was [10020].
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 parameter.]
原因
ES默认的index.max_result_window值是10000
解决方法
方法1 增加指定index的max_result_window
方法2 在elasticsearch.yml中设置全局index.max_result_window
方法3 分页使用ES的scroll api实现
以上是关于Elasticsearch常见问题汇总——持续更新的主要内容,如果未能解决你的问题,请参考以下文章