Re: Kafka as K/V store

2018-05-09 Thread Martin Gainty
lues()); you can try above statement Martin __ From: Sudhir Babu Pothineni Sent: Wednesday, May 9, 2018 10:46 AM To: users@kafka.apache.org Subject: Kafka as K/V store We would like to use Kafka as a key/value store. We need put, get and subscr

Re: Kafka as K/V store

2018-05-09 Thread Sudhir Babu Pothineni
Thanks Matthias. > On May 9, 2018, at 10:57 AM, Matthias J. Sax wrote: > > You might want to look into Kafka Streams. In particular KTable and > Interactive Queries (IQ). > > A `put` would be a write to the table source topic, while a `get` can be > implemented via IQ. > > For subscribe to par

Re: Kafka as K/V store

2018-05-09 Thread Matthias J. Sax
You might want to look into Kafka Streams. In particular KTable and Interactive Queries (IQ). A `put` would be a write to the table source topic, while a `get` can be implemented via IQ. For subscribe to particular key, you would consume the whole source topic and filter for the key you are inter

Kafka as K/V store

2018-05-09 Thread Sudhir Babu Pothineni
We would like to use Kafka as a key/value store. We need put, get and subscribe a particular “key”. Any pointers how to do this? Thanks Sudhir