二、Topic(主题) (using the Java client)

上一篇文章中,我们进步改良了我们的日志系统。我们使用direct类型转发器,使得接收者有能力进行选择性的接收日志,,而非fanout那样,只能够无脑的转发。
为了在我们的系统中实现上述的需求,我们需要学习稍微复杂的主题类型的转发器(topic exchange)。

三、Topic exchange(主题转换)

主题类型的转发器的消息不能随意的设置选择键(routing_key),必须是由点隔开的一系列的标识符组成。
标识符可以是任何东西,但是一般都与消息的某些特性相关。一些合法的选择键的例子:
"stock.usd.nyse", "nyse.vmw","quick.orange.rabbit".你可以定义任何数量的标识符,上限为255个字节。
绑定键和选择键的形式一样。主题类型的转发器背后的逻辑和直接类型的转发器很类似:一个附带特殊的选择键将会被转发到绑定键与之匹配的队列中。需要注意的是:关于绑定键有两种特殊的情况。

  • * 可以匹配一个标识符。
  • # 可以匹配0个或多个标识符。
下面一个简单的图片实例:
我们准备发送关于动物的消息。消息会附加一个选择键包含3个标识符(两个点隔开)。
第一个标识符描述动物的速度,
第二个标识符描述动物的颜色,
第三个标识符描述动物的物种:<speed>.<color>.<species>。
我们创建3个绑定键:Q1与*.orange.*绑定Q2与*.*.rabbit和lazy.#绑定。:
另一方面,lazy.orange.male.rabbit,虽然是四个标识符,也可以与lazy.#匹配,从而转发至Q2。 
注:主题类型的转发器非常强大,可以实现其他类型的转发器。
当一个队列与绑定键#绑定,将会收到所有的消息,类似fanout类型转发器。 当绑定键中不包含任何#与*时,类似direct类型转发器
 

四、Putting it all together(全部代码)

我们要在我们的日志系统,用一个主题转换。我们先假设工作日志的路由键将两个词:<facility>.<severity>。
发送 EmitLogTopic.java:
  1. public class EmitLogTopic {
  2. private static final String EXCHANGE_NAME = "topic_logs";
  3. public static void main(String[] argv)
  4. throws Exception {
  5. ConnectionFactory factory = new ConnectionFactory();
  6. factory.setHost("localhost");
  7. Connection connection = factory.newConnection();
  8. Channel channel = connection.createChannel();
  9. channel.exchangeDeclare(EXCHANGE_NAME, "topic");
  10. String routingKey = getRouting(argv);
  11. String message = getMessage(argv);
  12. channel.basicPublish(EXCHANGE_NAME, routingKey, null, message.getBytes());
  13. System.out.println(" [x] Sent '" + routingKey + "':'" + message + "'");
  14. connection.close();
  15. }
  16. //...
  17. }

接收端:ReceiveLogsTopic.java:

  1. public class ReceiveLogsTopic {
  2. private static final String EXCHANGE_NAME = "topic_logs";
  3. public static void main(String[] argv)
  4. throws Exception {
  5. ConnectionFactory factory = new ConnectionFactory();
  6. factory.setHost("localhost");
  7. Connection connection = factory.newConnection();
  8. Channel channel = connection.createChannel();
  9. channel.exchangeDeclare(EXCHANGE_NAME, "topic");
  10. String queueName = channel.queueDeclare().getQueue();
  11. if (argv.length < 1){
  12. System.err.println("Usage: ReceiveLogsTopic [binding_key]...");
  13. System.exit(1);
  14. }
  15. for(String bindingKey : argv){
  16. channel.queueBind(queueName, EXCHANGE_NAME, bindingKey);
  17. }
  18. System.out.println(" [*] Waiting for messages. To exit press CTRL+C");
  19. QueueingConsumer consumer = new QueueingConsumer(channel);
  20. channel.basicConsume(queueName, true, consumer);
  21. while (true) {
  22. QueueingConsumer.Delivery delivery = consumer.nextDelivery();
  23. String message = new String(delivery.getBody());
  24. String routingKey = delivery.getEnvelope().getRoutingKey();
  25. System.out.println(" [x] Received '" + routingKey + "':'" + message + "'");
  26. }
  27. }
  28. }
 

Run the following examples, including the classpath as in Tutorial 1 - on Windows, use %CP%.

To receive all the logs:

$ java -cp $CP ReceiveLogsTopic "#"

To receive all logs from the facility "kern":

$ java -cp $CP ReceiveLogsTopic "kern.*"

Or if you want to hear only about "critical" logs:

$ java -cp $CP ReceiveLogsTopic "*.critical"

You can create multiple bindings:

$ java -cp $CP ReceiveLogsTopic "kern.*" "*.critical"

And to emit a log with a routing key "kern.critical" type:

$ java -cp $CP EmitLogTopic "kern.critical" "A critical kernel error"

Have fun playing with these programs. Note that the code doesn't make any assumption about the routing or binding keys, you may want to play with more than two routing key parameters.

Some teasers:

  • Will "*" binding catch a message sent with an empty routing key?
  • Will "#.*" catch a message with a string ".." as a key? Will it catch a message with a single word key?
  • How different is "a.*.#" from "a.#"?

五、注释版的程序实例(全部代码)

  • import com.rabbitmq.client.Channel;
  • import com.rabbitmq.client.Connection;
  • import com.rabbitmq.client.ConnectionFactory;
  • public class EmitLogTopic {
  • private static final String EXCHANGE_NAME = "topic_logs";
  • public static void main(String[] argv) throws Exception {
  • ConnectionFactory factory = new ConnectionFactory();
  • factory.setHost("localhost");
  • Connection connection = factory.newConnection();
  • Channel channel = connection.createChannel();
  • channel.exchangeDeclare(EXCHANGE_NAME, "topic");//声明topic类型的Exchange
  • String routingKeyOne = "logs.error.one";// 定义一个路由名为“error”
  • for (int i = 0; i <= 1; i++) {
  • String messageOne = "this is one error logs:" + i;
  • channel.basicPublish(EXCHANGE_NAME, routingKeyOne, null, messageOne
  • .getBytes());
  • System.out.println(" [x] Sent '" + routingKeyOne + "':'"
  • + messageOne + "'");
  • }
  • System.out.println("################################");
  • String routingKeyTwo = "logs.error.two";
  • for (int i = 0; i <= 2; i++) {
  • String messageTwo = "this is two error logs:" + i;
  • channel.basicPublish(EXCHANGE_NAME, routingKeyTwo, null, messageTwo
  • .getBytes());
  • System.out.println(" [x] Sent '" + routingKeyTwo + "':'"
  • + messageTwo + "'");
  • }
  • System.out.println("################################");
  • String routingKeyThree = "logs.info.one";
  • for (int i = 0; i <= 3; i++) {
  • String messageThree = "this is one info logs:" + i;
  • channel.basicPublish(EXCHANGE_NAME, routingKeyThree, null,
  • messageThree.getBytes());
  • System.out.println(" [x] Sent '" + routingKeyThree + "':'"
  • + messageThree + "'");
  • }
  • channel.close();
  • connection.close();
  • }
  • }
运行结果可能如下:'logs.error.one':'this is one error logs:0'

  • [x] Sent 'logs.error.one':'this is one error logs:1'
  • ################################
  • [x] Sent 'logs.error.two':'this is two error logs:0'
  • [x] Sent 'logs.error.two':'this is two error logs:1'
  • [x] Sent 'logs.error.two':'this is two error logs:2'
  • ################################
  • [x] Sent 'logs.info.one':'this is one info logs:0'
  • [x] Sent 'logs.info.one':'this is one info logs:1'
  • [x] Sent 'logs.info.one':'this is one info logs:2'
  • [x] Sent 'logs.info.one':'this is one info logs:3'
第一个C端的代码如下:
  • package com.abin.rabbitmq;  
     
    import com.rabbitmq.client.Channel;  
    import com.rabbitmq.client.Connection;  
    import com.rabbitmq.client.ConnectionFactory;  
    import com.rabbitmq.client.QueueingConsumer;  
     
    public class ReceiveLogsTopic {  
        private static final String EXCHANGE_NAME = "topic_logs";// 定义Exchange名称  
     
        public static void main(String[] argv) throws Exception {  
     
            ConnectionFactory factory = new ConnectionFactory();  
            factory.setHost("localhost");  
            Connection connection = factory.newConnection();  
            Channel channel = connection.createChannel();  
     
            channel.exchangeDeclare(EXCHANGE_NAME, "topic");// 声明topic类型的Exchange  
     
            String queueName = "queue_topic_logs1";// 定义队列名为“queue_topic_logs1”的Queue  
            channel.queueDeclare(queueName, false, false, false, null);  
    //      String routingKeyOne = "*.error.two";// "error"路由规则  
    //      channel.queueBind(queueName, EXCHANGE_NAME, routingKeyOne);// 把Queue、Exchange及路由绑定  
            String routingKeyTwo = "logs.*.one";//通配所有logs下第三词(最后一个)词为one的消息  
            channel.queueBind(queueName, EXCHANGE_NAME, routingKeyTwo);  
     
            System.out.println(" [*] Waiting for messages.");  
     
            QueueingConsumer consumer = new QueueingConsumer(channel);  
            channel.basicConsume(queueName, true, consumer);  
     
            while (true) {  
                QueueingConsumer.Delivery delivery = consumer.nextDelivery();  
                String message = new String(delivery.getBody());  
                String routingKey = delivery.getEnvelope().getRoutingKey();  
     
                System.out.println(" [x] Received '" + routingKey + "':'" + message  
                        + "'");  
            }  
        }  
    }
  • 第二个C端的运行结果如下:
  • [*] Waiting for messages.  
    [x] Received 'logs.error.one':'this is one error logs:0'  
    [x] Received 'logs.error.one':'this is one error logs:1'  
    [x] Received 'logs.error.two':'this is two error logs:0'  
    [x] Received 'logs.error.two':'this is two error logs:1'  
    [x] Received 'logs.error.two':'this is two error logs:2'  
    [x] Received 'logs.info.one':'this is one info logs:0'  
    [x] Received 'logs.info.one':'this is one info logs:1'  
    [x] Received 'logs.info.one':'this is one info logs:2'  
    [x] Received 'logs.info.one':'this is one info logs:3' 
     
     
     
     
     
     
     
     
												

柯南君:看大数据时代下的IT架构(8)消息队列之RabbitMQ--案例(topic起航)的更多相关文章

  1. 柯南君:看大数据时代下的IT架构(5)消息队列之RabbitMQ--案例(Work Queues起航)

    二.Work Queues(using the Java Client) 走起   在第上一个教程中我们写程序从一个命名队列发送和接收消息.在这一次我们将创建一个工作队列,将用于分发耗时的任务在多个工 ...

  2. 柯南君:看大数据时代下的IT架构(4)消息队列之RabbitMQ--案例(Helloword起航)

    柯南君:看大数据时代下的IT架构(4)消息队列之RabbitMQ--案例(Helloword起航) 二.起航 本章节,柯南君将从几个层面,用官网例子讲解一下RabbitMQ的实操经典程序案例,让大家重 ...

  3. 柯南君:看大数据时代下的IT架构(3)消息队列之RabbitMQ-安装、配置与监控

    柯南君:看大数据时代下的IT架构(3)消息队列之RabbitMQ-安装.配置与监控 一.安装 1.安装Erlang 1)系统编译环境(这里采用linux/unix 环境) ① 安装环境 虚拟机:VMw ...

  4. 看大数据时代下的IT架构(1)业界消息队列对比

    一.MQ(Message Queue) 即 消息队列,一般用于应用系统解耦.消息异步分发,能够提高系统吞吐量.MQ的产品有很多,有开源的,也有闭源,比如ZeroMQ.RabbitMQ. ActiveM ...

  5. 柯南君:看大数据时代下的IT架构(2)消息队列之RabbitMQ-基础概念详细介绍

    一.基础概念详细介绍 1.引言 你是否遇到过两个(多个)系统间需要通过定时任务来同步某些数据?你是否在为异构系统的不同进程间相互调用.通讯的问题而苦恼.挣扎?如果是,那么恭喜你,消息服务让你可以很轻松 ...

  6. 柯南君:看大数据时代下的IT架构(6)消息队列之RabbitMQ--案例(Publish/Subscribe起航)

    二.Publish/Subscribe(发布/订阅)(using the Java Client) 为了说明这个模式,我们将构建一个简单的日志系统.它将包括两个项目: 第一个将发出日志消息 第二个将接 ...

  7. 柯南君:看大数据时代下的IT架构(9)消息队列之RabbitMQ--案例(RPC起航)

    二.Remote procedure call (RPC)(using the Java client) 三.Client interface(客户端接口) 为了展示一个RPC服务是如何使用的,我们将 ...

  8. 柯南君:看大数据时代下的IT架构(7)消息队列之RabbitMQ--案例(routing 起航)

    二.Routing(路由) (using the Java client) 在前面的学习中,构建了一个简单的日志记录系统,能够广播所有的日志给多个接收者,在该部分学习中,将添加一个新的特点,就是可以只 ...

  9. 大数据时代下EDM邮件营销的变革

    根据研究,今年的EDM邮件营销的邮件发送量比去年增长了63%,许多方法可以为你收集用户数据,这些数据可以帮助企业改善自己在营销中的精准度,相关性和执行力. 最近的一项研究表明,中国800强企业当中超过 ...

随机推荐

  1. 互联网大公司的CEO,多是程序员出身

    互联网有个现象,大公司的CEO,多是程序员出身.举例如下:------马化腾93年深大计算机系毕业,进入润迅通信从软件工程师做到开发部主管,98年11月与张志东等凑齐50万元注册腾讯公司,99年2月开 ...

  2. 运维人员:走好你的IT运维路

      转自 http://os.51cto.com/art/201303/387120.htm   现阶段,大多数运维人员只是处于被动低效率手工救火的状态,企业对其重视程度不高,导致部分运维人员对自己的 ...

  3. AJAX+cURL+SimpleXMLElement处理数据

    curl_xml.html: <!DOCTYPE html> <html lang="en"> <head> <meta charset= ...

  4. 用Cookie和Session实现用户登录 函数

    由于网页是一种无状态的连接程序,你无法得知用户的浏览状态,必须通过Cookie或Session记录用户的有关信息. Cookie: 是一种在远程浏览器端储存数据并以此来跟踪和识别用户的机制. PHP透 ...

  5. 初学swift笔记变量的定义(一)

    swift变量的定义 1 import Foundation /* 变量的定义 变量的类型是可以不用写的 var a=10 常量的定义 let修饰 */ print(a) let b= print(b ...

  6. SQL Server 移动系统数据库位置(非master)

    以移动tempdb为例子: -------------------------------------------------------------------------------------- ...

  7. android应用开发全程实录-你有多熟悉listview

    http://blog.csdn.net/notice520/article/details/7040962 今天给大家带来<android应用开发全程实录>中关于listview和ada ...

  8. USB_OTG_study

    1 USB OTG的工作原理 OTG补充规范对USB 2.0的最重要的扩展,是其更具节能性的电源管理和允许设备以主机和外设两种形式工作.OTG有两种设备类型:两用OTG设备(Dualrole devi ...

  9. 迎接 Windows Azure 和 DNN 挑战,几分钟内快速构建网站!

    编辑人员注释:本文章由高级商务策划师兼开发平台推广者 Neeti Gupta 撰写. 曾几何时,构建一个简单的网站需要耗费好几个月的时间.在过去,.NET 开发人员和设计社区的一些成员使用 DNN(以 ...

  10. 数据存储(三)--JSON数据处理

    JSON是一种轻量级的数据交换格式,具有良好的可读和便于高速编写的特性,从而能够在不同平台间进行数据交换.JSON採用兼容性非常高的文本格式,同一时候也具备类似于C语言体系的行为.JSON能够将Jav ...