If message was not acknowledged and application fails, it will be redelivered automatically and redelivered
property on envelope will be set to true
(unless you consume them with no-ack = true
flag).
UPD:
You have to nack
message with redelivery flag in your catch block
try {
//Do some business logic
} catch (Exception $ex) {
//Log exception
return $queue->nack($msg->getDeliveryTag(), AMQP_REQUEUE);
}
Beware infinitely nacked messages while redelivery count doesn't implemented in RabbitMQ and in AMQP protocol at all.
If you doesn't want to mess with such messages and simply want to add some delay you may want to add some sleep()
or usleep()
before nack
method call, but it is not a good idea at all.
There are multiple techniques to deal with cycle redeliver problem:
1. Rely on Dead Letter Exchanges
- pros: reliable, standard, clear
- cons: require additional logic
2. Use per message or per queue TTL
- pros: easy to implement, also standard, clear
- cons: with long queues you may loose some message
Examples (note, that for queue ttl we pass only number and for message ttl - anything that will be numeric string):
2.1 Per message ttl:
$queue = new AMQPQueue($channel);
$queue->setName('my-queue');
$queue->declareQueue();
$queue->bind('my-exchange');
$exchange->publish(
'message at ' . microtime(true),
null,
AMQP_NOPARAM,
array(
'expiration' => '1000'
)
);
2.2. Per queue ttl:
$queue = new AMQPQueue($channel);
$queue->setName('my-queue');
$queue->setArgument('x-message-ttl', 1000);
$queue->declareQueue();
$queue->bind('my-exchange');
$exchange->publish('message at ' . microtime(true));
3. Hold redelivers count or left redelivers number (aka hop limit or ttl in IP stack) in message body or headers
- pros: give you extra control on messages lifetime on application level
- cons: significant overhead while you have to modify message and publish it again, application specific, not clear
Code:
$queue = new AMQPQueue($channel);
$queue->setName('my-queue');
$queue->declareQueue();
$queue->bind('my-exchange');
$exchange->publish(
'message at ' . microtime(true),
null,
AMQP_NOPARAM,
array(
'headers' => array(
'ttl' => 100
)
)
);
$queue->consume(
function (AMQPEnvelope $msg, AMQPQueue $queue) use ($exchange) {
$headers = $msg->getHeaders();
echo $msg->isRedelivery() ? 'redelivered' : 'origin', ' ';
echo $msg->getDeliveryTag(), ' ';
echo isset($headers['ttl']) ? $headers['ttl'] : 'no ttl' , ' ';
echo $msg->getBody(), PHP_EOL;
try {
//Do some business logic
throw new Exception('business logic failed');
} catch (Exception $ex) {
//Log exception
if (isset($headers['ttl'])) {
// with ttl logic
if ($headers['ttl'] > 0) {
$headers['ttl']--;
$exchange->publish($msg->getBody(), $msg->getRoutingKey(), AMQP_NOPARAM, array('headers' => $headers));
}
return $queue->ack($msg->getDeliveryTag());
} else {
// without ttl logic
return $queue->nack($msg->getDeliveryTag(), AMQP_REQUEUE); // or drop it without requeue
}
}
return $queue->ack($msg->getDeliveryTag());
}
);
There are may be some other ways to better control message redelivers flow.
Conclusion: there are no silver bullet solution. You have to decide what solution fit your need the best or find out something other, but don't forget to share it here ;)