Hi, I am facing the following issue:
When I start my consumer I get that the offset for one of the partitions is going to be reset to the last committed offset 14:55:28.788 [pool-1-thread-1] DEBUG o.a.k.c.consumer.internals.Fetcher - Resetting offset for partition t1-4 to the committed offset 205 Which is correct, since 205 was the last message that I process and manually commit (with commitSync()) before closing the consumer the last time. The problem is that now I start the consumer and the first message that it brings is the one in offset 205 instead of the next one, so I reprocess the message, is there a way to avoid this situation? I thought that committed offsets were never returned). Thanks, Franco
