RabbitMQ (二)工作隊列

http://blog.csdn.net/lmj623565791/article/details/37620057  文章出處,由於作者寫的比較好,本人直接拷過來了。

上一篇博客中我們寫了通過一個命名的隊列發送和接收消息,如果你還不瞭解請點擊:RabbitMQ 入門 Helloworld。這篇中我們將會創建一個工作隊列用來在工作者(consumer)間分發耗時任務。

工作隊列的主要任務是:避免立刻執行資源密集型任務,然後必須等待其完成。相反地,我們進行任務調度:我們把任務封裝爲消息發送給隊列。工作進行在後臺運行並不斷的從隊列中取出任務然後執行。當你運行了多個工作進程時,任務隊列中的任務將會被工作進程共享執行。
這樣的概念在web應用中極其有用,當在很短的HTTP請求間需要執行復雜的任務。
1、 準備

我們使用Thread.sleep來模擬耗時的任務。我們在發送到隊列的消息的末尾添加一定數量的點,每個點代表在工作線程中需要耗時1秒,例如hello…將會需要等待3秒。

發送端:

NewTask.Java

[java] view plain copy
  1. package com.zhy.rabbit._02_workqueue;  
  2.   
  3. import java.io.IOException;  
  4.   
  5. import com.rabbitmq.client.Channel;  
  6. import com.rabbitmq.client.Connection;  
  7. import com.rabbitmq.client.ConnectionFactory;  
  8.   
  9. public class NewTask  
  10. {  
  11.     //隊列名稱  
  12.     private final static String QUEUE_NAME = "workqueue";  
  13.   
  14.     public static void main(String[] args) throws IOException  
  15.     {  
  16.         //創建連接和頻道  
  17.         ConnectionFactory factory = new ConnectionFactory();  
  18.         factory.setHost("localhost");  
  19.         Connection connection = factory.newConnection();  
  20.         Channel channel = connection.createChannel();  
  21.         //聲明隊列  
  22.         channel.queueDeclare(QUEUE_NAME, falsefalsefalsenull);  
  23.         //發送10條消息,依次在消息後面附加1-10個點  
  24.         for (int i = 0; i < 10; i++)  
  25.         {  
  26.             String dots = "";  
  27.             for (int j = 0; j <= i; j++)  
  28.             {  
  29.                 dots += ".";  
  30.             }  
  31.             String message = "helloworld" + dots+dots.length();  
  32.             channel.basicPublish("", QUEUE_NAME, null, message.getBytes());  
  33.             System.out.println(" [x] Sent '" + message + "'");  
  34.         }  
  35.         //關閉頻道和資源  
  36.         channel.close();  
  37.         connection.close();  
  38.   
  39.     }  
  40.   
  41.   
  42. }  

接收端:

Work.java

[java] view plain copy
  1. package com.zhy.rabbit._02_workqueue;  
  2.   
  3. import com.rabbitmq.client.Channel;  
  4. import com.rabbitmq.client.Connection;  
  5. import com.rabbitmq.client.ConnectionFactory;  
  6. import com.rabbitmq.client.QueueingConsumer;  
  7.   
  8. public class Work  
  9. {  
  10.     //隊列名稱  
  11.     private final static String QUEUE_NAME = "workqueue";  
  12.   
  13.     public static void main(String[] argv) throws java.io.IOException,  
  14.             java.lang.InterruptedException  
  15.     {  
  16.         //區分不同工作進程的輸出  
  17.         int hashCode = Work.class.hashCode();  
  18.         //創建連接和頻道  
  19.         ConnectionFactory factory = new ConnectionFactory();  
  20.         factory.setHost("localhost");  
  21.         Connection connection = factory.newConnection();  
  22.         Channel channel = connection.createChannel();  
  23.         //聲明隊列  
  24.         channel.queueDeclare(QUEUE_NAME, falsefalsefalsenull);  
  25.         System.out.println(hashCode  
  26.                 + " [*] Waiting for messages. To exit press CTRL+C");  
  27.       
  28.         QueueingConsumer consumer = new QueueingConsumer(channel);  
  29.         // 指定消費隊列  
  30.         channel.basicConsume(QUEUE_NAME, true, consumer);  
  31.         while (true)  
  32.         {  
  33.             QueueingConsumer.Delivery delivery = consumer.nextDelivery();  
  34.             String message = new String(delivery.getBody());  
  35.   
  36.             System.out.println(hashCode + " [x] Received '" + message + "'");  
  37.             doWork(message);  
  38.             System.out.println(hashCode + " [x] Done");  
  39.   
  40.         }  
  41.   
  42.     }  
  43.   
  44.     /** 
  45.      * 每個點耗時1s 
  46.      * @param task 
  47.      * @throws InterruptedException 
  48.      */  
  49.     private static void doWork(String task) throws InterruptedException  
  50.     {  
  51.         for (char ch : task.toCharArray())  
  52.         {  
  53.             if (ch == '.')  
  54.                 Thread.sleep(1000);  
  55.         }  
  56.     }  
  57. }  

Round-robin 轉發
使用任務隊列的好處是能夠很容易的並行工作。如果我們積壓了很多工作,我們僅僅通過增加更多的工作者就可以解決問題,使系統的伸縮性更加容易。
下面我們先運行3個工作者(Work.java)實例,然後運行NewTask.java,3個工作者實例都會得到信息。但是如何分配呢?讓我們來看輸出結果:[x] Sent 'helloworld.1'
[x] Sent 'helloworld..2'
[x] Sent 'helloworld...3'
[x] Sent 'helloworld....4'
[x] Sent 'helloworld.....5'
[x] Sent 'helloworld......6'
[x] Sent 'helloworld.......7'
[x] Sent 'helloworld........8'
[x] Sent 'helloworld.........9'
[x] Sent 'helloworld..........10'

工作者1:
605645 [*] Waiting for messages. To exit press CTRL+C
605645 [x] Received 'helloworld.1'
605645 [x] Done
605645 [x] Received 'helloworld....4'
605645 [x] Done
605645 [x] Received 'helloworld.......7'
605645 [x] Done
605645 [x] Received 'helloworld..........10'
605645 [x] Done

工作者2:
18019860 [*] Waiting for messages. To exit press CTRL+C
18019860 [x] Received 'helloworld..2'
18019860 [x] Done
18019860 [x] Received 'helloworld.....5'
18019860 [x] Done
18019860 [x] Received 'helloworld........8'
18019860 [x] Done

工作者3:
18019860 [*] Waiting for messages. To exit press CTRL+C
18019860 [x] Received 'helloworld...3'
18019860 [x] Done
18019860 [x] Received 'helloworld......6'
18019860 [x] Done
18019860 [x] Received 'helloworld.........9'
18019860 [x] Done
可以看到,默認的,RabbitMQ會一個一個的發送信息給下一個消費者(consumer),而不考慮每個任務的時長等等,且是一次性分配,並非一個一個分配。平均的每個消費者將會獲得相等數量的消息。這樣分發消息的方式叫做round-robin。

2、 消息應答(message acknowledgments)
執行一個任務需要花費幾秒鐘。你可能會擔心當一個工作者在執行任務時發生中斷。我們上面的代碼,一旦RabbItMQ交付了一個信息給消費者,會馬上從內存中移除這個信息。在這種情況下,如果殺死正在執行任務的某個工作者,我們會丟失它正在處理的信息。我們也會丟失已經轉發給這個工作者且它還未執行的消息。
上面的例子,我們首先開啓兩個任務,然後執行發送任務的代碼(NewTask.java),然後立即關閉第二個任務,結果爲:
工作者2:

31054905 [*] Waiting for messages. To exit press CTRL+C
31054905 [x] Received 'helloworld..2'
31054905 [x] Done
31054905 [x] Received 'helloworld....4'

工作者1:
18019860 [*] Waiting for messages. To exit press CTRL+C
18019860 [x] Received 'helloworld.1'
18019860 [x] Done
18019860 [x] Received 'helloworld...3'
18019860 [x] Done
18019860 [x] Received 'helloworld.....5'
18019860 [x] Done
18019860 [x] Received 'helloworld.......7'
18019860 [x] Done
18019860 [x] Received 'helloworld.........9'
18019860 [x] Done
可以看到,第二個工作者至少丟失了6,8,10號任務,且4號任務未完成。

但是,我們不希望丟失任何任務(信息)。當某個工作者(接收者)被殺死時,我們希望將任務傳遞給另一個工作者。
爲了保證消息永遠不會丟失,RabbitMQ支持消息應答(message acknowledgments)。消費者發送應答給RabbitMQ,告訴它信息已經被接收和處理,然後RabbitMQ可以自由的進行信息刪除。
如果消費者被殺死而沒有發送應答,RabbitMQ會認爲該信息沒有被完全的處理,然後將會重新轉發給別的消費者。通過這種方式,你可以確認信息不會被丟失,即使消者偶爾被殺死。
這種機制並沒有超時時間這麼一說,RabbitMQ只有在消費者連接斷開是重新轉發此信息。如果消費者處理一個信息需要耗費特別特別長的時間是允許的。
消息應答默認是打開的。上面的代碼中我們通過顯示的設置autoAsk=true關閉了這種機制。下面我們修改代碼(Work.java):

[java] view plain copy
  1. boolean ack = false ; //打開應答機制  
  2. channel.basicConsume(QUEUE_NAME, ack, consumer);  
  3. //另外需要在每次處理完成一個消息後,手動發送一次應答。  
  4. channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false);  

完整修改後的Work.java

[java] view plain copy
  1. package com.zhy.rabbit._02_workqueue.ack;  
  2.   
  3. import com.rabbitmq.client.Channel;  
  4. import com.rabbitmq.client.Connection;  
  5. import com.rabbitmq.client.ConnectionFactory;  
  6. import com.rabbitmq.client.QueueingConsumer;  
  7.   
  8. public class Work  
  9. {  
  10.     //隊列名稱  
  11.     private final static String QUEUE_NAME = "workqueue";  
  12.   
  13.     public static void main(String[] argv) throws java.io.IOException,  
  14.             java.lang.InterruptedException  
  15.     {  
  16.         //區分不同工作進程的輸出  
  17.         int hashCode = Work.class.hashCode();  
  18.         //創建連接和頻道  
  19.         ConnectionFactory factory = new ConnectionFactory();  
  20.         factory.setHost("localhost");  
  21.         Connection connection = factory.newConnection();  
  22.         Channel channel = connection.createChannel();  
  23.         //聲明隊列  
  24.         channel.queueDeclare(QUEUE_NAME, falsefalsefalsenull);  
  25.         System.out.println(hashCode  
  26.                 + " [*] Waiting for messages. To exit press CTRL+C");  
  27.         QueueingConsumer consumer = new QueueingConsumer(channel);  
  28.         // 指定消費隊列  
  29.         boolean ack = false ; //打開應答機制  
  30.         channel.basicConsume(QUEUE_NAME, ack, consumer);  
  31.         while (true)  
  32.         {  
  33.             QueueingConsumer.Delivery delivery = consumer.nextDelivery();  
  34.             String message = new String(delivery.getBody());  
  35.   
  36.             System.out.println(hashCode + " [x] Received '" + message + "'");  
  37.             doWork(message);  
  38.             System.out.println(hashCode + " [x] Done");  
  39.             //發送應答  
  40.             channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false);  
  41.   
  42.         }  
  43.   
  44.     }  
  45. }  
測試:
我們把消息數量改爲5,然後先打開兩個消費者(Work.java),然後發送任務(NewTask.java),立即關閉一個消費者,觀察輸出:
[x] Sent 'helloworld.1'
[x] Sent 'helloworld..2'
[x] Sent 'helloworld...3'
[x] Sent 'helloworld....4'
[x] Sent 'helloworld.....5'

工作者2
18019860 [*] Waiting for messages. To exit press CTRL+C
18019860 [x] Received 'helloworld..2'
18019860 [x] Done
18019860 [x] Received 'helloworld....4'

工作者1
31054905 [*] Waiting for messages. To exit press CTRL+C
31054905 [x] Received 'helloworld.1'
31054905 [x] Done
31054905 [x] Received 'helloworld...3'
31054905 [x] Done
31054905 [x] Received 'helloworld.....5'
31054905 [x] Done
31054905 [x] Received 'helloworld....4'
31054905 [x] Done

可以看到工作者2沒有完成的任務4,重新轉發給工作者1進行完成了。

3、 消息持久化(Message durability)

我們已經學習了即使消費者被殺死,消息也不會被丟失。但是如果此時RabbitMQ服務被停止,我們的消息仍然會丟失。

當RabbitMQ退出或者異常退出,將會丟失所有的隊列和信息,除非你告訴它不要丟失。我們需要做兩件事來確保信息不會被丟失:我們需要給所有的隊列和消息設置持久化的標誌。
第一, 我們需要確認RabbitMQ永遠不會丟失我們的隊列。爲了這樣,我們需要聲明它爲持久化的。
boolean durable = true;
channel.queueDeclare("task_queue", durable, false, false, null);
注:RabbitMQ不允許使用不同的參數重新定義一個隊列,所以已經存在的隊列,我們無法修改其屬性。
第二, 我們需要標識我們的信息爲持久化的。通過設置MessageProperties(implements BasicProperties)值爲PERSISTENT_TEXT_PLAIN。
channel.basicPublish("", "task_queue",MessageProperties.PERSISTENT_TEXT_PLAIN,message.getBytes());
現在你可以執行一個發送消息的程序,然後關閉服務,再重新啓動服務,運行消費者程序做下實驗。

4、公平轉發(Fair dispatch)
或許會發現,目前的消息轉發機制(Round-robin)並非是我們想要的。例如,這樣一種情況,對於兩個消費者,有一系列的任務,奇數任務特別耗時,而偶數任務卻很輕鬆,這樣造成一個消費者一直繁忙,另一個消費者卻很快執行完任務後等待。
造成這樣的原因是因爲RabbitMQ僅僅是當消息到達隊列進行轉發消息。並不在乎有多少任務消費者並未傳遞一個應答給RabbitMQ。僅僅盲目轉發所有的奇數給一個消費者,偶數給另一個消費者。
爲了解決這樣的問題,我們可以使用basicQos方法,傳遞參數爲prefetchCount = 1。這樣告訴RabbitMQ不要在同一時間給一個消費者超過一條消息。換句話說,只有在消費者空閒的時候會發送下一條信息。
[java] view plain copy
  1. int prefetchCount = 1;  
  2. channel.basicQos(prefetchCount);  
注:如果所有的工作者都處於繁忙狀態,你的隊列有可能被填充滿。你可能會觀察隊列的使用情況,然後增加工作者,或者使用別的什麼策略。
測試:改變發送消息的代碼,將消息末尾點數改爲6-2個,然後首先開啓兩個工作者,接着發送消息:

[x] Sent 'helloworld......6'
[x] Sent 'helloworld.....5'
[x] Sent 'helloworld....4'
[x] Sent 'helloworld...3'
[x] Sent 'helloworld..2'

工作者1:
18019860 [*] Waiting for messages. To exit press CTRL+C
18019860 [x] Received 'helloworld......6'
18019860 [x] Done
18019860 [x] Received 'helloworld...3'
18019860 [x] Done

工作者2:
31054905 [*] Waiting for messages. To exit press CTRL+C
31054905 [x] Received 'helloworld.....5'
31054905 [x] Done
31054905 [x] Received 'helloworld....4'
31054905 [x] Done
31054905 [x] Received 'helloworld..2'
31054905 [x] Done

可以看出此時並沒有按照之前的Round-robin機制進行轉發消息,而是當消費者不忙時進行轉發。且這種模式下支持動態增加消費者,因爲消息並沒有發送出去,動態增加了消費者馬上投入工作。而默認的轉發機制會造成,即使動態增加了消費者,此時的消息已經分配完畢,無法立即加入工作,即使有很多未完成的任務。


5、完整的代碼

NewTask.java

[java] view plain copy
  1. package com.zhy.rabbit._02_workqueue.ackandpersistence;  
  2.   
  3. import java.io.IOException;  
  4.   
  5. import com.rabbitmq.client.Channel;  
  6. import com.rabbitmq.client.Connection;  
  7. import com.rabbitmq.client.ConnectionFactory;  
  8. import com.rabbitmq.client.MessageProperties;  
  9.   
  10. public class NewTask  
  11. {  
  12.     // 隊列名稱  
  13.     private final static String QUEUE_NAME = "workqueue_persistence";  
  14.   
  15.     public static void main(String[] args) throws IOException  
  16.     {  
  17.         // 創建連接和頻道  
  18.         ConnectionFactory factory = new ConnectionFactory();  
  19.         factory.setHost("localhost");  
  20.         Connection connection = factory.newConnection();  
  21.         Channel channel = connection.createChannel();  
  22.         // 聲明隊列  
  23.         boolean durable = true;// 1、設置隊列持久化  
  24.         channel.queueDeclare(QUEUE_NAME, durable, falsefalsenull);  
  25.         // 發送10條消息,依次在消息後面附加1-10個點  
  26.         for (int i = 5; i > 0; i--)  
  27.         {  
  28.             String dots = "";  
  29.             for (int j = 0; j <= i; j++)  
  30.             {  
  31.                 dots += ".";  
  32.             }  
  33.             String message = "helloworld" + dots + dots.length();  
  34.             // MessageProperties 2、設置消息持久化  
  35.             channel.basicPublish("", QUEUE_NAME,  
  36.                     MessageProperties.PERSISTENT_TEXT_PLAIN, message.getBytes());  
  37.             System.out.println(" [x] Sent '" + message + "'");  
  38.         }  
  39.         // 關閉頻道和資源  
  40.         channel.close();  
  41.         connection.close();  
  42.   
  43.     }  
  44.   
  45. }  

Work.java

[java] view plain copy
  1. package com.zhy.rabbit._02_workqueue.ackandpersistence;  
  2.   
  3. import com.rabbitmq.client.Channel;  
  4. import com.rabbitmq.client.Connection;  
  5. import com.rabbitmq.client.ConnectionFactory;  
  6. import com.rabbitmq.client.QueueingConsumer;  
  7.   
  8. public class Work  
  9. {  
  10.     // 隊列名稱  
  11.     private final static String QUEUE_NAME = "workqueue_persistence";  
  12.   
  13.     public static void main(String[] argv) throws java.io.IOException,  
  14.             java.lang.InterruptedException  
  15.     {  
  16.         // 區分不同工作進程的輸出  
  17.         int hashCode = Work.class.hashCode();  
  18.         // 創建連接和頻道  
  19.         ConnectionFactory factory = new ConnectionFactory();  
  20.         factory.setHost("localhost");  
  21.         Connection connection = factory.newConnection();  
  22.         Channel channel = connection.createChannel();  
  23.         // 聲明隊列  
  24.         boolean durable = true;  
  25.         channel.queueDeclare(QUEUE_NAME, durable, falsefalsenull);  
  26.         System.out.println(hashCode  
  27.                 + " [*] Waiting for messages. To exit press CTRL+C");  
  28.         //設置最大服務轉發消息數量  
  29.         int prefetchCount = 1;  
  30.         channel.basicQos(prefetchCount);  
  31.         QueueingConsumer consumer = new QueueingConsumer(channel);  
  32.         // 指定消費隊列  
  33.         boolean ack = false// 打開應答機制  
  34.         channel.basicConsume(QUEUE_NAME, ack, consumer);  
  35.         while (true)  
  36.         {  
  37.             QueueingConsumer.Delivery delivery = consumer.nextDelivery();  
  38.             String message = new String(delivery.getBody());  
  39.   
  40.             System.out.println(hashCode + " [x] Received '" + message + "'");  
  41.             doWork(message);  
  42.             System.out.println(hashCode + " [x] Done");  
  43.             //channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false);  
  44.             channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false);  
  45.   
  46.         }  
  47.   
  48.     }  
  49.   
  50.     /** 
  51.      * 每個點耗時1s 
  52.      *  
  53.      * @param task 
  54.      * @throws InterruptedException 
  55.      */  
  56.     private static void doWork(String task) throws InterruptedException  
  57.     {  
  58.         for (char ch : task.toCharArray())  
  59.         {  
  60.             if (ch == '.')  
  61.                 Thread.sleep(1000);  
  62.         }  
  63.     }  
  64. }  


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章