-
Hello, Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@otherhy - no, parallel consumer does not support manual commit right now. |
Beta Was this translation helpful? Give feedback.
-
I am referring to additional parallelism as compared to vanilla Kafka Consumer - exactly as you said - in KEY and UNORDERED modes. In this case - having dedicated Kafka Consumer per partition would be more straightforward to implement. |
Beta Was this translation helpful? Give feedback.
@otherhy - no, parallel consumer does not support manual commit right now.
There is an option to request a commit - through
requestCommitAsap()
method to trigger it sooner.Given that Parallel Consumer is processing multiple messages in parallel - i am not sure how manual commit could be used with it.
Is manual commit actually, really required? I struggle to imagine a scenario where manual commit is warranted / has advantage over auto commit.