We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd8072 commit 85587b2Copy full SHA for 85587b2
content/develop/clients/jedis/failover.md
@@ -167,7 +167,7 @@ and [retries](#retry-configuration) (these are explained in more detail below).
167
multiConfig
168
.failureDetector(MultiDbConfig.CircuitBreakerConfig.builder()
169
.slidingWindowSize(2) // Sliding window size as a duration in seconds.
170
- .failureRateThreshold(50.0f) // percentage of failures to trigger circuit breaker
+ .failureRateThreshold(10.0f) // percentage of failures to trigger circuit breaker
171
.minNumOfFailures(500) // Minimum number of failures before circuit breaker is tripped
172
.build())
173
.failbackSupported(true) // Enable failback
0 commit comments