Circuit Breaker Policy Args
data class CircuitBreakerPolicyArgs(val consecutiveErrors: Output<Int>? = null, val intervalInSeconds: Output<Int>? = null, val maxEjectionPercent: Output<Int>? = null) : ConvertibleToJava<CircuitBreakerPolicyArgs>
Policy that defines circuit breaker conditions
Properties
Link copied to clipboard
Number of consecutive errors before the circuit breaker opens
Link copied to clipboard
The time interval, in seconds, between endpoint checks. This can result in opening the circuit breaker if the check fails as well as closing the circuit breaker if the check succeeds. Defaults to 10s.
Link copied to clipboard
Maximum percentage of hosts that will be ejected after failure threshold has been met