You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support sliding window based circuit breaker config.
Detailed Description
Failsafe allows to configure sliding window based circuit breaker config, which is what we actually need in most cases (compared to the ratio based configuration currently exposed).
A time based circuit breaker can be configured to open when a number of failures occur within a time period:
breaker.withFailureThreshold(3, Duration.ofMinutes(1));
Support sliding window based circuit breaker config.
Detailed Description
Failsafe allows to configure sliding window based circuit breaker config, which is what we actually need in most cases (compared to the ratio based configuration currently exposed).
Context
riptide-spring-boot-autoconfigure currently seems to not support this time-based approach.
The text was updated successfully, but these errors were encountered: