Dans cette vidéo nous allons voir l'intérêt d'avoir un groupe de consumers et l'utilité des indexes (offsets) dans un topic kafka.
Important à savoir :
Apache Kafka - Consumer Group
Consumers can join a group by using the same group.id.
The maximum parallelism of a group is that the number of consumers in the group ← no of partitions.
Kafka assigns the partitions of a topic to the consumer in a group, so that each partition is consumed by exactly one consumer in the group.