概述
rabbitMQ的发布确认,三种发布确认
* 发布确认模式 使用的时间比较那种方式是最好的
*
* 1.单个确认 发布1000个单独确认消息,耗时31920ms
*
* 2.批量确认 发布1000个批量确认消息,耗时460ms
*
* 3.异步确认 发布1000个批量确认消息,耗时97ms
* 发布1000个批量确认消息,耗时96ms
package four;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.ConfirmCallback;
import utils.RabbitMqUtils;
import java.io.IOException;
import java.util.UUID;
import java.util.concurrent.ConcurrentNavigableMap;
import java.util.concurrent.ConcurrentSkipListMap;
import java.util.concurrent.TimeoutException;
/**
* 发布确认 模式 使用的时间比较那种方式是最好的
* 1.单个确认
* 2.批量确认
* 3.异步确认
*/
public class ConfirmMessage {
//批量消息的个数
public static final int MESSAGE_COUNT = 1000;
public static void main(String[] args) throws IOException, InterruptedException, TimeoutException {
//单个确认
//发布1000个单独确认消息,耗时31920ms
// publishMessageIndividually();
//批量确认
//发布1000个批量确认消息,耗时460ms
// publishMessageBatch();
//异步批量确认
//发布1000个批量确认消息,耗时97ms
//发布1000个批量确认消息,耗时96ms
publishMessageAsync();
}
//单个确认
public static void publishMessageIndividually() throws IOException, TimeoutException, InterruptedException {
Channel channel = RabbitMqUtils.getChannel();
//队列的声明
String queueName = UUID.randomUUID().toString();
channel.queueDeclare(queueName, true, false, false, null);
//开启发布确认
channel.confirmSelect();
//开始时间
long begin = System.currentTimeMillis();
//批量发消息
for (int i = 0; i < MESSAGE_COUNT; i++) {
String message = i + "";
channel.basicPublish("", queueName, null, message.getBytes());
//单个消息就马上进行发布确认
boolean flag = channel.waitForConfirms();
if (flag) {
System.out.println("消息发送成功");
}
}
//结束时间
long end = System.currentTimeMillis();
System.out.println("发布" + MESSAGE_COUNT + "个单独确认消息,耗时" + (end - begin) + "ms");
}
//批量确认
public static void publishMessageBatch() throws IOException, TimeoutException, InterruptedException {
Channel channel = RabbitMqUtils.getChannel();
//队列的声明
String queueName = UUID.randomUUID().toString();
channel.queueDeclare(queueName, true, false, false, null);
//开启发布确认
channel.confirmSelect();
//开始时间
long begin = System.currentTimeMillis();
//批量发布消息的大小
int batchSize = 100;
//未确认的个数
//批量发消息
for (int i = 0; i < MESSAGE_COUNT; i++) {
String message = i + "";
channel.basicPublish("", queueName, null, message.getBytes());
//判断达到100条消息的时候批量确认一次
if (i % batchSize == 0) {
//发布确认
boolean flag = channel.waitForConfirms();
}
}
//结束时间
long end = System.currentTimeMillis();
System.out.println("发布" + MESSAGE_COUNT + "个批量确认消息,耗时" + (end - begin) + "ms");
}
//异步确认
public static void publishMessageAsync() throws IOException, TimeoutException, InterruptedException {
Channel channel = RabbitMqUtils.getChannel();
//队列的声明
String queueName = UUID.randomUUID().toString();
channel.queueDeclare(queueName, true, false, false, null);
//开启发布确认
channel.confirmSelect();
/**
* 线程安全 有序的哈希表 适用于高并发的情况下
*1.轻松的将序号与消息进行map关联
*2.轻松的批量删除条目 只要给到序号
*3.支持高并发(多线程)
*/
ConcurrentSkipListMap<Long, String> outstandingConfirms =
new ConcurrentSkipListMap<>();
//消息确认成功 回调函数
ConfirmCallback ackCallback = (deliveryTag, multiple) -> {
//如果是批量的删除 就全部清理掉
if (multiple) {
//2.删除已经确认的消息 剩下的就是未确认的消息
ConcurrentNavigableMap<Long, String> confirmed =
outstandingConfirms.headMap(deliveryTag);
confirmed.clear();
}
//如果是单个的删除 就全部清理掉
else {
outstandingConfirms.remove(deliveryTag);
}
System.out.println("确认的消息:" + deliveryTag);
};
//消息确认失败 回调函数
/**
* 1.消息的标记
* 2.是否为批量确认
*/
ConfirmCallback nackCallback = (deliveryTag, multiple) -> {
//3.打印下未确认的消息都有哪些
String message = outstandingConfirms.get(deliveryTag);
System.out.println("未确认的消息是:" + message + ":::::::::未确认的标记是:" + deliveryTag);
};
//消息的监听器 哪些成功 哪些失败
/**
* 1.哪些成功
* 2.哪些失败
*/
channel.addConfirmListener(ackCallback, nackCallback);//异步监听
//开始时间
long begin = System.currentTimeMillis();
//批量发消息
for (int i = 0; i < MESSAGE_COUNT; i++) {
String message = i + "";
channel.basicPublish("", queueName, null, message.getBytes());
//1.此处记录下所有要发送的消息
outstandingConfirms.put(channel.getNextPublishSeqNo() - 1, message);
}
//结束时间
long end = System.currentTimeMillis();
System.out.println("发布" + MESSAGE_COUNT + "个批量确认消息,耗时" + (end - begin) + "ms");
}
}
最后
以上就是淡定鞋垫为你收集整理的rabbitMQ的发布确认,三种发布确认rabbitMQ的发布确认,三种发布确认的全部内容,希望文章能够帮你解决rabbitMQ的发布确认,三种发布确认rabbitMQ的发布确认,三种发布确认所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复