Kafka Connect when we have multiple queries

546 views Asked by At

How can we use Kafka Connect when there are multiple tables to be inserted?

I am trying to implement Kafka connect sink to insert to multiple Oracle table.

1

There are 1 answers

0
Robin Moffatt On BEST ANSWER

You can either define one JDBC Sink Connector per table, or a single JDBC Sink Connector with multiple topics specified - each topic will be written to a separate table. The table will take the topic name, which you can also map using the table.name.format option.