Re: running kafka streams inside kafka connect

2018-10-30 Thread RK Sing
to import the data via connect into a "staging > topic" and then read this "staging topic" with a Kafka Streams > application and apply the transformations etc to write the data into the > actual target topics. > > > -Matthias > > On 10/25/18 2:34 PM, RK Sing wr

Re: running kafka streams inside kafka connect

2018-10-25 Thread RK Sing
Streams > workers talk to each other through Kafka topics. > > Ryanne > > On Thu, Oct 25, 2018 at 3:34 PM RK Sing wrote: > > > We have a requirement to do Single row transformations, basic joins, > > deduping and routing from the source to the destination Kafka topics.

running kafka streams inside kafka connect

2018-10-25 Thread RK Sing
We have a requirement to do Single row transformations, basic joins, deduping and routing from the source to the destination Kafka topics. We want to use Kafka-connect as the platform which is running Kafka stream inside. Has anyone used Kafkastreams inside Kafka connect ?? Is this pattern ok