kibanaa电路断路异常

6l7fqoea  于 2021-06-14  发布在  ElasticSearch
关注(0)|答案(2)|浏览(449)
{
statusCode: 429,
error: "Too Many Requests",
message: "[circuit_breaking_exception] [parent] Data too large, data for [<http_request>] would be [2047736072/1.9gb], which is larger than the limit of [2040109465/1.8gb], real usage: [2047736072/1.9gb], new bytes reserved: [0/0b], usages [request=0/0b, fielddata=854525953/814.9mb, in_flight_requests=0/0b, accounting=79344850/75.6mb], with { bytes_wanted=2047736072 & bytes_limit=2040109465 & durability="PERMANENT" }"
}
rseugnpd

rseugnpd1#

断路器用于防止elasticsearch进程死亡,有各种类型的断路器,通过查看日志,可以清楚地发现它正在断开父断路器,要解决此问题,请增加elasticsearch jvm堆大小(推荐)或增加电路限制。

tsm1rwdh

tsm1rwdh2#

正如elasticsearch忍者所暗示的,这个错误通常是由elasticsearch产生的,尽管kibana是显示错误的那个。调整elasticsearch的堆大小通常可以解决此错误。
这应该通过 Xms 以及 Xmx 选择 jvm.options elasticsearch的文件。
https://www.elastic.co/guide/en/elasticsearch/reference/current/important-settings.html#heap-大小设置

相关问题