On Mon, 24 Oct 2011 12:56:48 +0000 "Jain, Kokil" <ja...@bit-sys.com> wrote:
> Hi, > > Is it possible to use Kafka in a pub/sub mode where all consumers of > the topic receive the same message? > > Thanks. Yes it is, if each of your consumers are in a different consumer group, since each consumer group will get a single copy of a message. - pyr