-
Is there anything I should be aware off while trying to "rewind" a consumer group committed offset? E.g. commit(2) then commit(1). I can't for the life of me get this to work with librdkafka. The "rewind" commit seems to get ignored. The relevant log lines after calling
The error in the client is |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
librdkafka will not allow you to commit an older offset than what is already committed, unless you explicitly call commit() with offsets specified. |
Beta Was this translation helpful? Give feedback.
librdkafka will not allow you to commit an older offset than what is already committed, unless you explicitly call commit() with offsets specified.