ltamber opened a new issue, #10050:
URL: https://github.com/apache/rocketmq/issues/10050
### Before Creating the Enhancement Request
- [x] I have confirmed that this should be classified as an enhancement
rather than a bug/feature.
### Summary
Support NACK (negative acknowledgment) without incrementing message
reconsume times. By adding a suspend flag, consumers can requeue messages for
retry without increasing the message's reconsumeTimes counter.
### Motivation
In RocketMQ's Pop consumption mode, any NACK operation increments the
message's reconsumeTimes counter. When the retry count reaches the maximum
value, the message enters the Dead Letter Queue (DLQ). However, in certain
business scenarios, consumers may need to
temporarily delay processing a message, but this delay should not be
considered a true retry failure.
### Describe the Solution You'd Like
Add a suspend boolean flag to the message processing pipeline. When this
flag is true, message retry does not increment reconsumeTimes.
### Describe Alternatives You've Considered
No
### Additional Context
_No response_
--
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]