Dapr Component Resiliency Policy Circuit Breaker Policy Configuration Args
data class DaprComponentResiliencyPolicyCircuitBreakerPolicyConfigurationArgs(val consecutiveErrors: Output<Int>? = null, val intervalInSeconds: Output<Int>? = null, val timeoutInSeconds: Output<Int>? = null) : ConvertibleToJava<DaprComponentResiliencyPolicyCircuitBreakerPolicyConfigurationArgs>
Dapr Component Resiliency Policy Circuit Breaker Policy Configuration.
Properties
Link copied to clipboard
The number of consecutive errors before the circuit is opened.
Link copied to clipboard
The optional interval in seconds after which the error count resets to 0. An interval of 0 will never reset. If not specified, the timeoutInSeconds value will be used.
Link copied to clipboard
The interval in seconds until a retry attempt is made after the circuit is opened.