|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | + * contributor license agreements. See the NOTICE file distributed with |
| 4 | + * this work for additional information regarding copyright ownership. |
| 5 | + * The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | + * (the "License"); you may not use this file except in compliance with |
| 7 | + * the License. You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | + |
| 18 | +package org.apache.rocketmq.broker.client; |
| 19 | + |
| 20 | +import io.netty.channel.Channel; |
| 21 | +import org.apache.rocketmq.common.BrokerConfig; |
| 22 | +import org.apache.rocketmq.common.consumer.ConsumeFromWhere; |
| 23 | +import org.apache.rocketmq.remoting.protocol.LanguageCode; |
| 24 | +import org.apache.rocketmq.remoting.protocol.heartbeat.ConsumeType; |
| 25 | +import org.apache.rocketmq.remoting.protocol.heartbeat.MessageModel; |
| 26 | +import org.apache.rocketmq.remoting.protocol.heartbeat.SubscriptionData; |
| 27 | +import org.apache.rocketmq.store.stats.BrokerStatsManager; |
| 28 | +import org.junit.Before; |
| 29 | +import org.junit.Test; |
| 30 | + |
| 31 | +import java.util.HashSet; |
| 32 | +import java.util.Set; |
| 33 | +import java.util.concurrent.CountDownLatch; |
| 34 | +import java.util.concurrent.ExecutorService; |
| 35 | +import java.util.concurrent.Executors; |
| 36 | +import java.util.concurrent.TimeUnit; |
| 37 | +import java.util.concurrent.atomic.AtomicInteger; |
| 38 | + |
| 39 | +import static org.assertj.core.api.Assertions.assertThat; |
| 40 | +import static org.mockito.Mockito.mock; |
| 41 | + |
| 42 | +/** |
| 43 | + * Test concurrent registration to verify thread safety of ConsumerManager. |
| 44 | + * This test ensures that the fix for the concurrent HashSet modification bug works correctly. |
| 45 | + */ |
| 46 | +public class ConsumerManagerConcurrentTest { |
| 47 | + |
| 48 | + private ConsumerManager consumerManager; |
| 49 | + private final BrokerConfig brokerConfig = new BrokerConfig(); |
| 50 | + |
| 51 | + @Before |
| 52 | + public void before() { |
| 53 | + DefaultConsumerIdsChangeListener defaultConsumerIdsChangeListener = |
| 54 | + new DefaultConsumerIdsChangeListener(null); |
| 55 | + BrokerStatsManager brokerStatsManager = new BrokerStatsManager(brokerConfig); |
| 56 | + consumerManager = new ConsumerManager(defaultConsumerIdsChangeListener, brokerStatsManager, brokerConfig); |
| 57 | + } |
| 58 | + |
| 59 | + /** |
| 60 | + * Test concurrent consumer registration for the same topic. |
| 61 | + * This test verifies that no data is lost when multiple threads register consumers concurrently. |
| 62 | + * |
| 63 | + * Before fix: Using HashSet in topicGroupTable could cause data loss (60% reproduction rate) |
| 64 | + * After fix: Using ConcurrentHashMap.newKeySet() ensures thread safety |
| 65 | + */ |
| 66 | + @Test |
| 67 | + public void testConcurrentRegisterConsumer() throws InterruptedException { |
| 68 | + int threadCount = 100; |
| 69 | + String topic = "TestTopic"; |
| 70 | + |
| 71 | + ExecutorService executor = Executors.newFixedThreadPool(50); |
| 72 | + CountDownLatch startLatch = new CountDownLatch(1); |
| 73 | + CountDownLatch endLatch = new CountDownLatch(threadCount); |
| 74 | + AtomicInteger successCount = new AtomicInteger(0); |
| 75 | + |
| 76 | + for (int i = 0; i < threadCount; i++) { |
| 77 | + final int index = i; |
| 78 | + executor.submit(() -> { |
| 79 | + try { |
| 80 | + startLatch.await(); |
| 81 | + |
| 82 | + String group = "Group_" + index; |
| 83 | + Channel channel = mock(Channel.class); |
| 84 | + ClientChannelInfo clientChannelInfo = new ClientChannelInfo( |
| 85 | + channel, "Client_" + index, LanguageCode.JAVA, 1); |
| 86 | + |
| 87 | + Set<SubscriptionData> subList = new HashSet<>(); |
| 88 | + subList.add(new SubscriptionData(topic, "*")); |
| 89 | + |
| 90 | + boolean registered = consumerManager.registerConsumer( |
| 91 | + group, |
| 92 | + clientChannelInfo, |
| 93 | + ConsumeType.CONSUME_PASSIVELY, |
| 94 | + MessageModel.CLUSTERING, |
| 95 | + ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET, |
| 96 | + subList, |
| 97 | + false |
| 98 | + ); |
| 99 | + |
| 100 | + if (registered) { |
| 101 | + successCount.incrementAndGet(); |
| 102 | + } |
| 103 | + } catch (InterruptedException e) { |
| 104 | + Thread.currentThread().interrupt(); |
| 105 | + } finally { |
| 106 | + endLatch.countDown(); |
| 107 | + } |
| 108 | + }); |
| 109 | + } |
| 110 | + |
| 111 | + // Start all threads at the same time to maximize contention |
| 112 | + startLatch.countDown(); |
| 113 | + |
| 114 | + // Wait for all threads to complete |
| 115 | + boolean finished = endLatch.await(10, TimeUnit.SECONDS); |
| 116 | + assertThat(finished).isTrue(); |
| 117 | + executor.shutdown(); |
| 118 | + |
| 119 | + // Verify the result |
| 120 | + HashSet<String> groups = consumerManager.queryTopicConsumeByWho(topic); |
| 121 | + |
| 122 | + // After fix, we should have exactly threadCount groups (no data loss) |
| 123 | + assertThat(groups.size()).isEqualTo(threadCount); |
| 124 | + assertThat(successCount.get()).isEqualTo(threadCount); |
| 125 | + } |
| 126 | + |
| 127 | + /** |
| 128 | + * Test concurrent registration with multiple runs to ensure consistency. |
| 129 | + */ |
| 130 | + @Test |
| 131 | + public void testConcurrentRegisterConsistency() throws InterruptedException { |
| 132 | + int iterations = 10; |
| 133 | + int threadCount = 50; |
| 134 | + |
| 135 | + for (int iter = 0; iter < iterations; iter++) { |
| 136 | + final int iteration = iter; |
| 137 | + String topic = "Topic_" + iteration; |
| 138 | + |
| 139 | + ExecutorService executor = Executors.newFixedThreadPool(30); |
| 140 | + CountDownLatch startLatch = new CountDownLatch(1); |
| 141 | + CountDownLatch endLatch = new CountDownLatch(threadCount); |
| 142 | + |
| 143 | + for (int i = 0; i < threadCount; i++) { |
| 144 | + final int index = i; |
| 145 | + final String topicFinal = topic; |
| 146 | + executor.submit(() -> { |
| 147 | + try { |
| 148 | + startLatch.await(); |
| 149 | + |
| 150 | + String group = "Group_" + iteration + "_" + index; |
| 151 | + Channel channel = mock(Channel.class); |
| 152 | + ClientChannelInfo clientChannelInfo = new ClientChannelInfo( |
| 153 | + channel, "Client_" + index, LanguageCode.JAVA, 1); |
| 154 | + |
| 155 | + Set<SubscriptionData> subList = new HashSet<>(); |
| 156 | + subList.add(new SubscriptionData(topicFinal, "*")); |
| 157 | + |
| 158 | + consumerManager.registerConsumer( |
| 159 | + group, |
| 160 | + clientChannelInfo, |
| 161 | + ConsumeType.CONSUME_PASSIVELY, |
| 162 | + MessageModel.CLUSTERING, |
| 163 | + ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET, |
| 164 | + subList, |
| 165 | + false |
| 166 | + ); |
| 167 | + } catch (InterruptedException e) { |
| 168 | + Thread.currentThread().interrupt(); |
| 169 | + } finally { |
| 170 | + endLatch.countDown(); |
| 171 | + } |
| 172 | + }); |
| 173 | + } |
| 174 | + |
| 175 | + startLatch.countDown(); |
| 176 | + boolean finished = endLatch.await(5, TimeUnit.SECONDS); |
| 177 | + assertThat(finished).isTrue(); |
| 178 | + executor.shutdown(); |
| 179 | + |
| 180 | + // Verify no data loss in each iteration |
| 181 | + HashSet<String> groups = consumerManager.queryTopicConsumeByWho(topic); |
| 182 | + assertThat(groups.size()).isEqualTo(threadCount); |
| 183 | + } |
| 184 | + } |
| 185 | + |
| 186 | + /** |
| 187 | + * Test high stress scenario with more threads. |
| 188 | + */ |
| 189 | + @Test |
| 190 | + public void testHighConcurrencyStress() throws InterruptedException { |
| 191 | + int threadCount = 200; |
| 192 | + String topic = "StressTestTopic"; |
| 193 | + |
| 194 | + ExecutorService executor = Executors.newFixedThreadPool(100); |
| 195 | + CountDownLatch startLatch = new CountDownLatch(1); |
| 196 | + CountDownLatch endLatch = new CountDownLatch(threadCount); |
| 197 | + |
| 198 | + for (int i = 0; i < threadCount; i++) { |
| 199 | + final int index = i; |
| 200 | + executor.submit(() -> { |
| 201 | + try { |
| 202 | + startLatch.await(); |
| 203 | + |
| 204 | + String group = "StressGroup_" + index; |
| 205 | + Channel channel = mock(Channel.class); |
| 206 | + ClientChannelInfo clientChannelInfo = new ClientChannelInfo( |
| 207 | + channel, "StressClient_" + index, LanguageCode.JAVA, 1); |
| 208 | + |
| 209 | + Set<SubscriptionData> subList = new HashSet<>(); |
| 210 | + subList.add(new SubscriptionData(topic, "*")); |
| 211 | + |
| 212 | + consumerManager.registerConsumer( |
| 213 | + group, |
| 214 | + clientChannelInfo, |
| 215 | + ConsumeType.CONSUME_PASSIVELY, |
| 216 | + MessageModel.CLUSTERING, |
| 217 | + ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET, |
| 218 | + subList, |
| 219 | + false |
| 220 | + ); |
| 221 | + } catch (InterruptedException e) { |
| 222 | + Thread.currentThread().interrupt(); |
| 223 | + } finally { |
| 224 | + endLatch.countDown(); |
| 225 | + } |
| 226 | + }); |
| 227 | + } |
| 228 | + |
| 229 | + startLatch.countDown(); |
| 230 | + boolean finished = endLatch.await(15, TimeUnit.SECONDS); |
| 231 | + assertThat(finished).isTrue(); |
| 232 | + executor.shutdown(); |
| 233 | + |
| 234 | + // Verify no data loss under high stress |
| 235 | + HashSet<String> groups = consumerManager.queryTopicConsumeByWho(topic); |
| 236 | + assertThat(groups.size()).isEqualTo(threadCount); |
| 237 | + } |
| 238 | + |
| 239 | + /** |
| 240 | + * Test concurrent registration for multiple topics. |
| 241 | + */ |
| 242 | + @Test |
| 243 | + public void testConcurrentRegisterMultipleTopics() throws InterruptedException { |
| 244 | + int threadCount = 50; |
| 245 | + int topicCount = 10; |
| 246 | + |
| 247 | + ExecutorService executor = Executors.newFixedThreadPool(50); |
| 248 | + CountDownLatch startLatch = new CountDownLatch(1); |
| 249 | + CountDownLatch endLatch = new CountDownLatch(threadCount * topicCount); |
| 250 | + |
| 251 | + for (int t = 0; t < topicCount; t++) { |
| 252 | + final String topic = "MultiTopic_" + t; |
| 253 | + for (int i = 0; i < threadCount; i++) { |
| 254 | + final int index = i; |
| 255 | + executor.submit(() -> { |
| 256 | + try { |
| 257 | + startLatch.await(); |
| 258 | + |
| 259 | + String group = "MultiGroup_" + topic + "_" + index; |
| 260 | + Channel channel = mock(Channel.class); |
| 261 | + ClientChannelInfo clientChannelInfo = new ClientChannelInfo( |
| 262 | + channel, "MultiClient_" + index, LanguageCode.JAVA, 1); |
| 263 | + |
| 264 | + Set<SubscriptionData> subList = new HashSet<>(); |
| 265 | + subList.add(new SubscriptionData(topic, "*")); |
| 266 | + |
| 267 | + consumerManager.registerConsumer( |
| 268 | + group, |
| 269 | + clientChannelInfo, |
| 270 | + ConsumeType.CONSUME_PASSIVELY, |
| 271 | + MessageModel.CLUSTERING, |
| 272 | + ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET, |
| 273 | + subList, |
| 274 | + false |
| 275 | + ); |
| 276 | + } catch (InterruptedException e) { |
| 277 | + Thread.currentThread().interrupt(); |
| 278 | + } finally { |
| 279 | + endLatch.countDown(); |
| 280 | + } |
| 281 | + }); |
| 282 | + } |
| 283 | + } |
| 284 | + |
| 285 | + startLatch.countDown(); |
| 286 | + boolean finished = endLatch.await(15, TimeUnit.SECONDS); |
| 287 | + assertThat(finished).isTrue(); |
| 288 | + executor.shutdown(); |
| 289 | + |
| 290 | + // Verify each topic has exactly threadCount groups |
| 291 | + for (int t = 0; t < topicCount; t++) { |
| 292 | + String topic = "MultiTopic_" + t; |
| 293 | + HashSet<String> groups = consumerManager.queryTopicConsumeByWho(topic); |
| 294 | + assertThat(groups.size()).isEqualTo(threadCount); |
| 295 | + } |
| 296 | + } |
| 297 | +} |
0 commit comments