Re: Regarding an issue with message distributions in kafka.

2022-11-23 Thread John Roesler
Hi Puneet, Thanks for the question. It sounds like either the three consumers have different group.id configurations or they are using “assign” instead of “subscribe”. You are correct, if the consumers are all in the same consumer group and subscribed to the same topic, Kafka will only assign

Re: Regarding an issue with message distributions in kafka.

2022-11-23 Thread Philip Nee
Hello Puneet, Why do you need multiple consumers from the same group consuming from the same partition? I am trying to think of a compiling reason for such a use case... It makes more sense to me to have a thread pool to process the records fetched from a single consumer. This is a great article