操纵018:Stream Queue

打印 上一主题 下一主题

主题 1830|帖子 1830|积分 5490

操纵018:Stream Queue

一、启用插件

   说明:只有启用了Stream插件,才华使用流式队列的完整功能
  在集群每个节点中依次执行如下操纵:
  1. # 启用Stream插件
  2. rabbitmq-plugins enable rabbitmq_stream
  3. # 重启rabbit应用
  4. rabbitmqctl stop_app
  5. rabbitmqctl start_app
  6. # 查看插件状态
  7. rabbitmq-plugins list
复制代码

二、负载平衡

在文件/etc/haproxy/haproxy.cfg末了追加:
  1. frontend rabbitmq_stream_frontend
  2. bind 192.168.200.100:33333
  3. mode tcp
  4. default_backend rabbitmq_stream_backend
  5. backend rabbitmq_stream_backend
  6. mode tcp
  7. balance roundrobin
  8. server rabbitmq1 192.168.200.100:5552 check
  9. server rabbitmq2 192.168.200.150:5552 check
  10. server rabbitmq3 192.168.200.200:5552 check
复制代码
三、Java代码

1、引入依赖

Stream 专属 Java 客户端官方网址:https://github.com/rabbitmq/rabbitmq-stream-java-client

Stream 专属 Java 客户端官方文档网址:https://rabbitmq.github.io/rabbitmq-stream-java-client/stable/htmlsingle/
  1. <dependencies>
  2.     <dependency>
  3.         <groupId>com.rabbitmq</groupId>
  4.         <artifactId>stream-client</artifactId>
  5.         <version>0.15.0</version>
  6.     </dependency>
  7.     <dependency>
  8.         <groupId>org.slf4j</groupId>
  9.         <artifactId>slf4j-api</artifactId>
  10.         <version>1.7.30</version>
  11.     </dependency>
  12.     <dependency>
  13.         <groupId>ch.qos.logback</groupId>
  14.         <artifactId>logback-classic</artifactId>
  15.         <version>1.2.3</version>
  16.     </dependency>
  17. </dependencies>
复制代码
2、创建Stream

   说明:不需要创建交换机
  ①代码方式创建

  1. Environment environment = Environment.builder()
  2.         .host("192.168.200.100")
  3.         .port(33333)
  4.         .username("atguigu")
  5.         .password("123456")
  6.         .build();
  7. environment.streamCreator().stream("stream.atguigu.test2").create();
  8. environment.close();
复制代码
②ManagementUI创建


3、生产者端步调

①内部机制说明

[1]官方文档

   Internally, the Environment will query the broker to find out about the topology of the stream and will create or re-use a connection to publish to the leader node of the stream.
  翻译:
   在内部,Environment将查询broker以了解流的拓扑结构,并将创建或重用毗连以发布到流的 leader 节点。
  [2]剖析



  • 在 Environment 中封装的毗连信息仅负责毗连到 broker
  • Producer 在构建对象时会访问 broker 拉取集群中 Leader 的毗连信息
  • 未来实际访问的是集群中的 Leader 节点
  • Leader 的毗连信息格式是:节点名称:端口号

[3]配置

为了让本机的应用步调知道 Leader 节点名称对应的 IP 地址,我们需要在本地配置 hosts 文件,创建从节点名称到 IP 地址的映射关系

②示例代码

  1. Environment environment = Environment.builder()
  2.         .host("192.168.200.100")
  3.         .port(33333)
  4.         .username("atguigu")
  5.         .password("123456")
  6.         .build();
  7. Producer producer = environment.producerBuilder()
  8.         .stream("stream.atguigu.test")
  9.         .build();
  10. byte[] messagePayload = "hello rabbit stream".getBytes(StandardCharsets.UTF_8);
  11. CountDownLatch countDownLatch = new CountDownLatch(1);
  12. producer.send(
  13.         producer.messageBuilder().addData(messagePayload).build(),
  14.         confirmationStatus -> {
  15.             if (confirmationStatus.isConfirmed()) {
  16.                 System.out.println("[生产者端]the message made it to the broker");
  17.             } else {
  18.                 System.out.println("[生产者端]the message did not make it to the broker");
  19.             }
  20.             countDownLatch.countDown();
  21.         });
  22. countDownLatch.await();
  23. producer.close();
  24. environment.close();
复制代码
4、消耗端步调

  1. Environment environment = Environment.builder()
  2.         .host("192.168.200.100")
  3.         .port(33333)
  4.         .username("atguigu")
  5.         .password("123456")
  6.         .build();
  7. environment.consumerBuilder()
  8.         .stream("stream.atguigu.test")
  9.         .name("stream.atguigu.test.consumer")
  10.         .autoTrackingStrategy()
  11.         .builder()
  12.         .messageHandler((offset, message) -> {
  13.             byte[] bodyAsBinary = message.getBodyAsBinary();
  14.             String messageContent = new String(bodyAsBinary);
  15.             System.out.println("[消费者端]messageContent = " + messageContent + " Offset=" + offset.offset());
  16.         })
  17.         .build();
复制代码
四、指定偏移量消耗

1、偏移量


2、官方文档说明

   The offset is the place in the stream where the consumer starts consuming from. The possible values for the offset parameter are the following:
  

  • OffsetSpecification.first(): starting from the first available offset. If the stream has not been truncated, this means the beginning of the stream (offset 0).
  • OffsetSpecification.last(): starting from the end of the stream and returning the last chunk of messages immediately (if the stream is not empty).
  • OffsetSpecification.next(): starting from the next offset to be written. Contrary to OffsetSpecification.last(), consuming with OffsetSpecification.next() will not return anything if no-one is publishing to the stream. The broker will start sending messages to the consumer when messages are published to the stream.
  • OffsetSpecification.offset(offset): starting from the specified offset. 0 means consuming from the beginning of the stream (first messages). The client can also specify any number, for example the offset where it left off in a previous incarnation of the application.
  • OffsetSpecification.timestamp(timestamp): starting from the messages stored after the specified timestamp. Note consumers can receive messages published a bit before the specified timestamp. Application code can filter out those messages if necessary.
  3、指定Offset消耗

  1. Environment environment = Environment.builder()
  2.         .host("192.168.200.100")
  3.         .port(33333)
  4.         .username("atguigu")
  5.         .password("123456")
  6.         .build();
  7. CountDownLatch countDownLatch = new CountDownLatch(1);
  8. Consumer consumer = environment.consumerBuilder()
  9.         .stream("stream.atguigu.test")
  10.         .offset(OffsetSpecification.first())
  11.         .messageHandler((offset, message) -> {
  12.             byte[] bodyAsBinary = message.getBodyAsBinary();
  13.             String messageContent = new String(bodyAsBinary);
  14.             System.out.println("[消费者端]messageContent = " + messageContent);
  15.             countDownLatch.countDown();
  16.         })
  17.         .build();
  18. countDownLatch.await();
  19. consumer.close();
复制代码
4、对比



  • autoTrackingStrategy 方式:始终监听Stream中的新消息(狗狗看家,忠于职守)
  • 指定偏移量方式:针对指定偏移量的消息消耗之后就制止(狗狗叼飞盘,叼回来就完)

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

愛在花開的季節

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表