I am new to kafka and trying to understand if there is a way to read messages from last consumed offset, but not from beginning.
I am writing an example case, so tha
You should set the auto.offset.reset parameter in your consumer config on largest, so it will read all messages after last committed offset.
auto.offset.reset
largest