<p>Hi Lowell,</p>
<p>The second tutorial does not use a topic exchange, but even with a topic exchange the situation would be the same. The key point here is that your workers are reading messages from the same queue. The exchange, topic or anything else, as soon as it has delivered a message to a queue is out of the game. The queue receives the message because it&#39;s bound to the exchange. Then you have two or more workers reading from the same queue, thereby receiving each one message in a round-robin fashion.</p>

<div class="gmail_quote">On Jun 30, 2011 11:29 PM,  &lt;<a href="mailto:Lowell.Boggs@emc.com" target="_blank">Lowell.Boggs@emc.com</a>&gt; wrote:<br type="attribution">&gt; I am confused by my experiments with rabbitmq-c.<br>
&gt; <br>&gt; I was trying to follow the task worker tutorial:<br>
&gt; <br>&gt;     <a href="http://www.rabbitmq.com/tutorials/tutorial-two-python.html" target="_blank">http://www.rabbitmq.com/tutorials/tutorial-two-python.html</a><br>&gt; <br>&gt; Of course, I&#39;m using C interfaces not the python or Java interfaces.<br>

&gt; <br>&gt; Being a newbie it is probable that I&#39;m doing something wrong, but:<br>&gt; <br>&gt; The tutorial implies to me that if I have:<br>&gt; <br>&gt;  *   one exchange+topic<br>&gt;  *   two worker executables that read from it<br>

&gt; <br>&gt;  then<br>&gt; <br>&gt;  *   due to round-robin processing, some messages will go to one executable<br>&gt;  *   other messages will go to the other<br>&gt; <br>&gt; However, I am seeing that both exectuables receive all the messages -- which is not at all what I want.<br>

&gt; <br>&gt; Is this supposed to work with the default version of rabbitmq-c?<br>&gt; <br>&gt; Immediately upon logging into the channel, in the consumers, I am setting<br>&gt; <br>&gt;    basic_qos(conn, 1, 0, 1, 0);<br>

&gt; <br>&gt; Also, I am calling basic_consume like this:<br>&gt; <br>&gt;        amqp_basic_consume(conn,<br>&gt;                          1,<br>&gt;                          amqp_cstring_bytes(queuename),<br>&gt;                          amqp_empty_bytes,<br>

&gt;                          0,<br>&gt;                          0,<br>&gt;                          0,<br>&gt;                          amqp_empty_table<br>&gt;                         );<br>&gt; <br>&gt; <br>&gt; The exchange that i am using is amq.direct.  I have tried an empty string queue name as well as &quot;hello&quot;.<br>

&gt; <br>&gt; I am calling basic_ack() as soon as I receive the messages in both worker executables -- well, after I log their reception.<br>&gt; <br>&gt; Any ideas?<br>&gt; <br>&gt; Thanks,<br>&gt;   Lowell<br>&gt; <br>
&gt; <br>
&gt; <br>&gt; <br></div>