Skip to content

Commit

Permalink
[ISSUE alibaba#2223] Polish the selectOneMessageQueue method (alibaba…
Browse files Browse the repository at this point in the history
  • Loading branch information
542928492 authored Dec 4, 2020
1 parent bd67f7a commit 912ceda
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ public MessageQueue selectOneMessageQueue(final String lastBrokerName) {
if (lastBrokerName == null) {
return selectOneMessageQueue();
} else {
int index = this.sendWhichQueue.getAndIncrement();
for (int i = 0; i < this.messageQueueList.size(); i++) {
int pos = Math.abs(index++) % this.messageQueueList.size();
int index = this.sendWhichQueue.getAndIncrement();
int pos = Math.abs(index) % this.messageQueueList.size();
if (pos < 0)
pos = 0;
MessageQueue mq = this.messageQueueList.get(pos);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.rocketmq.client.producer.selector;

import org.apache.rocketmq.client.impl.producer.TopicPublishInfo;
import org.apache.rocketmq.common.message.Message;
import org.apache.rocketmq.common.message.MessageQueue;
import org.junit.Test;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import static org.assertj.core.api.Assertions.assertThat;

public class SelectMessageQueueRetryTest {

private String topic = "TEST";

@Test
public void testSelect() throws Exception {

TopicPublishInfo topicPublishInfo = new TopicPublishInfo();
List<MessageQueue> messageQueueList = new ArrayList();
for (int i = 0; i < 3; i++) {
MessageQueue mq = new MessageQueue();
mq.setBrokerName("broker-" + i);
mq.setQueueId(0);
mq.setTopic(topic);
messageQueueList.add(mq);
}

topicPublishInfo.setMessageQueueList(messageQueueList);

Set<String> retryBrokerNameSet = retryBroker(topicPublishInfo);
//always in Set (broker-0,broker-1,broker-2)
assertThat(retryBroker(topicPublishInfo)).isEqualTo(retryBrokerNameSet);
}

private Set<String> retryBroker(TopicPublishInfo topicPublishInfo) {
MessageQueue mqTmp = null;
Set<String> retryBrokerNameSet = new HashSet();
for (int times = 0; times < 3; times++) {
String lastBrokerName = null == mqTmp ? null : mqTmp.getBrokerName();
mqTmp = topicPublishInfo.selectOneMessageQueue(lastBrokerName);
retryBrokerNameSet.add(mqTmp.getBrokerName());
}
return retryBrokerNameSet;
}

}

0 comments on commit 912ceda

Please sign in to comment.