Let's imagine a stream of messages in a kafka partition.
1, 2, 3, 4, 5
Is there a way for a consumer to commit one message(let's say 2), so that if that particular consumer started reading messages from the beginning all over again, it would only consume uncommitted messages?
1, 3, 4, 5