-
Bug
-
Resolution: Done
-
Major
-
1.5.2.Final
-
None
-
False
-
False
-
Undefined
-
Using configuration:
io.debezium.config.Configuration.create() .with("name", "chat-sgp") .with("connector.class", "io.debezium.connector.oracle.OracleConnector") .with("offset.storage", "org.apache.kafka.connect.storage.FileOffsetBackingStore") .with("offset.storage.file.filename", offsetStorageTempFile.getAbsolutePath()) .with("offset.flush.interval.ms", "60000") .with("database.url", customerDburl) .with("database.user", customerDbUsername) .with("database.password", customerDbPassword) .with("database.dbname", customerDbName) .with("database.include.list", customerDbName) .with("include.schema.changes", "false") .with("database.allowPublicKeyRetrieval", "true") .with("database.server.id", "10181") .with("database.server.name", "chat-sgp.testing.com") //.with("schema.include.list", "DATAHOUSEAPI") .with("database.history", "io.debezium.relational.history.FileDatabaseHistory") .with("database.history.file.filename", dbHistoryTempFile.getAbsolutePath()) //.with("snapshot.mode", "schema_only") .with("table.include.list", "DATAHOUSEAPI.COMPONENT_CONTENT") .build();
I used schema.include.list, i can trace if there is any changes in database.
I tried to use table.include.list and colume.include.list but i receive a "table is null" error
I am using Oracle 12.1.0.2.0