Circuit Breaker
Configuration
{
"name" : "cb",
"enabled" : true,
"config" : {
"name": "my-circuit-breaker",
"timeout" : 1000,
"max_concurrent_requests": 100,
"error_percent_threshold": 50,
"request_volume_threshold": 20,
"sleep_window": 5000,
"predicate": "statusCode == 0 || statusCode >= 500"
}
}Last updated
Was this helpful?