• RabbitMQ发布确认高级


    问题概述

    在生产环境中由于一些不明原因,导致 RabbitMQ 重启,在 RabbitMQ 重启期间生产者消息投递失败, 导致消息丢失,需要手动处理和恢复。于是,我们开始思考,如何才能进行 RabbitMQ 的消息可靠投递呢?


    图解

    要做好下面两步

    在这里插入图片描述

    确保消息发送到交换机

    # 开启发布确认模式
    spring.rabbitmq.publisher-confirm-type=correlated
    
    • 1
    • 2

    该参数有三个值:

    • NONE 值是禁用发布确认模式,是默认值
    • CORRELATED 值是发布消息成功到交换器后会触发回调方法
    • SIMPLE 值经测试有两种效果,其一效果和 CORRELATED 值一样会触发回调方法,其二在发布消息成功后使用 rabbitTemplate 调用 waitForConfirms 或waitForConfirmsOrDie 方法等待 broker 节点返回发送结果,根据返回结果来判定下一步的逻辑,要注意的点是 waitForConfirmsOrDie 方法如果返回 false 则会关闭 channel,则接下来无法发送消息到 broker;(其实就是之前核心模式的单个确认模式)
    package cn.com.pang.config;
    
    import org.springframework.amqp.core.*;
    import org.springframework.beans.factory.annotation.Qualifier;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    
    /**
     * @author pangjian
     * @ClassName ConfirmConfig
     * @Description 发布确认模式,先要在配置文件中开启,配置类声明交换机和队列,并绑定
     * @date 2022/8/8 23:02
     */
    @Configuration
    public class ConfirmConfig {
    
        public static final String CONFIRM_EXCHANGE_NAME = "confirm.exchange";
        public static final String CONFIRM_QUEUE_NAME = "confirm.queue";
    
        // 声明业务 Exchange
        @Bean("confirmExchange")
        public DirectExchange confirmExchange() {
            return new DirectExchange(CONFIRM_EXCHANGE_NAME);
        }
    
        // 声明确认队列
        @Bean("confirmQueue")
        public Queue confirmQueue() {
            return QueueBuilder.durable(CONFIRM_QUEUE_NAME).build();
        }
    
        // 确认队列和交换机绑定关系
        @Bean
        public Binding queueBinding(@Qualifier("confirmQueue") Queue queue,
                                    @Qualifier("confirmExchange") DirectExchange exchange) {
            return BindingBuilder.bind(queue).to(exchange).with("key1");
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    package cn.com.pang.controller;
    
    import cn.com.pang.config.MyCallBack;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.amqp.rabbit.connection.CorrelationData;
    import org.springframework.amqp.rabbit.core.RabbitTemplate;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import javax.annotation.PostConstruct;
    
    /**
     * @author pangjian
     * @ClassName ProducerController
     * @Description 生产者,模拟发送到故障交换机(这里故障是不存在该命名的交换机)
     * @date 2022/8/8 23:05
     */
    @RestController
    @RequestMapping("/confirm")
    @Slf4j
    public class ProducerController {
    
        public static final String CONFIRM_EXCHANGE_NAME = "confirm.exchange";
        
        @Autowired
        private RabbitTemplate rabbitTemplate;
    
        /**
         * 消息回调和退回
         *
         * @param message
         */
        @GetMapping("sendMessage/{message}")
        public void sendMessage(@PathVariable String message) {
    
            // 指定消息 id 为 1
            CorrelationData correlationData1 = new CorrelationData("1");
            // 只存在key1路由的交换机
            String routingKey = "key1";
            rabbitTemplate.convertAndSend(CONFIRM_EXCHANGE_NAME, routingKey, message + routingKey, correlationData1);
            log.info(routingKey + "发送消息内容:{}", message + routingKey);
    
            CorrelationData correlationData2 = new CorrelationData("2");
            routingKey = "key2";
            // 不存在该交换机
            rabbitTemplate.convertAndSend("efsafsdfads", routingKey, message + routingKey, correlationData2);
            log.info(routingKey + "发送消息内容:{}", message + routingKey);
    
        }
    
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    package cn.com.pang.controller;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.amqp.core.Message;
    import org.springframework.amqp.rabbit.annotation.RabbitListener;
    import org.springframework.stereotype.Component;
    
    /**
     * @author pangjian
     * @ClassName ConfirmConsumer
     * @Description 消费者监听器
     * @date 2022/8/8 23:07
     */
    @Component
    @Slf4j
    public class ConfirmConsumer {
    
        public static final String CONFIRM_QUEUE_NAME = "confirm.queue";
    
        @RabbitListener(queues = CONFIRM_QUEUE_NAME)
        public void receiveMsg(Message message) {
            String msg = new String(message.getBody());
            log.info("接受到队列 confirm.queue 消息:{}", msg);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    package cn.com.pang.config;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.amqp.rabbit.connection.CorrelationData;
    import org.springframework.amqp.rabbit.core.RabbitTemplate;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Component;
    
    import javax.annotation.PostConstruct;
    
    /**
     * @author pangjian
     * @ClassName MyCallBack
     * @Description 交换机不管是否收到消息的一个回调接口,
     * RabbitTemplate.ConfirmCallback是一个私有接口,要依赖注入 rabbitTemplate 之后设置它的回调对象(用内部set方法)
     * @date 2022/8/8 23:04
     */
    @Component
    @Slf4j
    public class MyCallBack implements RabbitTemplate.ConfirmCallback {
    
        @Autowired
        private RabbitTemplate rabbitTemplate;
    
        // 依赖注入 rabbitTemplate 之后再设置它的回调对象
        @PostConstruct
        public void init() {
            rabbitTemplate.setConfirmCallback(this);
        }
    
        /**
         * 交换机不管是否收到消息的一个回调方法
         *
         * @param correlationData 消息相关数据
         * @param ack             交换机是否收到消息
         * @param cause           未收到消息的原因
         */
        @Override
        public void confirm(CorrelationData correlationData, boolean ack, String cause) {
            String id = correlationData != null ? correlationData.getId() : "";
            if (ack) {
                log.info("交换机已经收到 id 为:{}的消息", id);
            } else {
                log.info("交换机还未收到 id 为:{}消息,原因:{}", id, cause);
            }
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48

    在这里插入图片描述

    交换机会有反馈,如果你不重写回调接口和文件配置开启发布确认,交换机是没有回馈的

    确保消息从交换机发送到队列

    回退消息

    在仅开启了生产者确认机制的情况下,交换机接收到消息后,会直接给消息生产者发送确认消息,如果发现该消息不可路由,那么消息会被直接丢弃,此时生产者是不知道消息被丢弃这个事件的。那么如何让无法被路由的消息帮我想办法处理一下?最起码通知我一声,我好自己处理啊。通过设置 mandatory 参数可以在当消息传递过程中不可达目的地时将消息返回给生产者。

    • 配置
    # 开启消息退回
    spring.rabbitmq.publisher-returns=true
    
    • 1
    • 2
    package cn.com.pang.controller;
    
    import cn.com.pang.config.MyCallBack;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.amqp.rabbit.connection.CorrelationData;
    import org.springframework.amqp.rabbit.core.RabbitTemplate;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import javax.annotation.PostConstruct;
    
    /**
     * @author pangjian
     * @ClassName ProducerController
     * @Description 生产者,模拟消息到达交换机后无法到达队列
     * @date 2022/8/8 23:05
     */
    @RestController
    @RequestMapping("/confirm")
    @Slf4j
    public class ProducerController {
    
        public static final String CONFIRM_EXCHANGE_NAME = "confirm.exchange";
        
        @Autowired
        private RabbitTemplate rabbitTemplate;
    
        /**
         * 消息回调和退回
         *
         * @param message
         */
        @GetMapping("sendMessage/{message}")
        public void sendMessage(@PathVariable String message) {
    
            // 指定消息 id 为 1
            CorrelationData correlationData1 = new CorrelationData("1");
            // 只存在key1路由的交换机
            String routingKey = "key1";
            rabbitTemplate.convertAndSend(CONFIRM_EXCHANGE_NAME, routingKey, message + routingKey, correlationData1);
            log.info(routingKey + "发送消息内容:{}", message + routingKey);
    
            CorrelationData correlationData2 = new CorrelationData("2");
            routingKey = "key2";
            // 不存在该路由
            rabbitTemplate.convertAndSend(CONFIRM_EXCHANGE_NAME, routingKey, message + routingKey, correlationData2);
            log.info(routingKey + "发送消息内容:{}", message + routingKey);
    
        }
    
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    package cn.com.pang.config;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.amqp.core.Message;
    import org.springframework.amqp.rabbit.connection.CorrelationData;
    import org.springframework.amqp.rabbit.core.RabbitTemplate;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Component;
    
    import javax.annotation.PostConstruct;
    
    /**
     * @author pangjian
     * @ClassName MyCallBack
     * @Description 交换机不管是否收到消息的一个回调接口,
     * RabbitTemplate.ConfirmCallback是一个私有接口,要依赖注入 rabbitTemplate 之后设置它的回调对象(用内部set方法)
     * @date 2022/8/8 23:04
     */
    @Component
    @Slf4j
    public class MyCallBack implements RabbitTemplate.ConfirmCallback, RabbitTemplate.ReturnCallback {
    
        @Autowired
        private RabbitTemplate rabbitTemplate;
    
        // 依赖注入 rabbitTemplate 之后再设置它的回调对象
        @PostConstruct
        public void init() {
            rabbitTemplate.setConfirmCallback(this);
            /**
             * true:交换机无法将消息进行路由时,会将该消息返回给生产者
             * false:如果发现消息无法进行路由,则直接丢弃
             */
            rabbitTemplate.setMandatory(true);
            //设置回退消息交给谁处理
            rabbitTemplate.setReturnCallback(this);
        }
    
        /**
         * 交换机不管是否收到消息的一个回调方法
         *
         * @param correlationData 消息相关数据
         * @param ack             交换机是否收到消息
         * @param cause           未收到消息的原因
         */
        @Override
        public void confirm(CorrelationData correlationData, boolean ack, String cause) {
            String id = correlationData != null ? correlationData.getId() : "";
            if (ack) {
                log.info("交换机已经收到 id 为:{}的消息", id);
            } else {
                log.info("交换机还未收到 id 为:{}消息,原因:{}", id, cause);
            }
        }
    
    	// 消息回退接口重写
        @Override
        public void returnedMessage(Message message, int replyCode, String replyText, String
                exchange, String routingKey) {
            log.info("消息:{}被服务器退回,退回原因:{}, 交换机是:{}, 路由 key:{}",new String(message.getBody()),replyText, exchange, routingKey);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63

    在这里插入图片描述

    交换机备份

    有了 mandatory 参数和回退消息,我们获得了对无法投递消息的感知能力,在生产者的消息无法被投递时发现并处理。但有时候,我们并不知道该如何处理这些无法路由的消息,最多打个日志,然后触发报警,再来手动处理。而通过日志来处理这些无法路由的消息是很不优雅的做法,特别是当生产者所在的服务有多台机器的时候,手动复制日志会更加麻烦而且容易出错。而且设置 mandatory 参数会增加生产者的复杂性,需要添加处理这些被退回的消息的逻辑。如果既不想丢失消息,又不想增加生产者的复杂性,该怎么做呢?可以为队列设置死信交换机来存储那些处理失败的消息,可是这些不可路由消息根本没有机会进入到队列,因此无法使用死信队列来保存消息。

    在 RabbitMQ 中,有一种备份交换机的机制存在,可以很好的应对这个问题。什么是备份交换机呢?备份交换机可以理解为 RabbitMQ 中交换机的“备胎”,当我们为某一个交换机声明一个对应的备份交换机时,就是为它创建一个备胎,当交换机接收到一条不可路由消息时,将会把这条消息转发到备份交换机中,由备份交换机来进行转发和处理,通常备份交换机的类型为 Fanout ,这样就能把所有消息都投递到与其绑定的队列中,然后我们在备份交换机下绑定一个队列,这样所有那些原交换机无法被路由的消息,就会都进 入这个队列了。当然,我们还可以建立一个报警队列,用独立的消费者来进行监测和报警。

    在这里插入图片描述

    package cn.com.pang.config;
    
    import org.springframework.amqp.core.*;
    import org.springframework.beans.factory.annotation.Qualifier;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    
    /**
     * @author pangjian
     * @ClassName ConfirmConfig
     * @Description 发布确认模式,先要在配置文件中开启
     * @date 2022/8/8 23:02
     */
    @Configuration
    public class ConfirmConfig {
    
        public static final String CONFIRM_EXCHANGE_NAME = "confirm.exchange";
        public static final String CONFIRM_QUEUE_NAME = "confirm.queue";
    
        //关于备份的
        public static final String BACKUP_EXCHANGE_NAME = "backup.exchange";
        public static final String BACKUP_QUEUE_NAME = "backup.queue";
        public static final String WARNING_QUEUE_NAME = "warning.queue";
    
        // 声明确认队列
        @Bean("confirmQueue")
        public Queue confirmQueue() {
            return QueueBuilder.durable(CONFIRM_QUEUE_NAME).build();
        }
    
        // 声明确认队列绑定关系
        @Bean
        public Binding queueBinding(@Qualifier("confirmQueue") Queue queue,
                                    @Qualifier("confirmExchange") DirectExchange exchange) {
            return BindingBuilder.bind(queue).to(exchange).with("key1");
        }
    
    
        //************************以下是关于备份的******************************
    
        //声明备份 Exchange
        @Bean("backupExchange")
        public FanoutExchange backupExchange() {
            return new FanoutExchange(BACKUP_EXCHANGE_NAME);
        }
    
        //声明确认 Exchange 交换机的备份交换机
        @Bean("confirmExchange")
        public DirectExchange confirmExchange() {
            ExchangeBuilder exchangeBuilder = ExchangeBuilder.directExchange(CONFIRM_EXCHANGE_NAME)
                    .durable(true)
                    //设置该交换机的备份交换机
                    .withArgument("alternate-exchange", BACKUP_EXCHANGE_NAME);
            return exchangeBuilder.build();
        }
    
    
        // 声明警告队列
        @Bean("warningQueue")
        public Queue warningQueue() {
            return QueueBuilder.durable(WARNING_QUEUE_NAME).build();
        }
    
        // 声明报警队列绑定关系
        @Bean
        public Binding warningBinding(@Qualifier("warningQueue") Queue queue,
                                      @Qualifier("backupExchange") FanoutExchange backupExchange) {
            return BindingBuilder.bind(queue).to(backupExchange);
        }
    
        // 声明备份队列
        @Bean("backQueue")
        public Queue backQueue() {
            return QueueBuilder.durable(BACKUP_QUEUE_NAME).build();
        }
    
        // 声明备份队列绑定关系
        @Bean
        public Binding backupBinding(@Qualifier("backQueue") Queue queue,
                                     @Qualifier("backupExchange") FanoutExchange backupExchange) {
            return BindingBuilder.bind(queue).to(backupExchange);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    package cn.com.pang.controller;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.amqp.core.Message;
    import org.springframework.amqp.rabbit.annotation.RabbitListener;
    import org.springframework.stereotype.Component;
    
    /**
     * @author pangjian
     * @ClassName WarningConsumer
     * @Description TODO
     * @date 2022/8/9 9:25
     */
    @Component
    @Slf4j
    public class WarningConsumer {
    
        public static final String WARNING_QUEUE_NAME = "warning.queue";
    
        @RabbitListener(queues = WARNING_QUEUE_NAME)
        public void receiveWarningMsg(Message message) {
            String msg = new String(message.getBody());
            log.error("报警发现不可路由消息:{}", msg);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    http://localhost:8080/confirm/sendMessage/你好
    
    • 1

    在这里插入图片描述

    mandatory 参数与备份交换机可以一起使用的时候,如果两者同时开启,消息究竟何去何从?谁优先级高,经过上面结果显示答案是备份交换机优先级高。

  • 相关阅读:
    如何制作CSR(Certificate Signing Request)文件?
    惠普1020打印机驱动安装教程
    实验(五):外部中断实验
    SSM《程序设计基础》课程答疑系统的设计与实现 毕业设计-附源码261620
    Python 全栈系列190 全栈能力组建进展梳理
    linux管道、重定向和查看命令
    不懂Mysql排序的特性,加班到12点,认了认了
    Spring Cloud Stream绑定器架构解析与开发
    如何恢复删除的照片和视频?可以试试看
    npm install常见错误的完整指南
  • 原文地址:https://blog.csdn.net/pmc0_0/article/details/126238007