I have a kafka topic with 1 partition. if it had 100 messages in it the offset would be from 0.99.
According the kafka retention policy all of the messages will be wiped out after the specified period.
and i am sending 100 new messages to the topic once all have been wiped out(after retention period). Now, where would the new offset of the message start from? is it From 100 or from 0??
I am trying to understand whether the new offsets will be 100-199 or 0-99?