I need to have a python client that can discover queues on a restarted RabbitMQ server exchange, and then start up a clients to resume consuming messages from each queue. How can I discover queues from some RabbitMQ compatible python api/library?
|
As far as I know, there isn't any way of doing this. That's nothing to do with Python, but because AMQP doesn't define any method of queue discovery. In any case, in AMQP it's clients (consumers) that declare queues: publishers publish messages to an exchange with a routing key, and consumers determine which queues those routing keys go to. So it does not make sense to talk about queues in the absence of consumers. |
||||
|
|
|
There does not seem to be a direct AMQP-way to manage the server but there is a way you can do it from Python. I would recommend using a subprocess module combined with the I am assuming that you are running this on Linux. From a command line, running:
will result in:
(well, it did in my case due to my specific queues) In your code, use this code to get output of
Then, just come up with your own code to parse |
||||
|
|
|
Management features are due in a future version of AMQP. So for now you will have to wait till for a new version that will come with that functionality. |
|||
|
|
|
Since I am a RabbitMQ beginner, take this with a grain of salt, but there's an interesting Management Plugin, which exposes an HTTP interface to "From here you can manage exchanges, queues, bindings, virtual hosts, users and permissions. Hopefully the UI is fairly self-explanatory." http://www.rabbitmq.com/blog/2010/09/07/management-plugin-preview-release/ |
|||
|
|
|
I use https://github.com/bkjones/pyrabbit. It's talks directly to RabbitMQ's mgmt plugin's API interface, and is very handy for interrogating RabbitMQ. |
|||
|
|