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

前端 未结 8 2279
长发绾君心
长发绾君心 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 01:58

    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.

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

    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/

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

    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 rabbitmqctl command to check the status of the queues.

    I am assuming that you are running this on Linux. From a command line, running:

    rabbitmqctl list_queues
    

    will result in:

    Listing queues ...
    pings   0
    receptions      0
    shoveled        0
    test1   55199
    ...done.
    

    (well, it did in my case due to my specific queues)

    In your code, use this code to get output of rabbitmqctl:

    import subprocess
    
    proc = subprocess.Popen("/usr/sbin/rabbitmqctl list_queues", shell=True, stdout=subprocess.PIPE)
    stdout_value = proc.communicate()[0]
    print stdout_value
    

    Then, just come up with your own code to parse stdout_value for your own use.

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

    pyrabbit didn't work so well for me; However, the Management Plugin itself has its own command line script that you can download from your own admin GUI and use later on (for example, I downloaded mine from

    http://localhost:15672/cli/
    

    for local use)

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

    You can add plugin rabbitmq_management

    sudo /usr/lib/rabbitmq/bin/rabbitmq-plugins enable rabbitmq_management
    sudo service rabbitmq-server restart
    

    Then use rest-api

    import requests
    
    def rest_queue_list(user='guest', password='guest', host='localhost', port=15672, virtual_host=None):
        url = 'http://%s:%s/api/queues/%s' % (host, port, virtual_host or '')
        response = requests.get(url, auth=(user, password))
        queues = [q['name'] for q in response.json()]
        return queues
    

    I'm using requests library in this example, but it is not significantly.

    Also I found library that do it for us - pyrabbit

    from pyrabbit.api import Client
    cl = Client('localhost:15672', 'guest', 'guest')
    queues = [q['name'] for q in cl.get_queues()]
    
    0 讨论(0)
  • 2020-12-09 02:15

    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.

    0 讨论(0)
提交回复
热议问题