-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Milestone
Description
FEATURE REQUEST
- Please describe the feature you are requesting.
Commit consume offset with specified MessageQueue
- Provide any additional detail on your proposed use case for this feature.
when we use DefaultLitePullConsumer, we commit consume offset to broker, but there is only one commit api : commitSync, it will commit all MessageQueue you subscribe/assign. However, in streams scene, we need commit offset of specified MQ.
add commit api like:
commitSync(Map<MessageQueue, consumeOffset>)
- Indicate the importance of this issue to you (blocker, must-have, should-have, nice-to-have). Are you currently using any workarounds to address this issue?
must-have
RongtongJin and XiaoyiPeng