Re: Specfic offset processing in Kafka Streams

2017-11-22 Thread Matthias J. Sax
I don't think that a "from-to" pattern would a common scenario -- Kafka is about stream processing, not batch processing. I guess you can to a hand crafted solution though. 1) use bin/kafka-consumer-groups.sh to seek to the corresponding start offset for the group.id/application.id of your Stream

Specfic offset processing in Kafka Streams

2017-11-22 Thread Sameer Kumar
If I want to reprocess only a section(i.e. from-to offsets) of the topic through Kafka Streams, what do you think could be way to achieve it. I want the data to be stored in same state stores, this I think would be a common scenario in a typical production environment. -Sameer.