码迷,mamicode.com
首页 > 其他好文 > 详细

RabbitMQ 延迟队列,消息延迟推送

时间:2020-08-06 11:56:05      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:code   else   ttl   queue   turn   div   component   framework   integer   

目前常见的应用软件都有消息的延迟推送的影子,应用也极为广泛,例如:

  • 淘宝七天自动确认收货。在我们签收商品后,物流系统会在七天后延时发送一个消息给支付系统,通知支付系统将款打给商家,这个过程持续七天,就是使用了消息中间件的延迟推送功能。
  • 12306 购票支付确认页面。我们在选好票点击确定跳转的页面中往往都会有倒计时,代表着 30 分钟内订单不确认的话将会自动取消订单。其实在下订单那一刻开始购票业务系统就会发送一个延时消息给订单系统,延时30分钟,告诉订单系统订单未完成,如果我们在30分钟内完成了订单,则可以通过逻辑代码判断来忽略掉收到的消息。

在上面两种场景中,如果我们使用下面两种传统解决方案无疑大大降低了系统的整体性能和吞吐量:

  • 使用 redis 给订单设置过期时间,最后通过判断 redis 中是否还有该订单来决定订单是否已经完成。这种解决方案相较于消息的延迟推送性能较低,因为我们知道 redis 都是存储于内存中,我们遇到恶意下单或者刷单的将会给内存带来巨大压力。
  • 使用传统的数据库轮询来判断数据库表中订单的状态,这无疑增加了IO次数,性能极低。
  • 使用 jvm 原生的 DelayQueue ,也是大量占用内存,而且没有持久化策略,系统宕机或者重启都会丢失订单信息。

消息延迟推送的实现#

在 RabbitMQ 3.6.x 之前我们一般采用死信队列+TTL过期时间来实现延迟队列,我们这里不做过多介绍,可以参考之前文章来了解:TTL、死信队列

在 RabbitMQ 3.6.x 开始,RabbitMQ 官方提供了延迟队列的插件,可以下载放置到 RabbitMQ 根目录下的 plugins 下。延迟队列插件下载

技术图片

首先我们创建交换机和消息队列,application.properties 中配置与上一篇文章相同。

Copy
 1 import org.springframework.amqp.core.*;
 2 import org.springframework.context.annotation.Bean;
 3 import org.springframework.context.annotation.Configuration;
 4 
 5 import java.util.HashMap;
 6 import java.util.Map;
 7 
 8 @Configuration
 9 public class MQConfig {
10 
11     public static final String LAZY_EXCHANGE = "Ex.LazyExchange";
12     public static final String LAZY_QUEUE = "MQ.LazyQueue";
13     public static final String LAZY_KEY = "lazy.#";
14 
15     @Bean
16     public TopicExchange lazyExchange(){
17         //Map<String, Object> pros = new HashMap<>();
18         //设置交换机支持延迟消息推送
19         //pros.put("x-delayed-message", "topic");
20         TopicExchange exchange = new TopicExchange(LAZY_EXCHANGE, true, false, pros);
21         exchange.setDelayed(true);
22         return exchange;
23     }
24 
25     @Bean
26     public Queue lazyQueue(){
27         return new Queue(LAZY_QUEUE, true);
28     }
29 
30     @Bean
31     public Binding lazyBinding(){
32         return BindingBuilder.bind(lazyQueue()).to(lazyExchange()).with(LAZY_KEY);
33     }
}

我们在 Exchange 的声明中可以设置exchange.setDelayed(true)来开启延迟队列,也可以设置为以下内容传入交换机声明的方法中,因为第一种方式的底层就是通过这种方式来实现的。

   //Map<String, Object> pros = new HashMap<>();
        //设置交换机支持延迟消息推送
        //pros.put("x-delayed-message", "topic");
        TopicExchange exchange = new TopicExchange(LAZY_EXCHANGE, true, false, pros);

发送消息时我们需要指定延迟推送的时间,我们这里在发送消息的方法中传入参数 new MessagePostProcessor() 是为了获得 Message对象,因为需要借助 Message对象的api 来设置延迟时间。

 1 import com.anqi.mq.config.MQConfig;
 2 import org.springframework.amqp.AmqpException;
 3 import org.springframework.amqp.core.Message;
 4 import org.springframework.amqp.core.MessageDeliveryMode;
 5 import org.springframework.amqp.core.MessagePostProcessor;
 6 import org.springframework.amqp.rabbit.connection.CorrelationData;
 7 import org.springframework.amqp.rabbit.core.RabbitTemplate;
 8 import org.springframework.beans.factory.annotation.Autowired;
 9 import org.springframework.stereotype.Component;
10 
11 import java.util.Date;
12 
13 @Component
14 public class MQSender {
15 
16     @Autowired
17     private RabbitTemplate rabbitTemplate;
18 
19     //confirmCallback returnCallback 代码省略,请参照上一篇
20   
21     public void sendLazy(Object message){
22         rabbitTemplate.setMandatory(true);
23         rabbitTemplate.setConfirmCallback(confirmCallback);
24         rabbitTemplate.setReturnCallback(returnCallback);
25         //id + 时间戳 全局唯一
26         CorrelationData correlationData = new CorrelationData("12345678909"+new Date());
27 
28         //发送消息时指定 header 延迟时间
29         rabbitTemplate.convertAndSend(MQConfig.LAZY_EXCHANGE, "lazy.boot", message,
30                 new MessagePostProcessor() {
31             @Override
32             public Message postProcessMessage(Message message) throws AmqpException {
33                 //设置消息持久化
34                 message.getMessageProperties().setDeliveryMode(MessageDeliveryMode.PERSISTENT);
35                 //message.getMessageProperties().setHeader("x-delay", "6000");
36                 message.getMessageProperties().setDelay(6000);
37                 return message;
38             }
39         }, correlationData);
40     }
41 }

 

 

我们可以观察 setDelay(Integer i)底层代码,也是在 header 中设置 x-delay。等同于我们手动设置 header

message.getMessageProperties().setHeader("x-delay", "6000");

 1 /**
 2  * Set the x-delay header.
 3  * @param delay the delay.
 4  * @since 1.6
 5  */
 6 public void setDelay(Integer delay) {
 7     if (delay == null || delay < 0) {
 8         this.headers.remove(X_DELAY);
 9     }
10     else {
11         this.headers.put(X_DELAY, delay);
12     }
13 }

 

消费端进行消费

 1 import com.rabbitmq.client.Channel;
 2 import org.springframework.amqp.rabbit.annotation.*;
 3 import org.springframework.amqp.support.AmqpHeaders;
 4 import org.springframework.stereotype.Component;
 5 
 6 import java.io.IOException;
 7 import java.util.Map;
 8 
 9 @Component
10 public class MQReceiver {
11 
12     @RabbitListener(queues = "MQ.LazyQueue")
13     @RabbitHandler
14     public void onLazyMessage(Message msg, Channel channel) throws IOException{
15         long deliveryTag = msg.getMessageProperties().getDeliveryTag();
16         channel.basicAck(deliveryTag, true);
17         System.out.println("lazy receive " + new String(msg.getBody()));
18 
19     }
20 测试结果#
21 Copy
22 import org.junit.Test;
23 import org.junit.runner.RunWith;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.boot.test.context.SpringBootTest;
26 import org.springframework.test.context.junit4.SpringRunner;
27 
28 @SpringBootTest
29 @RunWith(SpringRunner.class)
30 public class MQSenderTest {
31 
32     @Autowired
33     private MQSender mqSender;
34 
35     @Test
36     public void sendLazy() throws  Exception {
37         String msg = "hello spring boot";
38 
39         mqSender.sendLazy(msg + ":");
40     }
41 }

 

出处:https://www.cnblogs.com/haixiang/p/10966985.html


 

 

RabbitMQ 延迟队列,消息延迟推送

标签:code   else   ttl   queue   turn   div   component   framework   integer   

原文地址:https://www.cnblogs.com/azoveh/p/13444694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!