RabbitMQ学习第四记:路由模式(direct)
1、什么是路由模式(direct)
路由模式是在使用交换机的同时,生产者指定路由发送数据,消费者绑定路由接受数据。与发布/订阅模式不同的是,发布/订阅模式只要是绑定了交换机的队列都会收到生产者向交换机推送过来的数据。而路由模式下加了一个路由设置,生产者向交换机发送数据时,会声明发送给交换机下的那个路由,并且只有当消费者的队列绑定了交换机并且声明了路由,才会收到数据。下图取自于官方网站(rabbitmq)的路由模式的图例
p:消息的生产者
x:交换机
红色:队列
c1,c2:消息消费者
error,info,warning:路由
举个日志处理例子:系统需要针对日志做分析,首先所有的日志级别的日志都需要保存,其次error日志级别的日志需要单独做处理。这时就可以使用路由模式来处理了,声明交换机使用路由模式,每个日志级别的日志对应一个路由(error,info,warning)。声明一个保存日志队列用于接受所有日志,绑定交换机并绑定所有路由。声明第二个队列用于处理error级别日志,绑定交换机且只绑定error路由。以下是代码讲解。(先运行两个消费者,在运行生产者。如果没有提前将队列绑定到交换机,那么直接运行生产者的话,消息是不会发到任何队列里的)
2、生产者(send)代码
public class send { //交换机名称 private final static string exchange_name = "test_exchange_direct"; //路由名称warning private final static string routing_key_warning = "warning"; //路由名称info private final static string routing_key_info = "info"; //路由名称error private final static string routing_key_error = "error"; public static void main(string[] args) { try { //获取连接 connection connection = connectionutil.getconnection(); //从连接中获取一个通道 channel channel = connection.createchannel(); //声明交换机 channel.exchangedeclare(exchange_name, "direct"); string message = "this is warning log"; //发送消息(warning级别日志) channel.basicpublish(exchange_name, routing_key_warning, null, message.getbytes("utf-8")); system.out.println("[send]:" + message); //发送消息(info级别日志) message = "this is info log"; channel.basicpublish(exchange_name, routing_key_info, null, message.getbytes("utf-8")); system.out.println("[send]:" + message); //发送消息(error级别日志) message = "this is error log"; channel.basicpublish(exchange_name, routing_key_error, null, message.getbytes("utf-8")); system.out.println("[send]:" + message); channel.close(); connection.close(); } catch (ioexception | timeoutexception e) { e.printstacktrace(); } } }
运行结果:
[send]:this is warning log
[send]:this is info log
[send]:this is error log
3、消费者1(receivealllog)
public class receivealllog { //交换机名称 private final static string exchange_name = "test_exchange_direct"; //路由名称warning private final static string routing_key_warning = "warning"; //路由名称info private final static string routing_key_info = "info"; //路由名称error private final static string routing_key_error = "error"; //队列名称 private static final string queue_name = "test_queue_save_all_log"; public static void main(string[] args) { try { //获取连接 connection connection = connectionutil.getconnection(); //从连接中获取一个通道 final channel channel = connection.createchannel(); //声明交换机 channel.exchangedeclare(exchange_name, "direct"); //声明队列 channel.queuedeclare(queue_name, false, false, false, null); //将队列绑定到交换机(指定路由info,error,warning) channel.queuebind(queue_name, exchange_name, routing_key_info); channel.queuebind(queue_name, exchange_name, routing_key_error); channel.queuebind(queue_name, exchange_name, routing_key_warning); //保证一次只分发一个 int prefetchcount = 1; channel.basicqos(prefetchcount); //定义消费者 defaultconsumer consumer = new defaultconsumer(channel) { //当消息到达时执行回调方法 @override public void handledelivery(string consumertag, envelope envelope, basicproperties properties, byte[] body) throws ioexception { string message = new string(body, "utf-8"); system.out.println("[test_queue_save_all_log] receive message:" + message); try { //消费者休息2s处理业务 thread.sleep(1000); } catch (interruptedexception e) { e.printstacktrace(); } finally { //手动应答 channel.basicack(envelope.getdeliverytag(), false); } } }; //设置手动应答 boolean autoack = false; //监听队列 channel.basicconsume(queue_name, autoack, consumer); } catch (ioexception e) { e.printstacktrace(); } } }
运行结果:
[test_queue_save_all_log] receive message:this is warning log
[test_queue_save_all_log] receive message:this is info log
[test_queue_save_all_log] receive message:this is error log
4、消费者2(receiveerrorlog)
public class receiveerrorlog { //交换机名称 private final static string exchange_name = "test_exchange_direct"; //路由名称error private final static string routing_key_error = "error"; //队列名称 private static final string queue_name = "test_queue_handel_error"; public static void main(string[] args) { try { //获取连接 connection connection = connectionutil.getconnection(); //从连接中获取一个通道 final channel channel = connection.createchannel(); //声明队列 channel.queuedeclare(queue_name, false, false, false, null); //将队列绑定到交换机(指定路由error) channel.queuebind(queue_name, exchange_name, routing_key_error); //保证一次只分发一个 int prefetchcount = 1; channel.basicqos(prefetchcount); //定义消费者 defaultconsumer consumer = new defaultconsumer(channel) { //当消息到达时执行回调方法 @override public void handledelivery(string consumertag, envelope envelope, basicproperties properties, byte[] body) throws ioexception { string message = new string(body, "utf-8"); system.out.println("[test_queue_handel_error] receive message:" + message); try { //消费者休息2s处理业务 thread.sleep(1000); } catch (interruptedexception e) { e.printstacktrace(); } finally { //手动应答 channel.basicack(envelope.getdeliverytag(), false); } } }; //设置手动应答 boolean autoack = false; //监听队列 channel.basicconsume(queue_name, autoack, consumer); } catch (ioexception e) { e.printstacktrace(); } } }
运行结果:
[test_queue_handel_error] receive message:this is error log
总结:
1.两个队列消费者设置的路由不一样,接收到的消息就不一样。路由模式下,决定消息向队列推送的主要取决于路由,而不是交换机了。
2.该模式必须设置交换机,且声明路由模式:channel.exchangedeclare(exchange_name, "direct");
注意:本文仅代表个人理解和看法哟!和本人所在公司和团体无任何关系!