{
'error': {
'type': 'circuit_breaking_exception',
'reason': '[parent] Data too large, data for [<http_request>] would be [123848638/118.1mb], which is larger than the limit of [123273216/117.5mb], real usage: [120182112/114.6mb], new bytes reserved: [3666526/3.4mb]',
'bytes_wanted': 123848638,
'bytes_limit': 123273216,
'durability': 'TRANSIENT'
},
'status': 429
}
I am getting a circuit breaker exception. I am trying to understand the error message.
- [123273216/117.5mb] - parent circuit breaker limit (95%).
- new bytes reserved [3666526/3.4mb] - this means the new request memory needs
- [123848638/118.1mb] - current heap + new bytes reserved
- real usage: [120182112/114.6mb] - current heap status
Is my understanding correct?