1

i tried to install kafka connect in command prompt .

i have a connector look like this

name=test-source-oracle-jdbc

connector.class=io.confluent.connect.jdbc.JdbcSourceConnector

tasks.max=1
connection.url=jdbc:oracle:thin:@172.26.70.84:1621/OPICSDEV

connection.user=KFK_USER

connection.password=kafka_user012345

mode=bulk

topic.prefix=opics-demo

query=select * from OPICS.cust where rownum < 5

poll.interval.ms=900000
OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Jr Dones
  • 11
  • 4

1 Answers1

0

If you want to read from multiple tables, you'll need to run multiple connectors at the same time.

Similarly, different topic prefixes could be provided as well within different Connector properties

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245