Open abhisheknalla opened 5 years ago
How do I enable multiple consumers?. I want to be able to allow multiple consumers to consume from the same topic at the same time.
Partitions allows the parallelism in kafka world, so make sure that you have multiple partitions for your topic, this enables you to have mutliple consumers reading off the same topic parallely.
How do I enable multiple consumers?. I want to be able to allow multiple consumers to consume from the same topic at the same time.