Re: Architecture for multiple consumers of a given message

2015-05-25 Thread Gaurav Agarwal
i had the same scenario , i creatd multiple consumers on the same topic with different group.id configured there for each consumer and then it started behaving as topic for me. On 5/25/15, Daniel Compton wrote: > Hi Warren > > If you're using the high level consumer, then you can just have multip

Re: Architecture for multiple consumers of a given message

2015-05-24 Thread Daniel Compton
Hi Warren If you're using the high level consumer, then you can just have multiple consumer groups (one for each purpose), and run 1 consumer thread per consumer group. On Mon, 25 May 2015 at 8:43 am Warren Henning wrote: > I'm working on a simple web application where I want the same message of

Architecture for multiple consumers of a given message

2015-05-24 Thread Warren Henning
I'm working on a simple web application where I want the same message of a given topic to be consumed by multiple separate consumers (one that writes to a database, another that writes to a search index like Solr/Elasticsearch). Right now as this is just a small personal project I only have one pa