RabbitMq确认机制&SpringBoot整合RabbitMQ

简介: RabbitMq确认机制&SpringBoot整合RabbitMQ

正文


一、RabitMQ如何确认消息不丢失


1、从生产者角度来考虑


产生原因:我们的生产者发送消息之后可能由于网络故障等各种原因导致我们的消息并没有发送到MQ之中,但是这个时候我们生产端又不知道我们的消息没有发出去,这就会造成消息的丢失。


解决方法:为了解决这个问题,RabbitMQ引入了事务机制和发送方确认机制(confirm)。事务机制开启之后,相当于同步执行,必然会降低系统的性能,因此一般我们不采用这种方式。确实机制,是当mq收到生产者发送的消息时,会返回一个ack告知生产者,收到了这条消息,如果没有收到,那就采取重试机制后者其他方式补偿。


事务方式


package com.xiaojie.rabbitmq.tx;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.xiaojie.rabbitmq.MyConnection;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.TimeoutException;
/**
 * @Description: mq事务模式保证消息可靠性
 * @author: xiaojie
 * @date: 2021.09.28
 */
public class TxProvider {
    //定义队列
    private static final String QUEUE_NAME = "myqueue";
    static Channel channel = null;
    static Connection connection = null;
    public static void main(String[] args) {
        try {
            System.out.println("生产者启动成功..");
            // 1.创建连接
            connection = MyConnection.getConnection();
            // 2.创建通道
            channel = connection.createChannel();
            channel.queueDeclare(QUEUE_NAME, false, false, false, null);
            String msg = "测试事务机制保证消息发送可靠性。。。。";
            channel.txSelect(); //开启事务
            channel.basicPublish("", QUEUE_NAME, null, msg.getBytes(StandardCharsets.UTF_8));
            //发生异常时,mq中并没有新的消息入队列
            //int i=1/0;
            //没有发生异常,提交事务
            channel.txCommit();
            System.out.println("生产者发送消息成功:" + msg);
        } catch (Exception e) {
            e.printStackTrace();
            //发生异常则回滚事务
            try {
                if (channel != null) {
                    channel.txRollback();
                }
            } catch (IOException ioException) {
                ioException.printStackTrace();
            }
        } finally {
            try {
                if (channel != null) {
                    channel.close();
                }
                if (connection != null) {
                    connection.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            } catch (TimeoutException e) {
                e.printStackTrace();
            }
        }
    }
}


消费者


package com.xiaojie.rabbitmq.tx;
import com.rabbitmq.client.*;
import com.xiaojie.rabbitmq.MyConnection;
import java.io.IOException;
import java.util.concurrent.TimeoutException;
/**
 * @Description: 事务模拟消费者
 * 如果不改为手动应达模式,那么事务开启对消费者没有影响
 * @author: xiaojie
 * @date: 2021.09.28
 */
public class Txconsumer {
    private static final String QUEUE_NAME = "myqueue";
    public static void main(String[] args) throws IOException, TimeoutException {
        // 1.创建我们的连接
        Connection connection = MyConnection.getConnection();
        // 2.创建我们通道
        Channel channel = connection.createChannel();
        channel.txSelect();//开启事务
        DefaultConsumer defaultConsumer = new DefaultConsumer(channel) {
            @Override
            public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                String msg = new String(body, "UTF-8");
                //设置手动应答
                channel.basicAck(envelope.getDeliveryTag(), true);
                System.out.println("消费消息msg:" + msg+"手动应答:"+envelope.getDeliveryTag());
                channel.txCommit(); //消费者开启事务,必须要提交事务之后,消息才会从队列中移除,否则不移除。
            }
        };
        // 3.创建我们的监听的消息 false 关闭自动确认模式
        channel.basicConsume(QUEUE_NAME, false, defaultConsumer);
    }
}


Confirm模式


package com.xiaojie.rabbitmq.confirm;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.xiaojie.rabbitmq.MyConnection;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.TimeoutException;
/**
 * @author xiaojie
 * @version 1.0
 * @description: confirm模式保证消息可靠性
 * @date 2021/9/28
 */
public class Provider {
    private static final String QUEUE_NAME = "myqueue";
    static Connection connection = null;
    static Channel channel = null;
    static String msg = "confirm模式保证消息可靠性。。。。";
    public static void main(String[] args) throws IOException, TimeoutException, InterruptedException {
        try {
            //创建连接
            connection = MyConnection.getConnection();
            //创建通道
            channel = connection.createChannel();
            channel.queueDeclare(QUEUE_NAME, false, false, false, null);
            channel.confirmSelect();//开启确认模式,确认消息已经被mq持久化到硬盘上
            channel.basicQos(1);//每次发送一条消息,并且收到消费者的ack之后才会发送第二条
            //如果异常进行重试,超过重试次数放弃执行
//            int i=1/0;
            //发送消息
            channel.basicPublish("", QUEUE_NAME, null, msg.getBytes(StandardCharsets.UTF_8));
            if (channel.waitForConfirms()) {
                //确认消息已经持久化到硬盘
                System.out.println("消息发送成功。。。。。。");
            }
        } catch (Exception e) {
            for (int i = 0; i < 3; i++) {
                //发送消息
                System.out.println("重试次数" + (i + 1));
                channel.basicPublish("", QUEUE_NAME, null, msg.getBytes(StandardCharsets.UTF_8));
                if (i >= 3) {
                    //实际生产时候,可以放到表中记录失败的消息,然后采取补偿措施
                    break;
                }
            }
        } finally {
            //关闭通道,关闭连接
            if (channel != null) {
                channel.close();
            }
            if (connection != null) {
                connection.close();
            }
        }
    }
}


2、从mq角度考虑


产生原因:消息到达mq之后,mq宕机了,然后消息又没有进行持久化,这时消息就会丢失。如果队列满了,或者mq拒绝接受消息时都会导致消息丢失(死信队列)。


解决方法:开启mq的持久化机制,消息队列,交换机、消息都要开启持久化。当然也存在特殊情况,消息在还没有持久化到硬盘的时候宕机了,这种小概率事件的发生。也可以采用集群模式,尽可能保证消息的可靠性。(假如机房炸了,这种情况实在也是没有办法)。


3、从消费者角度考虑


产生原因:


在RabbitMQ将消息发出后,消费端还没接收到消息之前,发生网络故障,消费端与RabbitMQ断开连接,此时消息会丢失;

在RabbitMQ将消息发出后,消费端还没接收到消息之前,消费端挂了,此时消息会丢失;

消费端正确接收到消息,但在处理消息的过程中发生异常或宕机了,消息也会丢失。


解决方法:开启手动应答模式,只要mq没有收到消费者已经消费掉消息的ack,那消息就不会从队列中移除。后面整合Springboot时,在代码中标明。


二、RabbitMQ持久化机制


手动开启持久化


555.jpg


如图,在手动创建队列,交换机时,开启持久化模式,默认情况下是持久化方式的。


2、代码方式


//队列持久化
 channel.queueDeclare(EMAIL_QUEUE_FANOUT, true, false, false, null);
 //生产者绑定交换机 参数1 交换机的名称。2,交换机的类型,3,true标识持久化
 channel.exchangeDeclare(EXCHANGE, "direct",true);


Springboot模式下默认绑定是持久化绑定(springboot2.4.2版本)


三、SpringBoot整合RabbitMQ


配置文件


package com.xiaojie.springboot.config;
import org.springframework.amqp.core.*;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
/**
 * @author xiaojie
 * @version 1.0
 * @description: 配置rabbitmq
 * @date 2021/9/25 22:16
 */
@Component
public class RabbitMqConfig {
    //定义队列
    private static final String MY_FANOUT_QUEUE = "xiaojie_fanout_queue";
    //定义队列
    private static final String MY_DIRECT_QUEUE = "xiaojie_direct_queue";
    //定义队列
    private static final String MY_TOPIC_QUEUE = "xiaojie_topic_queue";
    //定义fanout交换机
    private static final String MY_FANOUT_EXCHANGE = "xiaojie_fanout_exchange";
    //定义direct交换机
    private static final String MY_DIRECT_EXCHANGE = "xiaojie_direct_exchange";
    //定义topics交换机
    private static final String MY_TOPICS_EXCHANGE = "xiaojie_topics_exchange";
    //创建队列 默认开启持久化
    @Bean
    public Queue fanoutQueue() {
        return new Queue(MY_FANOUT_QUEUE);
    }
    //创建队列
    @Bean
    public Queue directQueue() {
        return new Queue(MY_DIRECT_QUEUE);
    }
    //创建队列
    @Bean
    public Queue topicQueue() {
        return new Queue(MY_TOPIC_QUEUE);
    }
    //创建fanout交换机 默认开启持久化
    @Bean
    public FanoutExchange fanoutExchange() {
        return new FanoutExchange(MY_FANOUT_EXCHANGE);
    }
    //创建direct交换机
    @Bean
    public DirectExchange directExchange() {
        return new DirectExchange(MY_DIRECT_EXCHANGE);
    }
    //创建direct交换机
    @Bean
    public TopicExchange topicExchange() {
        return new TopicExchange(MY_TOPICS_EXCHANGE);
    }
    //绑定fanout交换机
    @Bean
    public Binding fanoutBindingExchange(Queue fanoutQueue, FanoutExchange fanoutExchange) {
        return BindingBuilder.bind(fanoutQueue).to(fanoutExchange);
    }
    //绑定direct交换机
    @Bean
    public Binding directBindingExchange(Queue directQueue, DirectExchange directExchange) {
        return BindingBuilder.bind(directQueue).to(directExchange).with("msg.send");
    }
    //绑定topic交换机
    @Bean
    public Binding topicBindingExchange(Queue topicQueue, TopicExchange topicExchange) {
        return BindingBuilder.bind(topicQueue).to(topicExchange).with("msg.#");
    }
    //多个队列绑定到同一个交换机
//    @Bean
//    public Binding topicBindingExchange1(Queue directQueue, TopicExchange topicExchange) {
//        return BindingBuilder.bind(directQueue).to(topicExchange).with("msg.send");
//    }
}


生产者回调


package com.xiaojie.springboot.callback;
import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.core.ReturnedMessage;
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;
/**
 * @Description: 生产者发送消息之后,接受服务器回调
 * @author: xiaojie
 * @date: 2021.09.29
 */
@Component
@Slf4j
public class ConfirmCallBackListener implements RabbitTemplate.ConfirmCallback, RabbitTemplate.ReturnsCallback {
    @Autowired
    private RabbitTemplate rabbitTemplate;
    @PostConstruct
    public void init() {
        //指定 ConfirmCallback
        rabbitTemplate.setConfirmCallback(this);
        rabbitTemplate.setReturnsCallback(this);
    }
    @Override
    public void confirm(CorrelationData correlationData, boolean ack, String cause) {
        log.info("correlation>>>>>>>{},ack>>>>>>>>>{},cause>>>>>>>>{}", correlationData, ack, cause);
        if (ack) {
            //确认收到消息
        } else {
            //收到消息失败,可以开启重试机制,或者将失败的存起来,进行补偿
        }
    }
    /*
     *
     * @param returnedMessage
     * 消息是否从Exchange路由到Queue, 只有消息从Exchange路由到Queue失败才会回调这个方法
     * @author xiaojie
     * @date 2021/9/29 13:53
     * @return void
     */
    @Override
    public void returnedMessage(ReturnedMessage returnedMessage) {
        log.info("被退回信息是》》》》》》{}", returnedMessage.getMessage());
        log.info("replyCode》》》》》》{}", returnedMessage.getReplyCode());
        log.info("replyText》》》》》》{}", returnedMessage.getReplyText());
        log.info("exchange》》》》》》{}", returnedMessage.getExchange());
        log.info("routingKey>>>>>>>{}", returnedMessage.getRoutingKey());
    }
}


生产者


package com.xiaojie.springboot.provider;
import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.AmqpException;
import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.core.ReturnedMessage;
import org.springframework.amqp.rabbit.connection.CorrelationData;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
/**
 * @author xiaojie
 * @version 1.0
 * @description:消息生产者 publisher-confirm-type: correlated
 * #NONE值是禁用发布确认模式,是默认值
 * #CORRELATED值是发布消息成功到交换器后会触发回调方法
 * #SIMPLE值经测试有两种效果,其一效果和CORRELATED值一样会触发回调方法,
 * 其二在发布消息成功后使用rabbitTemplate调用waitForConfirms或waitForConfirmsOrDie方法等待broker节点返回发送结果,
 * 根据返回结果来判定下一步的逻辑,要注意的点是waitForConfirmsOrDie方法如果返回false则会关闭channel,将无法发送消息到broker
 * @date 2021/9/25 22:47
 */
@Component
@Slf4j
public class MsgProvider {
    //定义队列
    private static final String MY_FANOUT_QUEUE = "xiaojie_fanout_queue";
    private static final String MY_DIRECT_QUEUE = "xiaojie_direct_queue";
    private static final String DIRECT_ROUTING_KEY = "msg.send";
    private static final String MY_TOPIC_QUEUE = "xiaojie_topic_queue";
    private static final String TOPIC_ROUTING_KEY = "msg.send";
    //定义fanout交换机
    private static final String MY_FANOUT_EXCHANGE = "xiaojie_fanout_exchange";
    //定义direct交换机
    private static final String MY_DIRECT_EXCHANGE = "xiaojie_direct_exchange";
    //定义topics交换机
    private static final String MY_TOPICS_EXCHANGE = "xiaojie_topics_exchange";
    @Autowired
    private AmqpTemplate amqpTemplate;
    @Autowired
    private RabbitTemplate rabbitTemplate;
    public String sendMSg(Integer type, String msg) {
        try {
            if (1 == type) {
                //发送到fanout
                rabbitTemplate.convertAndSend(MY_FANOUT_QUEUE, "fanout" + msg);
            } else if (2 == type) {
                //第一个参数交换机,第二个参数,路由键,第三个参数,消息
                rabbitTemplate.convertAndSend(MY_DIRECT_EXCHANGE, DIRECT_ROUTING_KEY, "direct" + msg);
            } else if (3 == type) {
                rabbitTemplate.convertAndSend(MY_TOPICS_EXCHANGE, TOPIC_ROUTING_KEY, "topic" + msg);
            }
            return "success";
        } catch (AmqpException e) {
            e.printStackTrace();
        }
        return "error";
    }
}


消费者Fanout


package com.xiaojie.springboot.consumer;
import com.rabbitmq.client.Channel;
import lombok.extern.slf4j.Slf4j;
import org.springframework.amqp.core.ExchangeTypes;
import org.springframework.amqp.rabbit.annotation.*;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.messaging.handler.annotation.Headers;
import org.springframework.messaging.handler.annotation.Payload;
import org.springframework.stereotype.Component;
import java.io.IOException;
import java.util.Map;
/**
 * @author xiaojie
 * @version 1.0
 * @description: fanout消费者
 * @date 2021/9/25 22:57
 */
@Component
@RabbitListener(bindings = @QueueBinding(
        value = @Queue("xiaojie_fanout_queue"),
        exchange = @Exchange(value = "xiaojie_fanout_exchange", type = ExchangeTypes.FANOUT),
        key = ""))
@Slf4j
public class FanoutMsgConsumer {
    @Autowired
    private RabbitTemplate rabbitTemplate;
    /**
     * @description: 接收到信息
     * @param:
     * @param: msg
     * @return: void
     * @author xiaojie
     * @date: 2021/9/25 23:02
     */
    @RabbitHandler
    public void handlerMsg(@Payload String msg, @Headers Map<String, Object> headers,
                           Channel channel) throws IOException {
        log.info("接收到的消息是fanout:{}" + msg);
        //delivery tag可以从消息头里边get出来
        Long deliveryTag = (Long) headers.get(AmqpHeaders.DELIVERY_TAG);
//        int i=1/0; 模拟重试机制,如果重试则代码不能try(有点类似事务),并且自动应答模式下,重试次数结束之后,自动应答消息出队列。
        //手动应答,第二个参数为是否批量处理
        channel.basicAck(deliveryTag, false);
        boolean redelivered = (boolean) headers.get(AmqpHeaders.REDELIVERED);
        //第二个参数为是否批量,第三个参数为是否重新进入队列,如果为true,则重新进入队列
//        channel.basicNack(deliveryTag, false, !redelivered);
    }
}


完整代码:spring-boot: Springboot整合redis、消息中间件等相关代码

相关实践学习
RocketMQ一站式入门使用
从源码编译、部署broker、部署namesrv,使用java客户端首发消息等一站式入门RocketMQ。
消息队列 MNS 入门课程
1、消息队列MNS简介 本节课介绍消息队列的MNS的基础概念 2、消息队列MNS特性 本节课介绍消息队列的MNS的主要特性 3、MNS的最佳实践及场景应用 本节课介绍消息队列的MNS的最佳实践及场景应用案例 4、手把手系列:消息队列MNS实操讲 本节课介绍消息队列的MNS的实际操作演示 5、动手实验:基于MNS,0基础轻松构建 Web Client 本节课带您一起基于MNS,0基础轻松构建 Web Client
相关文章
|
1月前
|
Java 开发者 UED
Spring Boot的全局异常处理机制
【2月更文挑战第13天】
58 0
|
2月前
|
消息中间件 存储 监控
|
2月前
|
消息中间件 Java Maven
一文搞懂Spring Boot整合RocketMQ
一文搞懂Spring Boot整合RocketMQ
98 0
|
1月前
|
NoSQL Java Redis
小白版的springboot中集成mqtt服务(超级无敌详细),实现不了掐我头!!!
小白版的springboot中集成mqtt服务(超级无敌详细),实现不了掐我头!!!
255 1
|
1月前
|
人工智能 JSON 前端开发
【Spring boot实战】Springboot+对话ai模型整体框架+高并发线程机制处理优化+提示词工程效果展示(按照框架自己修改可对接市面上百分之99的模型)
【Spring boot实战】Springboot+对话ai模型整体框架+高并发线程机制处理优化+提示词工程效果展示(按照框架自己修改可对接市面上百分之99的模型)
|
2月前
|
消息中间件 存储 监控
搭建消息时光机:深入探究RabbitMQ_recent_history_exchange在Spring Boot中的应用【RabbitMQ实战 二】
搭建消息时光机:深入探究RabbitMQ_recent_history_exchange在Spring Boot中的应用【RabbitMQ实战 二】
32 1
|
1月前
|
消息中间件 存储 运维
|
3月前
|
消息中间件 存储 安全
SpringBoot与RabbitMQ详解与整合
SpringBoot与RabbitMQ详解与整合
57 0
|
2月前
|
消息中间件 监控 Java
Spring Boot中的RabbitMQ死信队列魔法:从异常到延迟,一网打尽【RabbitMQ实战 一】
Spring Boot中的RabbitMQ死信队列魔法:从异常到延迟,一网打尽【RabbitMQ实战 一】
60 0
|
26天前
|
消息中间件 存储 安全
【深入浅出RocketMQ原理及实战】「底层原理挖掘系列」透彻剖析贯穿RocketMQ的消息顺序消费和并发消费机制体系的原理分析
【深入浅出RocketMQ原理及实战】「底层原理挖掘系列」透彻剖析贯穿RocketMQ的消息顺序消费和并发消费机制体系的原理分析
25 0