场景
做分页查询,当分页达到一定量的时候,报如下错误:
Result window is too large, from + size must be less than or equal to: [10000] but was [78020]. 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.
原因分析: es对from + size的大小进行限制,必须小于等于10000。
解决方案:
方案一(有风险)
将max_result_window参数阈值调大,在业务中限制分页大小,使from+size<=10000;
具体操作
改法一:
动态更改索引设置,为max_result_window参数赋值足够大的值,此处改法有两种,具体如下:
基于特定索引生效:
PUT <index_name>/_settings
{
"index.max_result_window": <number>
}
基于全局生效配置:
PUT _all/_settings
{
"index.max_result_window": <number>
}
改法二:
修改配置文件elasticsearch.yml,增加下列配置,并重启elasticsearch。
index.max_result_window: 100000000
其中改法一只当前有效,elasticsearch重启失效,改法二重启后生效。
PS:这种改法的确能解决眼前问题(网上教程普遍做法),但是会带来严重的后果,得结合业务去考虑,如果你的业务索引库存储数据量大,即单个文档字段多