Elasticsearch抛出异常

Elasticsearch抛出异常

Elasticsearch抛出异常以下

\"root_cause\":[{\"type\":\"circuit_breaking_exception\",\"reason\":\"[parent] Data too large, data for [<http_request>] would be [16351863432/15.2gb], which is larger than the limit of [16254631936/15.1gb], real usage: [16351862128/15.2gb], new bytes reserved: [1304/1.2kb]\",\"bytes_wanted\":16351863432,\"bytes_limit\":16254631936}],\"type\":\"circuit_breaking_exception\",\"reason\":\"[parent] Data too large, data for [<http_request>] would be [16351863432/15.2gb], which is larger than the limit of [16254631936/15.1gb], real usage: [16351862128/15.2gb], new bytes reserved: [1304/1.2kb]\",\"bytes_wanted\":16351863432,\"bytes_limit\":16254631936},\"status\":429}"}
我将indexs.breaker.request.limit增加到50%。但仍然出现相同的错误
PUT /_cluster/settings
{
  "persistent" : {
    "indices.breaker.request.limit" : "50"
  }
}

最佳答案

而不是增加父级断路器的限制(默认值是70%),您已将其降低到50%,请增加它的值并检查。
请参阅parent-circuit beaker文档以获取更多信息,并来自同一文档

如果

关于amazon-web-services - Elasticsearch抛出异常circuit_breaking_exception,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63880123/

10-11 08:36