How can I list or discover queues on a RabbitMQ exchange using python?(如何使用 python 列出或发现 RabbitMQ 交换中的队列?)
问题描述
我需要一个 python 客户端,它可以在重新启动的 RabbitMQ 服务器交换上发现队列,然后启动一个客户端来恢复消费来自每个队列的消息.如何从一些 RabbitMQ 兼容的 python api/库中发现队列?
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?
推荐答案
据我所知,没有任何方法可以做到这一点.这与 Python 无关,但因为 AMQP 没有定义任何队列发现方法.
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.
在任何情况下,在 AMQP 中,声明队列的是客户端(消费者):发布者使用路由键将消息发布到交换,消费者确定这些路由键进入哪些队列.所以在没有消费者的情况下谈论队列是没有意义的.
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.
这篇关于如何使用 python 列出或发现 RabbitMQ 交换中的队列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 python 列出或发现 RabbitMQ 交换中的队列


- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- 沿轴计算直方图 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12