kibana显示过多存储桶异常如何增加桶或有更好的方法来处理这个?

vx6bjr1n  于 2021-06-13  发布在  ElasticSearch
关注(0)|答案(1)|浏览(629)

在kibana,桶大小的确切用途是什么?

[esaggs] > Request to Elasticsearch failed: {"error":{"root_cause":[{"type":"too_many_buckets_exception","reason":"Trying to create too many buckets. Must be less than or equal to: [10000] but was [10001]. This limit can be set by changing the [search.max_buckets] cluster level

我得到这个错误,我正在处理10000多个文件,我需要扩大桶的大小?目前我使用bucket size作为默认值。

efzxgjgh

efzxgjgh1#

如es官方文件所述,
search.max\u bucket(dynamic,integer)单个响应中允许的最大聚合bucket数。默认为10000。
尝试返回超过此限制的请求将返回错误。 max_buckets 设置在群集级别设置中可用,您可以使用以下命令更改它(但它可能会对您的群集产生不利影响)

PUT _cluster/settings
{
  "transient": {
    "search.max_buckets": 20000
  }
}

请参阅此讨论帖子,了解更多信息。

相关问题