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

Regarding an issue with message distributions in kafka.

2022-11-23 Thread Puneet Dubey
Hi. In our app we have integrated kafka to publish and subscribe to the events. Based on the documentation and distribution policy we designed our application where we are facing some contradictory behavior. As per the documentation at a given time there can be a maximum of one consumer per partit