我想在我的一名工人经过一定时间后收到一条消息。在发现所谓的死信交换后,我决定使用 Node 和 RabbitMQ。
该消息似乎已发送到 DeadExchange 中的队列,但在 WorkExchange 中的 WorkQueue 中经过一段时间后,消费者从未收到该消息。bindQueue 已关闭,或者死信不起作用?
我现在尝试了很多不同的值。有人可以指出我缺少什么吗?
var amqp = require('amqplib');
var url = 'amqp://dev.rabbitmq.com';
amqp.connect(url).then(function(conn) {
//Subscribe to the WorkQueue in WorkExchange to which the "delayed" messages get dead-letter'ed (is that a verb?) to.
return conn.createChannel().then(function(ch) {
return ch.assertExchange('WorkExchange', 'direct').then(function() {
return ch.assertQueue('WorkQueue', {
autoDelete: false,
durable: true
})
}).then(function() {
return ch.bindQueue('WorkQueue', 'WorkExchange', '');
}).then(function() {
console.log('Waiting for consume.');
return ch.consume('WorkQueue', function(msg) {
console.log('Received message.');
console.log(msg.content.toString());
ch.ack(msg);
});
});
})
}).then(function() {
//Now send a test message to DeadExchange to a random (unique) queue.
return amqp.connect(url).then(function(conn) {
return conn.createChannel();
}).then(function(ch) {
return ch.assertExchange('DeadExchange', 'direct').then(function() {
return ch.assertQueue('', {
arguments: {
'x-dead-letter-exchange': 'WorkExchange',
'x-message-ttl': 2000,
'x-expires': 10000
}
})
}).then(function(ok) {
console.log('Sending delayed message');
return ch.sendToQueue(ok.queue, new Buffer(':)'));
});
})
}).then(null, function(error) {
console.log('error\'ed')
console.log(error);
console.log(error.stack);
});
我正在使用 amqp.node ( https://github.com/squaremo/amqp.node ),它是 npm 中的 amqplib。虽然 node-amqp ( https://github.com/postwait/node-amqp ) 似乎更受欢迎,但它并没有实现完整的协议,并且在重新连接方面存在相当多的突出问题。
dev.rabbitmq.com 正在运行 RabbitMQ 3.1.3。