Why kafka consumer is not working with existing groupid?
I’m working with kafka consumers using golang. Previously there is a consumer codebase which is running on server with consumer group consumer-1
and in that consumer there is so many data that it is reading working fine. But now I’m making and another consumer with the same group id with below configuration but it’s not receiving the messages.
Avoid consuming same message again from Kafka topic in Golang consumers
First time using Kafka and learned that there is no concept of auto deleting consumed messages from a topic which is fair so I am not asking why it is designed such way because I read and understood it.