This week's book giveaway is in the Open Source Projects forum. We're giving away four copies of Eclipse Collections Categorically: Level up your programming game and have Donald Raab on-line! See this thread for details.
In Kafka, one can have more broker and that can form a Kafka cluster.Does having single broker for Kafka mean when one consumer is consuming others have to wait ? Thanks
One broker can have one topic. Multiple consumers can consume the same topic at the same time.
One topic can have multiple partitions. So, for example, if we have 3 partitions and 2 consumers. Consumer 1 can read partition 0 and 1. Consumer 2 can read partition 2.
Both consumers can read the different partitions of the same topic at the same time.