Re: Fetching rows from DB and insert it into multiple topics

2021-05-07 Thread Andrew Grant
Hi, I’d look into Kafka streams https://kafka.apache.org/documentation/streams/. You could use your connector to dump all records into a single topic and then write a streams application that can use arbitrary logic to route records to different downstream topics. A nice benefit, in my opinion,

Fetching rows from DB and insert it into multiple topics

2021-05-07 Thread Yaniv Shuker
Hi, Can you please advise on the following: current behaviour 1)I have records in DB 2)Using JDBC connector I am taking out the records from DB and sends them into a specific topic expected behavior take out the records from DB and push them to a different topics based on criteria from the reco