Before Creating the Enhancement Request
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