RockteMQ-AI commented on issue #682:
URL:
https://github.com/apache/rocketmq-spring/issues/682#issuecomment-5223767312
**Issue Evaluation**
Category: `question` | Status: **Answered**
`ConsumeConcurrentlyStatus.RECONSUME_LATER` signals the broker to redeliver
the message after a delay. The delay increases with each retry (exponential
backoff): 10s, 30s, 1m, 2m, 3m, ... up to 2h (18 levels total).
When you return `RECONSUME_LATER`:
1. The message is sent to the retry topic (`%RETRY%{consumerGroup}`)
2. After the delay, it's redelivered to the consumer
3. After 18 retries, it goes to the Dead Letter Queue (DLQ)
Return `CONSUME_SUCCESS` when processing succeeds. Return `RECONSUME_LATER`
when you want the message retried (e.g., temporary dependency failure).
---
*Automated evaluation by RockteMQ-AI*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]