[rabbitmq-discuss] Cluster Pathology

Jason J. W. Williams jasonjwwilliams at gmail.com
Wed Feb 11 19:11:26 GMT 2009


>
>
> - The reason why the consumer does not get notified about the removal
> of a queue (for whatever reason it may have disappeared) is because
> that this behaviour is not specified in the protocol. It is possible
> that this was an oversight, you would have to seek reference from your
> local AMQP representative. In practical terms, this notion has been
> addressed to an extent in the 0-10 version of the protocol, but YMMV.
> Going forwards, this is exactly the kind of thing that needs to get
> nailed down in the 1.0 version of the protocol;

Well that explains why it doesn't happen. :-)

>
> - Quorum decisions are difficult at the best of times, hence why we
> would need to think long and hard about how to do transparent
> replication;

While replication would be nice, I don't really mind having to replay
the messages later.

>
> - Replay logic is potentially equally as tricky, once you have
> considered all of the corner cases;

I can see where it would be tricky, particularly for applications that
resubmitted messages. Personally, we'd like to see it as either a
start-up option (--enable-auto-replay) or a separate utility that can
be pointed at a persister log  with a particular queue name.

>
> I can tell you right now that Rabbit does not currently cater for
> these circumstances OOTB, so if these are hard requirements for you,
> you may want to look somewhere else.

Unfortunately, there's no where else to go. :-) We wrote our code to
be fairly failure tolerant, and have upgraded the producers to now
also create exchanges/queues/bindings so nothing gets blackholed. As a
result, we'll be able to work around it for this project by deploying
two non-clustered Rabbit instances. It's workable just not optimal.
We'll have to be careful to upgrade the producers queue creation code
any time we add new queues and consumer types. Allowing producers to
be dumb about consumers is really our design target.

>
> If your application could subscribe to AMQP level events OTOH, there
> may be a simple way to solve this issue for you in a protocol
> compliant fashion - for example, we do have patches that allow clients
> to subscribe to presence events. If the above is a not a KO critiereon
> for you, we could look into this option.

I'll need to research AMQP level events, but yes we can write it in if
py-amqplib can support it.That would be fine.
We don't mind recreating the queues, but consumers need to know
they're orphaned in edge cases.

Thank you so much for your help! I do really appreciate it and do not
mean to be a pain.

-J




More information about the rabbitmq-discuss mailing list