前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >聊聊rocketmq的AllocateMessageQueueAveragelyByCircle

聊聊rocketmq的AllocateMessageQueueAveragelyByCircle

原创
作者头像
code4it
修改2019-12-02 11:14:02
5940
修改2019-12-02 11:14:02
举报
文章被收录于专栏:码匠的流水账码匠的流水账

本文主要研究一下rocketmq的AllocateMessageQueueAveragelyByCircle

AllocateMessageQueueStrategy

rocketmq-client-4.5.2-sources.jar!/org/apache/rocketmq/client/consumer/AllocateMessageQueueStrategy.java

代码语言:javascript
复制
public interface AllocateMessageQueueStrategy {
​
    /**
     * Allocating by consumer id
     *
     * @param consumerGroup current consumer group
     * @param currentCID current consumer id
     * @param mqAll message queue set in current topic
     * @param cidAll consumer set in current consumer group
     * @return The allocate result of given strategy
     */
    List<MessageQueue> allocate(
        final String consumerGroup,
        final String currentCID,
        final List<MessageQueue> mqAll,
        final List<String> cidAll
    );
​
    /**
     * Algorithm name
     *
     * @return The strategy name
     */
    String getName();
}
  • AllocateMessageQueueStrategy定义了allocate、getName方法

AllocateMessageQueueAveragelyByCircle

rocketmq-client-4.5.2-sources.jar!/org/apache/rocketmq/client/consumer/rebalance/AllocateMessageQueueAveragelyByCircle.java

代码语言:javascript
复制
public class AllocateMessageQueueAveragelyByCircle implements AllocateMessageQueueStrategy {
    private final InternalLogger log = ClientLogger.getLog();
​
    @Override
    public List<MessageQueue> allocate(String consumerGroup, String currentCID, List<MessageQueue> mqAll,
        List<String> cidAll) {
        if (currentCID == null || currentCID.length() < 1) {
            throw new IllegalArgumentException("currentCID is empty");
        }
        if (mqAll == null || mqAll.isEmpty()) {
            throw new IllegalArgumentException("mqAll is null or mqAll empty");
        }
        if (cidAll == null || cidAll.isEmpty()) {
            throw new IllegalArgumentException("cidAll is null or cidAll empty");
        }
​
        List<MessageQueue> result = new ArrayList<MessageQueue>();
        if (!cidAll.contains(currentCID)) {
            log.info("[BUG] ConsumerGroup: {} The consumerId: {} not in cidAll: {}",
                consumerGroup,
                currentCID,
                cidAll);
            return result;
        }
​
        int index = cidAll.indexOf(currentCID);
        for (int i = index; i < mqAll.size(); i++) {
            if (i % cidAll.size() == index) {
                result.add(mqAll.get(i));
            }
        }
        return result;
    }
​
    @Override
    public String getName() {
        return "AVG_BY_CIRCLE";
    }
}
  • AllocateMessageQueueAveragelyByCircle实现了AllocateMessageQueueStrategy接口,其getName返还AVG_BY_CIRCLE,其allocate方法首先计算index(cidAll.indexOf(currentCID)),之后从index开始到mqAll.size(),针对满足i % cidAll.size() == index的下标的msg添加到result

小结

AllocateMessageQueueAveragelyByCircle实现了AllocateMessageQueueStrategy接口,其getName返还AVG_BY_CIRCLE,其allocate方法首先计算index(cidAll.indexOf(currentCID)),之后从index开始到mqAll.size(),针对满足i % cidAll.size() == index的下标的msg添加到result

doc

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • AllocateMessageQueueStrategy
  • AllocateMessageQueueAveragelyByCircle
  • 小结
  • doc
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档