I am trying to make oracle-kafka connection with sqoop. There is a sqoop-kafka connector in this website, but documentation here is https://sqoop.apache.org/docs/1.99.7/user/connectors/Connector-Kafka.html but there is not clean explanation in this documantation and also anywhere. And I am stuck on this problem. I know there are connectors for oracle and kafka but I am trying in this way.
sqoop import --connect "jdbc:oracle:thin:@IP:1521/dbname --username user --password pass --table result --topic testing
ERROR tool.BaseSqoopTool: Error parsing arguments for import:
ERROR tool.BaseSqoopTool: Unrecognized argument: --topic
ERROR tool.BaseSqoopTool: Unrecognized argument: test
and also I tried this and I also get error
sqoop import --connect "jdbc:oracle:thin:@IP:1521/dbname --username user --password pass --table result --broker-list IP --topic testing
ERROR tool.BaseSqoopTool: Error parsing arguments for import:
ERROR tool.BaseSqoopTool: Unrecognized argument: --broker-list
ERROR tool.BaseSqoopTool: Unrecognized argument: testing
sqoop import
for Sqoop2 sqoop.apache.org/docs/1.99.7/user/Sqoop5MinutesDemo.html – OneCricketeersqoop2-shell
or the REST API linked in the sidebar – OneCricketeer