<i id='LqgOm'><tr id='LqgOm'><dt id='LqgOm'><q id='LqgOm'><span id='LqgOm'><b id='LqgOm'><form id='LqgOm'><ins id='LqgOm'></ins><ul id='LqgOm'></ul><sub id='LqgOm'></sub></form><legend id='LqgOm'></legend><bdo id='LqgOm'><pre id='LqgOm'><center id='LqgOm'></center></pre></bdo></b><th id='LqgOm'></th></span></q></dt></tr></i><div id='LqgOm'><tfoot id='LqgOm'></tfoot><dl id='LqgOm'><fieldset id='LqgOm'></fieldset></dl></div>
    <tfoot id='LqgOm'></tfoot>
      • <bdo id='LqgOm'></bdo><ul id='LqgOm'></ul>

    1. <legend id='LqgOm'><style id='LqgOm'><dir id='LqgOm'><q id='LqgOm'></q></dir></style></legend>
    2. <small id='LqgOm'></small><noframes id='LqgOm'>

        RabbitMQ 等待多个队列完成

        RabbitMQ wait for multiple queues to finish(RabbitMQ 等待多个队列完成)

        <i id='tnodn'><tr id='tnodn'><dt id='tnodn'><q id='tnodn'><span id='tnodn'><b id='tnodn'><form id='tnodn'><ins id='tnodn'></ins><ul id='tnodn'></ul><sub id='tnodn'></sub></form><legend id='tnodn'></legend><bdo id='tnodn'><pre id='tnodn'><center id='tnodn'></center></pre></bdo></b><th id='tnodn'></th></span></q></dt></tr></i><div id='tnodn'><tfoot id='tnodn'></tfoot><dl id='tnodn'><fieldset id='tnodn'></fieldset></dl></div>

      1. <legend id='tnodn'><style id='tnodn'><dir id='tnodn'><q id='tnodn'></q></dir></style></legend>
        <tfoot id='tnodn'></tfoot>

        <small id='tnodn'></small><noframes id='tnodn'>

          • <bdo id='tnodn'></bdo><ul id='tnodn'></ul>

                  <tbody id='tnodn'></tbody>
                  本文介绍了RabbitMQ 等待多个队列完成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  好的,这里是正在发生的事情的概述:

                  Ok here is an overview of what's going on:

                      M <-- Message with unique id of 1234
                      |
                      +-Start Queue
                      |
                      |
                      | <-- Exchange
                     /|
                    / | 
                   /  |   <-- bind to multiple queues
                  Q1  Q2  Q3
                     |   / <-- start of the problem is here
                     |  / 
                     | /
                     |/
                      |
                      Q4 <-- Queues 1,2 and 3 must finish first before Queue 4 can start
                      |
                      C <-- Consumer 
                  

                  所以我有一个exchange,推送到多个队列,每个队列都有一个任务,一旦所有任务都完成了,才可以启动队列4.

                  So I have an exchange that pushes to multiple queues, each queue has a task, once all tasks are completed, only then can Queue 4 start.

                  因此,唯一 id 为 1234 的消息被发送到交换器,交换器将其路由到所有任务队列(Q1、Q2、Q3 等...),当消息 id 为 1234 的所有任务都完成后,运行消息 ID 1234 的 Q4.

                  So message with unique id of 1234 gets sent to the exchange, the exchange routes it to all the task queues ( Q1, Q2, Q3, etc... ), when all the tasks for message id 1234 have completed, run Q4 for message id 1234.

                  我该如何实现?

                  使用 Symfony2、RabbitMQBundle 和 RabbitMQ 3.x

                  Using Symfony2, RabbitMQBundle and RabbitMQ 3.x

                  资源:

                  • http://www.rabbitmq.com/tutorials/amqp-concepts.html李>
                  • http://www.rabbitmq.com/tutorials/tutorial-six-python.html

                  更新 #1

                  好的,我想这就是我要找的:

                  Ok I think this is what I'm looking for:

                  • https://github.com/videlalvaro/Thumper/tree/master/examples/parallel_processing

                  带有并行处理的 RPC,但是如何将 Correlation Id 设置为我的唯一 ID 以对消息进行分组并识别哪个队列?

                  RPC with Parallel Processing, but how do I set the Correlation Id to be my unique id to group the messages and also identify what queue?

                  推荐答案

                  在RabbitMQ 站点上的 RPC 教程,有一种方法可以传递一个相关 id",可以识别您的消息给队列中的用户.

                  In the RPC tutorial at RabbitMQ's site, there is a way to pass around a 'Correlation id' that can identify your messages to users in the queue.

                  我建议在您的消息中使用某种 id 到前 3 个队列中,然后有另一个过程将消息从 3 个队列中取出到某种类型的存储桶中.当这些存储桶收到我假设完成的 3 个任务时,将最终消息发送到第 4 个队列进行处理.

                  I'd recommend using some sort of id with your messages into the first 3 queues and then have another process to dequeue messages from the 3 into buckets of some sort. When those buckets receive what I'm assuming is the completion of there 3 tasks, send the final message off to the 4th queue for processing.

                  如果您要为一个用户向每个队列发送超过 1 个工作项,您可能需要进行一些预处理以找出特定用户放入队列中的项目数量,以便在 4 之前出队的进程知道要多少排队前期待.

                  If you are sending more than 1 work item to each queue for one user, you might have to do a little preprocessing to find out how many items a particular user placed into the queue so the process dequeuing before 4 knows how many to expect before queuing up.

                  我用 C# 编写 rabbitmq,很抱歉我的伪代码不是 php 样式

                  I do my rabbitmq in C#, so sorry my pseudo code isn't in php style

                  // Client
                  byte[] body = new byte[size];
                  body[0] = uniqueUserId;
                  body[1] = howManyWorkItems;
                  body[2] = command;
                  
                  // Setup your body here
                  
                  Queue(body)
                  

                  <小时>

                  // Server
                  // Process queue 1, 2, 3
                  Dequeue(message)
                  
                  switch(message.body[2])
                  {
                      // process however you see fit
                  }
                  
                  processedMessages[message.body[0]]++;
                  
                  if(processedMessages[message.body[0]] == message.body[1])
                  {
                      // Send to queue 4
                      Queue(newMessage)
                  }
                  

                  <小时>

                  对更新 #1 的回应

                  与其将客户端视为终端,不如将客户端视为服务器上的进程.因此,如果您在 这个,那么您需要做的就是让服务器处理用户唯一 ID 的生成并将消息发送到适当的队列:

                  Instead of thinking of your client as a terminal, it might be useful to think of the client as a process on a server. So if you setup an RPC client on a server like this one, then all you need to do is have the server handle the generation of a unique id of a user and send the messages to the appropriate queues:

                      public function call($uniqueUserId, $workItem) {
                          $this->response = null;
                          $this->corr_id = uniqid();
                  
                          $msg = new AMQPMessage(
                              serialize(array($uniqueUserId, $workItem)),
                              array('correlation_id' => $this->corr_id,
                              'reply_to' => $this->callback_queue)
                          );
                  
                          $this->channel->basic_publish($msg, '', 'rpc_queue');
                          while(!$this->response) {
                              $this->channel->wait();
                          }
                  
                          // We assume that in the response we will get our id back
                          return deserialize($this->response);
                      }
                  
                  
                  $rpc = new Rpc();
                  
                  // Get unique user information and work items here
                  
                  // Pass even more information in here, like what queue to use or you could even loop over this to send all the work items to the queues they need.
                  $response = rpc->call($uniqueUserId, $workItem);
                  
                  $responseBuckets[array[0]]++;
                  
                  // Just like above code that sees if a bucket is full or not
                  

                  这篇关于RabbitMQ 等待多个队列完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                  <tfoot id='uo9Dq'></tfoot>
                    <tbody id='uo9Dq'></tbody>
                  <legend id='uo9Dq'><style id='uo9Dq'><dir id='uo9Dq'><q id='uo9Dq'></q></dir></style></legend>

                    • <bdo id='uo9Dq'></bdo><ul id='uo9Dq'></ul>
                        • <small id='uo9Dq'></small><noframes id='uo9Dq'>

                        • <i id='uo9Dq'><tr id='uo9Dq'><dt id='uo9Dq'><q id='uo9Dq'><span id='uo9Dq'><b id='uo9Dq'><form id='uo9Dq'><ins id='uo9Dq'></ins><ul id='uo9Dq'></ul><sub id='uo9Dq'></sub></form><legend id='uo9Dq'></legend><bdo id='uo9Dq'><pre id='uo9Dq'><center id='uo9Dq'></center></pre></bdo></b><th id='uo9Dq'></th></span></q></dt></tr></i><div id='uo9Dq'><tfoot id='uo9Dq'></tfoot><dl id='uo9Dq'><fieldset id='uo9Dq'></fieldset></dl></div>