|
| 1 | +package org.hypertrace.circuitbreaker.grpcutils; |
| 2 | + |
| 3 | +import com.typesafe.config.Config; |
| 4 | +import java.util.Map; |
| 5 | +import java.util.Set; |
| 6 | +import java.util.stream.Collectors; |
| 7 | +import lombok.extern.slf4j.Slf4j; |
| 8 | + |
| 9 | +@Slf4j |
| 10 | +public class CircuitBreakerConfigParser { |
| 11 | + |
| 12 | + // Percentage of failures to trigger OPEN state |
| 13 | + private static final String FAILURE_RATE_THRESHOLD = "failureRateThreshold"; |
| 14 | + // Percentage of slow calls to trigger OPEN state |
| 15 | + private static final String SLOW_CALL_RATE_THRESHOLD = "slowCallRateThreshold"; |
| 16 | + // Define what a "slow" call is |
| 17 | + private static final String SLOW_CALL_DURATION_THRESHOLD = "slowCallDurationThreshold"; |
| 18 | + // Number of calls to consider in the sliding window |
| 19 | + private static final String SLIDING_WINDOW_SIZE = "slidingWindowSize"; |
| 20 | + // Time before retrying after OPEN state |
| 21 | + private static final String WAIT_DURATION_IN_OPEN_STATE = "waitDurationInOpenState"; |
| 22 | + // Minimum calls before evaluating failure rate |
| 23 | + private static final String MINIMUM_NUMBER_OF_CALLS = "minimumNumberOfCalls"; |
| 24 | + // Calls allowed in HALF_OPEN state before deciding to |
| 25 | + // CLOSE or OPEN again |
| 26 | + private static final String PERMITTED_NUMBER_OF_CALLS_IN_HALF_OPEN_STATE = |
| 27 | + "permittedNumberOfCallsInHalfOpenState"; |
| 28 | + private static final String SLIDING_WINDOW_TYPE = "slidingWindowType"; |
| 29 | + public static final String ENABLED = "enabled"; |
| 30 | + public static final String DEFAULT_THRESHOLDS = "defaultThresholds"; |
| 31 | + private static final Set<String> NON_THRESHOLD_KEYS = Set.of(ENABLED, DEFAULT_THRESHOLDS); |
| 32 | + |
| 33 | + public static <T> CircuitBreakerConfiguration.CircuitBreakerConfigurationBuilder<T> parseConfig( |
| 34 | + Config config) { |
| 35 | + CircuitBreakerConfiguration.CircuitBreakerConfigurationBuilder<T> builder = |
| 36 | + CircuitBreakerConfiguration.builder(); |
| 37 | + if (config.hasPath(ENABLED)) { |
| 38 | + builder.enabled(config.getBoolean(ENABLED)); |
| 39 | + } |
| 40 | + |
| 41 | + Map<String, CircuitBreakerThresholds> circuitBreakerThresholdsMap = |
| 42 | + config.root().keySet().stream() |
| 43 | + .filter(key -> !NON_THRESHOLD_KEYS.contains(key)) // Filter out non-threshold keys |
| 44 | + .collect( |
| 45 | + Collectors.toMap( |
| 46 | + key -> key, // Circuit breaker key |
| 47 | + key -> buildCircuitBreakerThresholds(config.getConfig(key)))); |
| 48 | + |
| 49 | + builder.defaultThresholds( |
| 50 | + config.hasPath(DEFAULT_THRESHOLDS) |
| 51 | + ? buildCircuitBreakerThresholds(config.getConfig(DEFAULT_THRESHOLDS)) |
| 52 | + : buildCircuitBreakerDefaultThresholds()); |
| 53 | + |
| 54 | + builder.circuitBreakerThresholdsMap(circuitBreakerThresholdsMap); |
| 55 | + log.debug("Loaded circuit breaker configs: {}", builder); |
| 56 | + return builder; |
| 57 | + } |
| 58 | + |
| 59 | + private static CircuitBreakerThresholds buildCircuitBreakerThresholds(Config config) { |
| 60 | + CircuitBreakerThresholds.CircuitBreakerThresholdsBuilder builder = |
| 61 | + CircuitBreakerThresholds.builder(); |
| 62 | + |
| 63 | + if (config.hasPath(FAILURE_RATE_THRESHOLD)) { |
| 64 | + builder.failureRateThreshold((float) config.getDouble(FAILURE_RATE_THRESHOLD)); |
| 65 | + } |
| 66 | + |
| 67 | + if (config.hasPath(SLOW_CALL_RATE_THRESHOLD)) { |
| 68 | + builder.slowCallRateThreshold((float) config.getDouble(SLOW_CALL_RATE_THRESHOLD)); |
| 69 | + } |
| 70 | + |
| 71 | + if (config.hasPath(SLOW_CALL_DURATION_THRESHOLD)) { |
| 72 | + builder.slowCallDurationThreshold(config.getDuration(SLOW_CALL_DURATION_THRESHOLD)); |
| 73 | + } |
| 74 | + |
| 75 | + if (config.hasPath(SLIDING_WINDOW_TYPE)) { |
| 76 | + builder.slidingWindowType(getSlidingWindowType(config.getString(SLIDING_WINDOW_TYPE))); |
| 77 | + } |
| 78 | + |
| 79 | + if (config.hasPath(SLIDING_WINDOW_SIZE)) { |
| 80 | + builder.slidingWindowSize(config.getInt(SLIDING_WINDOW_SIZE)); |
| 81 | + } |
| 82 | + |
| 83 | + if (config.hasPath(WAIT_DURATION_IN_OPEN_STATE)) { |
| 84 | + builder.waitDurationInOpenState(config.getDuration(WAIT_DURATION_IN_OPEN_STATE)); |
| 85 | + } |
| 86 | + |
| 87 | + if (config.hasPath(PERMITTED_NUMBER_OF_CALLS_IN_HALF_OPEN_STATE)) { |
| 88 | + builder.permittedNumberOfCallsInHalfOpenState( |
| 89 | + config.getInt(PERMITTED_NUMBER_OF_CALLS_IN_HALF_OPEN_STATE)); |
| 90 | + } |
| 91 | + |
| 92 | + if (config.hasPath(MINIMUM_NUMBER_OF_CALLS)) { |
| 93 | + builder.minimumNumberOfCalls(config.getInt(MINIMUM_NUMBER_OF_CALLS)); |
| 94 | + } |
| 95 | + |
| 96 | + if (config.hasPath(ENABLED)) { |
| 97 | + builder.enabled(config.getBoolean(ENABLED)); |
| 98 | + } |
| 99 | + |
| 100 | + return builder.build(); |
| 101 | + } |
| 102 | + |
| 103 | + public static CircuitBreakerThresholds buildCircuitBreakerDefaultThresholds() { |
| 104 | + return CircuitBreakerThresholds.builder().build(); |
| 105 | + } |
| 106 | + |
| 107 | + private static CircuitBreakerThresholds.SlidingWindowType getSlidingWindowType( |
| 108 | + String slidingWindowType) { |
| 109 | + return CircuitBreakerThresholds.SlidingWindowType.valueOf(slidingWindowType); |
| 110 | + } |
| 111 | +} |
0 commit comments