Hi Binita, The consumer group (group.id) is a mechanism for sharing the load of consuming a high-volume topic between multiple consumers. If you don't set a group ID, each consumer consumes all the partitions of a topic. If you set several consumers to the same group ID, the partitions of the topic you're consuming will be shared amongst the consumers in that group, so that each message is delivered to only one of the consumers in the group.
You can set the group ID to be whatever you like. Hope that helps, Martin On 25 Feb 2014, at 06:27, Binita Bharati <binita.bhar...@gmail.com> wrote: > Hi all, > > I am referring to this e.g: > https://cwiki.apache.org/confluence/display/KAFKA/Consumer+Group+Example. > > What is the consumer group ID being referred here ? > > Thanks > Binita