How can I list or discover queues on a RabbitMQ exchange using python?

前端 未结 8 2280
长发绾君心
长发绾君心 2020-12-09 01:29

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. Ho

相关标签:
8条回答
  • 2020-12-09 02:19

    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.

    0 讨论(0)
  • 2020-12-09 02:22

    I found this works for me, /els being my demo vhost name..

    rabbitmqctl list_queues --vhost /els
    
    0 讨论(0)
提交回复
热议问题