当前位置:   article > 正文

RabbitMQ如何保证顺序消费_rabbitmq 多服务消费按顺序

rabbitmq 多服务消费按顺序

一、场景介绍

很多时候,消息的消费是不⽤保证顺序的,⽐如借助mq实现订单超时的处理。但有些时候,业务中可 能会存在多个消息需要顺序处理的情况,⽐如⽣成订单和扣减库存消息,那肯定是先执⾏⽣成订单的 操作,再执⾏扣减库存的操作。 那么这种情况下,是如何保证消息顺序消费的呢?

⾸先,为了效率,我们可以设置多个队列都来处理顺序执⾏的消息。另外,我们需要保证每组顺序消 费的消息发到同⼀个队列中,给这些消息设置⼀个统⼀的全局id即可。

其次,保证消息的顺序消费。就像上⾯所说,⼀个队列对应⼀个消费者即可,但是在项⽬的集群部署 下,这⼜该怎么处理呢?针对这种情况,我们可以设置队列的“单活模式”。

x-single-active-consumer:单活模式,表⽰是否最多只允许⼀个消费者消费,如果有多个 消费者同时绑定,则只会激活第⼀个,除⾮第⼀个消费者被取消或者死亡,才会⾃动转到下 ⼀个消费者

⼆. 模拟代码实现

假设现在我们有两个队列处理顺序消息(消息1-1和1-2属于⼀组需要顺序消费的消息,消息2-1和2-2属 于另⼀组需要顺序消费的消息),每个队列有两个消费者(模拟消费者集群)。

 1. 队列的配置类

  1. package com.zst.springbootmq.sequence.config;
  2. import org.springframework.amqp.core.Binding;
  3. import org.springframework.amqp.core.BindingBuilder;
  4. import org.springframework.amqp.core.DirectExchange;
  5. import org.springframework.amqp.core.Queue;
  6. import org.springframework.context.annotation.Bean;
  7. import org.springframework.context.annotation.Configuration;
  8. import java.util.HashMap;
  9. @Configuration
  10. public class SeqQueueConfiguration {
  11. /**
  12. * 创建两个队列,处理顺序消息
  13. */
  14. @Bean
  15. public Queue seqQueue1() {
  16. return creatQueue("q_seq1");
  17. }
  18. @Bean
  19. public Queue seqQueue2() {
  20. return creatQueue("q_seq2");
  21. }
  22. // 交换机
  23. @Bean
  24. public DirectExchange seqDirectExchange() {
  25. return new DirectExchange("direct_seq");
  26. }
  27. // 队列绑定交换机,执⾏路由key
  28. @Bean
  29. public Binding seqBinding1() {
  30. return BindingBuilder.bind(seqQueue1()).to(seqDirectExchange()).with("1"
  31. }
  32. @Bean
  33. public Binding seqBinding2() {
  34. return BindingBuilder.bind(seqQueue2()).to(seqDirectExchange()).with("2"
  35. }
  36. /**
  37. * 创建⼀个 单活模式的队列
  38. * @param name
  39. * @return queue
  40. */
  41. private Queue creatQueue(String name) {
  42. HashMap<String, Object> args = new HashMap<>();
  43. // x-single-active-consumer 单活模式 队列
  44. // 表⽰是否最多只允许⼀个消费者消费,如果有多个消费者同时绑定,则只会激活第⼀个,
  45. // 除⾮第⼀个消费者被取消或者死亡,才会⾃动转到下⼀个消费者。
  46. args.put("x-single-active-consumer", true);
  47. return new Queue(name, true, false, false, args);
  48. }
  49. }

2. ⽣产者

  1. package com.zst.springbootmq.sequence.producer;
  2. import com.qfedu.springbootmq.sequence.message.MessageInfo;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.amqp.rabbit.core.RabbitTemplate;
  5. import org.springframework.stereotype.Component;
  6. import javax.annotation.Resource;
  7. @Component
  8. public class ProducerSeq {
  9. @Resource
  10. private RabbitTemplate rabbitTemplate;
  11. /**
  12. * 根据id,将消息顺序发送到对应的队列
  13. * @param id 业务id
  14. * @param msg 业务信息
  15. */
  16. public void send(int id, String msg) {
  17. MessageInfo message = new MessageInfo(id, msg);
  18. rabbitTemplate.convertAndSend("direct_seq", String.valueOf(id % 2 + 1),
  19. }
  20. }

3. 消费者

  1. package com.zst.springbootmq.sequence.consumer;
  2. import com.qfedu.springbootmq.sequence.message.MessageInfo;
  3. import org.springframework.amqp.rabbit.annotation.RabbitHandler;
  4. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  5. import org.springframework.stereotype.Component;
  6. import java.util.Random;
  7. @Component
  8. @RabbitListener(queues = "q_seq1")
  9. public class Consumer11 {
  10. @RabbitHandler
  11. public void onMessage(MessageInfo message) {
  12. System.out.println("c11:" + message.getId() + ":" + message.getMsg());
  13. // 随机休眠
  14. long l = new Random(1000).nextLong();
  15. try {
  16. Thread.sleep(l);
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }

 消费者2的代码实现:

  1. package com.zst.springbootmq.sequence.consumer;
  2. import com.qfedu.springbootmq.sequence.message.MessageInfo;
  3. import org.springframework.amqp.rabbit.annotation.RabbitHandler;
  4. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  5. import org.springframework.stereotype.Component;
  6. import java.util.Random;
  7. @Component
  8. @RabbitListener(queues = "q_seq1")
  9. public class Consumer12 {
  10. @RabbitHandler
  11. public void onMessage(MessageInfo message) {
  12. System.out.println("c12:" + message.getId() + ":" + message.getMsg());
  13. // 随机休眠
  14. long l = new Random(1000).nextLong();
  15. try {
  16. Thread.sleep(l);
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }

消费者3的代码实现:

  1. package com.zst.springbootmq.sequence.consumer;
  2. import com.zst.springbootmq.sequence.message.MessageInfo;
  3. import org.springframework.amqp.rabbit.annotation.RabbitHandler;
  4. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  5. import org.springframework.stereotype.Component;
  6. import java.util.Random;
  7. @Component
  8. @RabbitListener(queues = "q_seq2")
  9. public class Consumer21 {
  10. @RabbitHandler
  11. public void onMessage(MessageInfo message) {
  12. System.out.println("c21:" + message.getId() + ":" + message.getMsg());
  13. // 随机休眠
  14. long l = new Random(1000).nextLong();
  15. try {
  16. Thread.sleep(l);
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }

消费者4的代码实现:

  1. package com.zst.springbootmq.sequence.consumer;
  2. import com.zst.springbootmq.sequence.message.MessageInfo;
  3. import org.springframework.amqp.rabbit.annotation.RabbitHandler;
  4. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  5. import org.springframework.stereotype.Component;
  6. import java.util.Random;
  7. @Component
  8. @RabbitListener(queues = "q_seq2")
  9. public class Consumer22 {
  10. @RabbitHandler
  11. public void onMessage(MessageInfo message) {
  12. System.out.println("c22:" + message.getId() + ":" + message.getMsg());
  13. // 随机休眠
  14. long l = new Random(1000).nextLong();
  15. try {
  16. TimeUnit.MILLISECONDS.sleep(l);
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }

 4. 测试 

发送4个消息模拟顺序消费的消息,id为1和3的发送到⼀个队列,id为2和4的发送到另⼀个队列

  1. @Test
  2. public void testSeq() {
  3. for (int i = 1; i <= 4; i++) {
  4. producerSeq.send(i, "hello" + i);
  5. }
  6. try {
  7. Thread.sleep(2000);
  8. } catch (InterruptedException e) {
  9. e.printStackTrace();
  10. }
  11. }

 输出结果:

从结果中可以看到,虽然⼀个队列配置了两个消费者,但是每对顺序消息只有⼀个消费者顺序消费。

 另外,我们还可以看到队列中“SAC”,表⽰启⽤了单活模式,这样我们就实现了这个需求

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

闽ICP备14008679号