srigumm / dotnetcore-kafka-integration

Building realtime streaming applications using .NET Core and KAFKA
https://medium.com/@srigumm/building-realtime-streaming-applications-using-net-core-and-kafka-ad45ed081b31
69 stars 55 forks source link

Multiple Consumers #1

Open abhisheknalla opened 5 years ago

abhisheknalla commented 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.

srigumm commented 5 years ago

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.