You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
For an existing consumer group with stored offsets, resetting the offset to the latest is not working, it still reads from the stored offset.
To Reproduce
First, have to set up a consumer group (say test) and run for a few messages and commit those offsets. .kfk.Sub[client;topicName;(enlist 6h$1)!(enlist .kfk.OFFSET.STORED)];
Now restart the process and assign a specific partition and latest offset with same group test .kfk.Sub[client;topicName;(enlist 6h$1)!(enlist .kfk.OFFSET.END)];`
Expected behavior
It should only start reading if there are new messages in `topicName, however it starts reading from the last committed offset.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
SrikarSaggurthi
changed the title
consumer group manual assignment of offset not working
Consumer group reassignment of offset not working
Jul 27, 2020
Describe the bug
For an existing consumer group with stored offsets, resetting the offset to the latest is not working, it still reads from the stored offset.
To Reproduce
First, have to set up a consumer group (say
test) and run for a few messages and commit those offsets.
.kfk.Sub[client;topicName;(enlist 6h$1)!(enlist .kfk.OFFSET.STORED)];
Now restart the process and assign a specific partition and latest offset with same group
test
.kfk.Sub[client;
topicName;(enlist 6h$1)!(enlist .kfk.OFFSET.END)];`Expected behavior
It should only start reading if there are new messages in `topicName, however it starts reading from the last committed offset.
Desktop (please complete the following information):
Additional context
relevant config parmater
"auto.offset.reset:latest"
The text was updated successfully, but these errors were encountered: