当前位置:   article > 正文

RabbitMQ系列(18)--RabbitMQ基于插件实现延迟队列_rabbitmq延迟队列插件

rabbitmq延迟队列插件

1、前往RabbitMQ官网下载往RabbitMQ添加延迟消息的插件

RabbitMQ官网下载插件的网址:https://www.rabbitmq.com/community-plugins.html

2、下载rabbitmq_delayer_message_exchange插件(注:RabbitMQ是什么版本的,下载的插件就得是什么版本的,得对应上,以下截图为官方文档的对插件版本的要求说明) 

 3、把这个插件传输到服务器上

4、根据官网的指示把插件放到RabbitMQ指定的文件夹下

RabbitMQ官网指示安装插件步骤的网址:https://www.rabbitmq.com/installing-plugins.html

我这里安装RabbitMQ的系统是CentOS,所以放在

5、拷贝插件到指定的目录下

例:

cp rabbitmq_delayed_message_exchange-3.10.0.ez /usr/lib/rabbitmq/lib/rabbitmq_server-3.10.0/plugins/

效果图:

 6、安装延迟队列插件

输入以下命令安装延迟队列插件

rabbitmq-plugins enable rabbitmq_delayed_message_exchange

效果图:

7、重启RabbitMQ

输入以下命令重启RabbitMQ

systemctl restart rabbitmq-server.service

效果图:

8、查看插件是否安装成功

 进入RabbitMQ的管理页面,进入Exchange的管理页面,新增Exchange,在Type里面可以看到x-delayed-message的选项,证明延迟队列插件安装成功

9、基于插件实现延迟队列的原理示意图

原先我们没下插件之前实现延迟队列是基于图下这种方式实现的

但我们下载插件后就能通过交换机延迟消息的方式来实现消息的延迟了(由步骤8可见,我们验证插件是否安装成功是从Exchange进去的,而不是从Queues进去的)

10、基于插件延迟队列的代码实现

(1)在config包里新建一个名为DelayedQueueConfig的类用于编写配置队列延迟的代码

代码如下:

  1. package com.ken.springbootrqbbitmq.config;
  2. import org.springframework.amqp.core.*;
  3. import org.springframework.beans.factory.annotation.Qualifier;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.context.annotation.Configuration;
  6. import java.util.HashMap;
  7. import java.util.Map;
  8. @Configuration
  9. public class DelayedQueueConfig {
  10. //队列
  11. public static final String DELAYED_QUEUE_NAME = "delayed_queue";
  12. //交换机
  13. public static final String DELAYED_EXCHANGE_NAME = "DELAYED_EXCHANGE";
  14. //交换机
  15. public static final String DELAYED_ROUTING_KEY = "delayed";
  16. //声明延迟队列
  17. @Bean
  18. public Queue delayedQueue() {
  19. return new Queue(DELAYED_QUEUE_NAME);
  20. }
  21. //声明延迟交换机
  22. @Bean
  23. public CustomExchange delayedExchange() {
  24. Map<String, Object> arguments = new HashMap<>(3);
  25. //设置延迟类型
  26. arguments.put("x-delayed-type","direct");
  27. /**
  28. * 声明自定义交换机
  29. * 第一个参数:交换机的名称
  30. * 第二个参数:交换机的类型
  31. * 第三个参数:是否需要持久化
  32. * 第四个参数:是否自动删除
  33. * 第五个参数:其他参数
  34. */
  35. return new CustomExchange(DELAYED_QUEUE_NAME,"x-delayed-message",true,false,arguments);
  36. }
  37. //绑定队列和延迟交换机
  38. @Bean
  39. public Binding delayedQueueBindingDelayedExchange(@Qualifier("delayedQueue") Queue delayedQueue,
  40. @Qualifier("delayedExchange") Exchange delayedExchange) {
  41. return BindingBuilder.bind(delayedQueue).to(delayedExchange).with(DELAYED_ROUTING_KEY).noargs();
  42. }
  43. }

 (2)在SendMsgController类里写一个接口,让其能往延迟队列里发送消息

代码如下:

  1. package com.ken.springbootrqbbitmq.controller;
  2. import com.ken.springbootrqbbitmq.config.DelayedQueueConfig;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.amqp.core.Message;
  5. import org.springframework.amqp.rabbit.core.RabbitTemplate;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import org.springframework.web.bind.annotation.PathVariable;
  9. import org.springframework.web.bind.annotation.RequestMapping;
  10. import org.springframework.web.bind.annotation.RestController;
  11. import java.util.Date;
  12. /**
  13. * 发送延迟消息
  14. */
  15. @Slf4j
  16. @RequestMapping("ttl")
  17. @RestController
  18. public class SendMsgController {
  19. @Autowired(required = false)
  20. private RabbitTemplate rabbitTemplate;
  21. @GetMapping("/sendMsg/{message}")
  22. public void sendMsg(@PathVariable String message) {
  23. log.info("当前时间:{},发送一条消息给两个TTL队列:{}",new Date(),message);
  24. rabbitTemplate.convertAndSend("normal_exchange","normal01","消息来着ttl为10s的队列:" + message);
  25. rabbitTemplate.convertAndSend("normal_exchange","normal02","消息来着ttl为40s的队列:" + message);
  26. }
  27. @GetMapping("/sendExpirationMsg/{message}/{ttlTime}")
  28. public void sendMsg(@PathVariable String message,@PathVariable String ttlTime) {
  29. log.info("当前时间:{},发送一条时长{}毫秒的TTL消息给normal03队列:{}", new Date(),ttlTime,message);
  30. rabbitTemplate.convertAndSend("normal_exchange","normal03",message,msg -> {
  31. //发送消息的时候延迟时长
  32. msg.getMessageProperties().setExpiration(ttlTime);
  33. return msg;
  34. });
  35. }
  36. /**
  37. * 给延迟队列发送消息
  38. * @param message
  39. * @param delayTime
  40. */
  41. @GetMapping("/sendDelayMsg/{message}/{delayTime}")
  42. public void sendMsg(@PathVariable String message,@PathVariable Integer delayTime) {
  43. log.info("当前时间:{},发送一条时长{}毫秒的消息给延迟队列:{}", new Date(),delayTime,message);
  44. rabbitTemplate.convertAndSend(DelayedQueueConfig.DELAYED_QUEUE_NAME,DelayedQueueConfig.DELAYED_ROUTING_KEY,message, msg -> {
  45. //发送消息的时候延迟时长
  46. msg.getMessageProperties().setDelay(delayTime);
  47. return msg;
  48. });
  49. }
  50. }

(3)在consumer包里新建一个名为DelayQueueConsumer的类用于编写消费延迟队列的消费者代码

效果图:

代码如下:

  1. package com.ken.springbootrqbbitmq.consumer;
  2. import com.ken.springbootrqbbitmq.config.DelayedQueueConfig;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.amqp.core.Message;
  5. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  6. import org.springframework.stereotype.Component;
  7. import java.util.Date;
  8. /**
  9. * 延迟队列消费者
  10. */
  11. @Slf4j
  12. @Component
  13. public class DelayQueueConsumer {
  14. @RabbitListener(queues = DelayedQueueConfig.DELAYED_QUEUE_NAME)
  15. private void receiveDelayQueue(Message message) {
  16. String msg = new String(message.getBody());
  17. log.info("当前时间{},收到延迟队列的消息",new Date(),msg);
  18. }
  19. }

(4)启动项目,往浏览器输入接口地址和参数,从而调用接口

[1]第一条消息

http://localhost:8080/ttl/sendDelayMsg/我是第一条消息/20000

[2]第二条消息

http://localhost:8080/ttl/sendDelayMsg/我是第二条消息/2000

效果图:

结论:基于测试发现在使用延迟插件的情况下,延迟时间短的消息会被先消费,这证明基于插件的延迟消息达到预期效果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/372762
推荐阅读
  

闽ICP备14008679号