|
| 1 | +package redis.clients.jedis.scenario; |
| 2 | + |
| 3 | +import io.github.resilience4j.circuitbreaker.CircuitBreakerConfig; |
| 4 | +import org.junit.BeforeClass; |
| 5 | +import org.junit.Test; |
| 6 | +import org.slf4j.Logger; |
| 7 | +import org.slf4j.LoggerFactory; |
| 8 | +import redis.clients.jedis.*; |
| 9 | +import redis.clients.jedis.providers.MultiClusterPooledConnectionProvider; |
| 10 | +import redis.clients.jedis.exceptions.JedisConnectionException; |
| 11 | + |
| 12 | +import java.io.IOException; |
| 13 | +import java.time.Duration; |
| 14 | +import java.time.Instant; |
| 15 | +import java.util.HashMap; |
| 16 | +import java.util.Map; |
| 17 | +import java.util.concurrent.atomic.AtomicLong; |
| 18 | +import java.util.concurrent.atomic.AtomicReference; |
| 19 | +import java.util.function.Consumer; |
| 20 | + |
| 21 | +import static org.junit.Assert.*; |
| 22 | + |
| 23 | +public class ActiveActiveFailoverTest { |
| 24 | + private static final Logger log = LoggerFactory.getLogger(ActiveActiveFailoverTest.class); |
| 25 | + |
| 26 | + private static EndpointConfig endpoint; |
| 27 | + |
| 28 | + private final FaultInjectionClient faultClient = new FaultInjectionClient(); |
| 29 | + |
| 30 | + @BeforeClass |
| 31 | + public static void beforeClass() { |
| 32 | + try { |
| 33 | + ActiveActiveFailoverTest.endpoint = HostAndPorts.getRedisEndpoint("re-active-active"); |
| 34 | + } catch (IllegalArgumentException e) { |
| 35 | + log.warn("Skipping test because no Redis endpoint is configured"); |
| 36 | + org.junit.Assume.assumeTrue(false); |
| 37 | + } |
| 38 | + } |
| 39 | + |
| 40 | + @Test |
| 41 | + public void testFailover() { |
| 42 | + |
| 43 | + MultiClusterClientConfig.ClusterConfig[] clusterConfig = new MultiClusterClientConfig.ClusterConfig[2]; |
| 44 | + |
| 45 | + JedisClientConfig config = endpoint.getClientConfigBuilder() |
| 46 | + .socketTimeoutMillis(RecommendedSettings.DEFAULT_TIMEOUT_MS) |
| 47 | + .connectionTimeoutMillis(RecommendedSettings.DEFAULT_TIMEOUT_MS).build(); |
| 48 | + |
| 49 | + clusterConfig[0] = new MultiClusterClientConfig.ClusterConfig(endpoint.getHostAndPort(0), |
| 50 | + config, RecommendedSettings.poolConfig); |
| 51 | + clusterConfig[1] = new MultiClusterClientConfig.ClusterConfig(endpoint.getHostAndPort(1), |
| 52 | + config, RecommendedSettings.poolConfig); |
| 53 | + |
| 54 | + MultiClusterClientConfig.Builder builder = new MultiClusterClientConfig.Builder(clusterConfig); |
| 55 | + |
| 56 | + builder.circuitBreakerSlidingWindowType(CircuitBreakerConfig.SlidingWindowType.TIME_BASED); |
| 57 | + builder.circuitBreakerSlidingWindowSize(1); // SLIDING WINDOW SIZE IN SECONDS |
| 58 | + builder.circuitBreakerSlidingWindowMinCalls(1); |
| 59 | + builder.circuitBreakerFailureRateThreshold(10.0f); // percentage of failures to trigger circuit breaker |
| 60 | + |
| 61 | + builder.retryWaitDuration(10); |
| 62 | + builder.retryMaxAttempts(1); |
| 63 | + builder.retryWaitDurationExponentialBackoffMultiplier(1); |
| 64 | + |
| 65 | + class FailoverReporter implements Consumer<String> { |
| 66 | + |
| 67 | + String currentClusterName = "not set"; |
| 68 | + |
| 69 | + boolean failoverHappened = false; |
| 70 | + |
| 71 | + Instant failoverAt = null; |
| 72 | + |
| 73 | + public String getCurrentClusterName() { |
| 74 | + return currentClusterName; |
| 75 | + } |
| 76 | + |
| 77 | + @Override |
| 78 | + public void accept(String clusterName) { |
| 79 | + this.currentClusterName = clusterName; |
| 80 | + log.info( |
| 81 | + "\n\n====FailoverEvent=== \nJedis failover to cluster: {}\n====FailoverEvent===\n\n", |
| 82 | + clusterName); |
| 83 | + |
| 84 | + failoverHappened = true; |
| 85 | + failoverAt = Instant.now(); |
| 86 | + } |
| 87 | + } |
| 88 | + |
| 89 | + MultiClusterPooledConnectionProvider provider = new MultiClusterPooledConnectionProvider( |
| 90 | + builder.build()); |
| 91 | + FailoverReporter reporter = new FailoverReporter(); |
| 92 | + provider.setClusterFailoverPostProcessor(reporter); |
| 93 | + provider.setActiveMultiClusterIndex(1); |
| 94 | + |
| 95 | + UnifiedJedis client = new UnifiedJedis(provider); |
| 96 | + |
| 97 | + AtomicLong retryingThreadsCounter = new AtomicLong(0); |
| 98 | + AtomicLong failedCommandsAfterFailover = new AtomicLong(0); |
| 99 | + AtomicReference<Instant> lastFailedCommandAt = new AtomicReference<>(); |
| 100 | + |
| 101 | + // Start thread that imitates an application that uses the client |
| 102 | + MultiThreadedFakeApp fakeApp = new MultiThreadedFakeApp(client, (UnifiedJedis c) -> { |
| 103 | + |
| 104 | + long threadId = Thread.currentThread().getId(); |
| 105 | + |
| 106 | + int attempt = 0; |
| 107 | + int maxTries = 500; |
| 108 | + int retryingDelay = 5; |
| 109 | + while (true) { |
| 110 | + try { |
| 111 | + Map<String, String> executionInfo = new HashMap<String, String>() {{ |
| 112 | + put("threadId", String.valueOf(threadId)); |
| 113 | + put("cluster", reporter.getCurrentClusterName()); |
| 114 | + }}; |
| 115 | + client.xadd("execution_log", StreamEntryID.NEW_ENTRY, executionInfo); |
| 116 | + |
| 117 | + if (attempt > 0) { |
| 118 | + log.info("Thread {} recovered after {} ms. Threads still not recovered: {}", threadId, |
| 119 | + attempt * retryingDelay, retryingThreadsCounter.decrementAndGet()); |
| 120 | + } |
| 121 | + |
| 122 | + break; |
| 123 | + } catch (JedisConnectionException e) { |
| 124 | + |
| 125 | + if (reporter.failoverHappened) { |
| 126 | + long failedCommands = failedCommandsAfterFailover.incrementAndGet(); |
| 127 | + lastFailedCommandAt.set(Instant.now()); |
| 128 | + log.warn( |
| 129 | + "Thread {} failed to execute command after failover. Failed commands after failover: {}", |
| 130 | + threadId, failedCommands); |
| 131 | + } |
| 132 | + |
| 133 | + if (attempt == 0) { |
| 134 | + long failedThreads = retryingThreadsCounter.incrementAndGet(); |
| 135 | + log.warn("Thread {} failed to execute command. Failed threads: {}", threadId, |
| 136 | + failedThreads); |
| 137 | + } |
| 138 | + try { |
| 139 | + Thread.sleep(retryingDelay); |
| 140 | + } catch (InterruptedException ie) { |
| 141 | + throw new RuntimeException(ie); |
| 142 | + } |
| 143 | + if (++attempt == maxTries) throw e; |
| 144 | + } |
| 145 | + } |
| 146 | + return true; |
| 147 | + }, 18); |
| 148 | + fakeApp.setKeepExecutingForSeconds(30); |
| 149 | + Thread t = new Thread(fakeApp); |
| 150 | + t.start(); |
| 151 | + |
| 152 | + HashMap<String, Object> params = new HashMap<>(); |
| 153 | + params.put("bdb_id", endpoint.getBdbId()); |
| 154 | + params.put("rlutil_command", "pause_bdb"); |
| 155 | + |
| 156 | + FaultInjectionClient.TriggerActionResponse actionResponse = null; |
| 157 | + |
| 158 | + try { |
| 159 | + log.info("Triggering bdb_pause"); |
| 160 | + actionResponse = faultClient.triggerAction("execute_rlutil_command", params); |
| 161 | + } catch (IOException e) { |
| 162 | + fail("Fault Injection Server error:" + e.getMessage()); |
| 163 | + } |
| 164 | + |
| 165 | + log.info("Action id: {}", actionResponse.getActionId()); |
| 166 | + fakeApp.setAction(actionResponse); |
| 167 | + |
| 168 | + try { |
| 169 | + t.join(); |
| 170 | + } catch (InterruptedException e) { |
| 171 | + throw new RuntimeException(e); |
| 172 | + } |
| 173 | + |
| 174 | + ConnectionPool pool = provider.getCluster(1).getConnectionPool(); |
| 175 | + |
| 176 | + log.info("First connection pool state: active: {}, idle: {}", pool.getNumActive(), |
| 177 | + pool.getNumIdle()); |
| 178 | + log.info("Full failover time: {} s", |
| 179 | + Duration.between(reporter.failoverAt, lastFailedCommandAt.get()).getSeconds()); |
| 180 | + |
| 181 | + assertEquals(0, pool.getNumActive()); |
| 182 | + assertTrue(fakeApp.capturedExceptions().isEmpty()); |
| 183 | + |
| 184 | + client.close(); |
| 185 | + } |
| 186 | + |
| 187 | +} |
0 commit comments