在顺利工作了 10 多个月之后,我在进行简单的搜索查询时突然开始在生产中出现此错误。
{
"error" : {
"root_cause" : [
{
"type" : "circuit_breaking_exception",
"reason" : "[parent] Data too large, data for [<http_request>] would be [745522124/710.9mb], which is larger than the limit of [745517875/710.9mb]",
"bytes_wanted" : 745522124,
"bytes_limit" : 745517875
}
],
"type" : "circuit_breaking_exception",
"reason" : "[parent] Data too large, data for [<http_request>] would be [745522124/710.9mb], which is larger than the limit of [745517875/710.9mb]",
"bytes_wanted" : 745522124,
"bytes_limit" : 745517875
},
"status" : 503
}
Run Code Online (Sandbox Code Playgroud)
最初,我在执行简单术语查询时遇到此错误,当我收到此circuit_breaking_exception错误时,为了调试此错误,我在 elasticsearch …