<div class="gmail_quote">On Thu, Jul 7, 2011 at 6:34 AM, Rob Harrop <span dir="ltr">&lt;<a href="mailto:rob@rabbitmq.com">rob@rabbitmq.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div bgcolor="#FFFFFF"><div><div class="im"><div><br></div></div>Well, it&#39;s quite subtle. If the message was routed when the queue was up, a back is sent if the queue goes down before the message can be written to disk.</div>
<div><br></div><div>If the binding has been removed due to queue down then no nack will be sent.</div><div><br></div><div>Are you trying to ensure that a given message reaches a known set of queues?</div></div></blockquote>
<div><br></div><div>Yes and no. �As I said, for any one message there may or may not be binding matching the message to the durable queue.</div><div><br></div><div>The problem is as follows: �We have a system that generates events. �We have a set of users that may be interested in some subset of those events. �What events the users are interested in changes dynamically. �We have an agent subscribed to a durable queue that will receive the events of interest and process them on behalf of the users. �The bindings on the topic exchange that match the events to the queue change dynamically with the user&#39;s interests. �I need to know that if there is a binding for the event, that it was successfully persisted to the queue.</div>
<div><br></div><div>We want to ensure that, if the queue is reachable and there is a binding that matches the message to the queue, or the queue is reachable and there is no binding that matches the message to the queue, (i.e. that the cluster is working properly) that the producer will get an ack. �Publisher confirm gives us this.</div>
<div><br></div><div>We want to ensure that, if the queue is not reachable and there is a binding that matches the message to the queue, or the queue is not reachable and there is no binding that matches the message to the queue, (i.e. that the cluster has lost the node to which the queue is attached or the queue was deleted), that the producer will get a nack. �Publisher confirm fails here.</div>
<div><br></div><div>Publisher confirm fails the second requirement because if the cluster is partitioned, it will forget the bindings to the queue on the other node. �It will response with an ack, rather than a nack.</div>
<div><br></div><div>What is needed is a way to define a binding as durable, so that it won&#39;t be forgotten if the queue is references goes away because of a cluster partition or the queue is deleted. �It gives the system a hint that the queue in question should exist, but does not. �Alternatively, the system should not forget a durable queue just because the node it was attached goes away. �A durable queue should only be forgotten if it is actively deleted.</div>
<div><br></div><div>HA queue alleviate the problem, as the queue will exist in more nodes and more nodes would have to disappear for it to be forgotten, but it does not solve the problem, unless the queue is configured to exist on all nodes.</div>
<div><br></div><div>Savvy?</div><div><br></div><div>Elias Levy</div></div>