Current setup steps:
Untar the downloaded kafka installation
Under /config/ create a “connectors” folder. This is where connector jar is currently placed
Download the Debezium connector for Oracle from here: https://debezium.io/releases/1.6/
Config changes to Kafka:
Under config/connect-standalone.properties, I’ve changed plugin path to: plugin.path=/home/dba/kafka_2.12-2.8.1/config/connectors (connectors directory added in previous step - todo - make this more generic)
Under config/zookeeper.properties I’ve changed the dataDir to dataDir=/home/dba/kafka_2.12-2.8.1/zookeeper-logs - todo - change config to get other logging/files out of the tmp directory
Under /config/ created a new properties file called debezium-oracle-connector. Content of this file is contained in the addendum.
Run following commands from the kafka base directory to get everything up and running:
Start Zookeeper: bin/zookeeper-server-start.sh config/zookeeper.properties
Start Kafka: bin/kafka-server-start.sh config/server.properties
Start Connector: bin/connect-standalone.sh config/connect-standalone.properties config/debezium-oracle-connector.properties
To view all of the kafka topics, run the following from kafka directory: bin/kafka-topics.sh --list --bootstrap-server localhost:9092
To consume all message from the topic, run the following from kafka directory: bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --from-beginning --property print.key=true --topic debezium.LOOKUP.BRANCH_TEST
--
You received this message because you are subscribed to a topic in the Google Groups "debezium" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/debezium/vjCYhCUMMK0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to debezium+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/debezium/bbeaacc7-dd3f-4614-a8a4-2d96aa5d2cb5n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/debezium/2738c79e-1907-4a8a-832e-9c2e31609accn%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/debezium/5438e059-1e13-4dc6-94db-b5b3b7b366can%40googlegroups.com.