RocketMQ Producer 重试机制

本文介绍了RocketMQ Producer的重试机制,包括同步发送和异步发送两种情况。同步发送时,若发送异常会自动重试;存储失败且开启特定配置也会重试。异步发送时,可通过设置重试次数进行重试。当异步发送失败,若未设置回调,处理结果异常不会重试;设置回调后,处理结果异常也不会直接重试,但可以通过回调手动实现重试。
摘要由CSDN通过智能技术生成

版本:4.2.0

producer的重试机制分两种情况:同步发送,异步发送

同步发送:

private SendResult sendDefaultImpl(Message msg, CommunicationMode communicationMode, SendCallback sendCallback, long timeout) throws MQClientException, RemotingException, MQBrokerException, InterruptedException {
    ...
    if (topicPublishInfo != null && topicPublishInfo.ok()) {
        MessageQueue mq = null;
        Exception exception = null;
        SendResult sendResult = null;
        // 同步发送的次数,默认三次,这里异步发送的次数为1,实际发送次数在回调里面
        int timesTotal = communicationMode == CommunicationMode.SYNC ? 1 + this.defaultMQProducer.getRetryTimesWhenSendFailed() : 1;
        int times = 0;
        String[] brokersSent = new String[timesTotal];
​
        while(true) {
            String info;
            // 通过循环来实现重试机制
            if (times < timesTotal) {
                info = null == mq ? null : mq.getBrokerName();
                MessageQueue mqSelected = this.selectOneMessageQueue(topicPublishInfo, info);
                if (mqSelected != null) {
                    mq = mqSelected;
                    brokersSent[times] = mqSelected.getBrokerName();
​
                    long endTimestamp;
                    try {
                        beginTimestampPrev = System.currentTimeMillis();
                        sendResult = this.sendKernelImpl(msg, mq, communicationMode, sendCallback, topicPublishInfo, timeout);
                        endTimestamp = System.currentTimeMillis();
                        this.updateFaultItem(mq.getBrokerName(), endTimestamp - beginTimestampPrev, false);
                        switch(communicationMode) {
                            case ASYNC:
                                return null;
                            case ONEWAY:
                                return null;
                            case SYNC:
                                // 如果没有开启retryAnotherBrokerWhenNotStoreOK配置项,则不会重试
                                if (sendResult.getSendStatus() == SendStatus.SEND_OK || !this.defaultMQProducer.isRetryAnotherBrokerWhenNotStoreOK()) {
                                    return sendResult;
                                }
                        }
                    } catch (RemotingException var24) {
                        endTimestamp = System.currentTimeMillis();
                        this.updateFaultItem(mqSelected.getBrokerName(), endTimestamp - beginTimestampPrev, true);
                        this.log.warn(String.format("sendKernelImpl exception, resend at once, InvokeID: %s, RT: %sms, Broker: %s", invokeID, endTimestamp - beginTimestampPrev, mqSelected), var24);
         
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值