更新时间:2023-06-20 GMT+08:00

Elasticsearch集群如何设置search.max_buckets参数?

问题描述

CSS默认限制查找条目为10000,如果查询结果在分片上找到的条目超过了限定的10000个,需要调大search.max_buckets参数值。

解决方案

在kibana的“Dev Tools”页面执行如下命令:
PUT _cluster/settings
{
    "persistent": {
        "search.max_buckets": 20000
    }
}