-
Bug
-
Resolution: Obsolete
-
Major
-
None
-
0.10.0.Final
-
None
-
Oracle 11g 11.2.0.4,
{ "connector.class": "io.debezium.connector.oracle.OracleConnector", "tasks.max": "1", "database.server.name": "oracledb", "database.user": "c##xstrm", "database.password": "xs", "database.hostname": "localhost", "database.port": "1521", "database.dbname": "orcl", "database.out.server.name": "dbzxout", "database.history.kafka.bootstrap.servers": "xxxx.xxxx.xxxx.xxxx:9392", "database.history.kafka.topic": "schema-changes.inventory", "table.whitelist": "orcl.debezium.confluent_test", "database.tablename.case.insensitive": "true", "database.oracle.version": "11" }
I refer to this github author to setup the oracle, Here is the link below:
LINK,
{
"name": "inventory-connector",
"config":}
I able to use this config to capture the data and push them to kafka.Oracle 11g 11.2.0.4, I refer to this github author to setup the oracle, Here is the link below: LINK , { "name": "inventory-connector", "config": { "connector.class": "io.debezium.connector.oracle.OracleConnector", "tasks.max": "1", "database.server.name": "oracledb", "database.user": "c##xstrm", "database.password": "xs", "database.hostname": "localhost", "database.port": "1521", "database.dbname": "orcl", "database.out.server.name": "dbzxout", "database.history.kafka.bootstrap.servers": "xxxx.xxxx.xxxx.xxxx:9392", "database.history.kafka.topic": "schema-changes.inventory", "table.whitelist": "orcl.debezium.confluent_test", "database.tablename.case.insensitive": "true", "database.oracle.version": "11" } } I able to use this config to capture the data and push them to kafka.
I start up kafka-connect and post debezium config, it works well.
Then I try to insert some data into oracle ,it works well and I alter the data which is basic type(NON CLOB/BLOB) , it works well too.
But when I try to alter the data which is type CLOB, it comes up error ORA-26824: user-defined XStream callback error.
Is the config or env anything wrong or xstream is not supported the CLOB/BLOB/[specific type]?