Re: Query regarding implementation of KStreams with Hbase

2023-05-12 Thread Matthias J. Sax
Kafka Streams is designed to read and write from a broker cluster. It's not designed to write data to different system like HBase. If you want to get data from Kafka to HBase, you should use Kafka Connect. Of course, it's possible (but not recommended) to implement your own `Processor` and do

Query regarding implementation of KStreams with Hbase

2023-05-12 Thread Rohit M
Hi team, There is lot in internet where Kstreams read data from topic , perform some transformation and write it back to a topic. But I wonder if write to hbase table is possible with KStream?. And what I mean by this is that we should read data from topic using KStream , perform some operations