Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Node JS 和 RabbitMQ 的 AMQP 模块,有没有办法知道队列中有多少订阅者?
我们在多个地区的默认交易所有多个队列。当一个区域关闭时,我们不会将消息路由到该队列,而是路由到正在主动侦听的下一个最佳 AMQP 队列(区域)。
有没有办法计算队列中的订阅者数量?
我们设置了心跳,因此服务器应该能够准确跟踪。
谢谢!
我最终弄清楚了这块金子:
var conn = amqp.createConnection({ url: process.env.AMQP, heartbeat: 60 }); conn.queue('queue-name').on('queueDeclareOk', function(args) { console.log('Total Consumers: ' + args.consumerCount); }
完美运行:)