[rabbitmq-discuss] Behaviour of Federated Queues

Josh West jsw at one.com
Mon Jan 27 15:59:42 GMT 2014


This is confirmed.  If you create and immediately delete a queue, with 
federation configured, the upstream will also create the queue but not 
delete the queue.

This sounds like it may be a bug with federated queues.

Josh West
One.com - http://www.one.com

On 01/24/2014 10:26 AM, Josh West wrote:
> It may be more than an issue just with auto delete.  It looks like 
> deletions themselves may not be propagated at all.  For example:
>
>
> #!/usr/bin/python
>
> import pika
>
> credentials = pika.PlainCredentials("guest", "guest")
> conn_params = pika.ConnectionParameters("localhost", credentials = 
> credentials)
> connection  = pika.BlockingConnection(conn_params)
> channel     = connection.channel()
>
> for i in range(1,100):
>         queue = "broker1.queue.%i" % (i)
>         channel.queue_declare(queue=queue, auto_delete=True)
>         channel.queue_delete(queue=queue)
>
> channel.close()
> connection.close()
>
>
> While the queues are deleted from broker1, they still remain on 
> broker2 and broker3 :-(
>
> Josh West
> One.com - http://www.one.com
>
> _______________________________________________
> rabbitmq-discuss mailing list
> rabbitmq-discuss at lists.rabbitmq.com
> https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss



More information about the rabbitmq-discuss mailing list