Ermano Winata
unread,Jul 28, 2025, 11:53:49 AMJul 28Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to debezium
Database Specs:
Oracle v11.2.0.2 on a Physical Standby Read only with apply. On a 2 node RAC
Never got streaming to work. It will keep polling with no data to stream to the topic even though the table is very actively adding rows (very frequent and high volume table inserts).
Schema topic gets created and DDL is parsed okay so that seems to eliminate the issue for wrong configs for:
- table.include.list
- schema.include.list
- database connection configs
Also configured to use archive only. Querying the archive log does show that the log at the recorded SCN for the offset is available. Not quite sure where the issue is here since the connector is still running after 4+ hours with no streaming data sent towards the topic.
Here is the config:
```
{
"name": "oracle-source-archive-1",
"connector.class": "io.debezium.connector.oracle.OracleConnector",
"tasks.max": "1",
"schema.history.internal.consumer.sasl.jaas.config": "org.apache.kafka.common.security.scram.ScramLoginModule required username=\"**\" password=\"**\";",
"schema.include.list": "**",
"internal.log.mining.read.only": "true",
"producer.override.security.protocol": "SASL_PLAINTEXT",
"log.mining.strategy": "online_catalog",
"schema.history.internal.store.only.captured.tables.ddl": "true",
"topic.prefix": "oracle.source.archive.1",
"schema.history.internal.kafka.topic": "_schemahistory.oracle.archive.1",
"schema.history.internal.producer.security.protocol": "SASL_PLAINTEXT",
"log.mining.archive.log.only.mode": "true",
"schema.history.internal.producer.sasl.mechanism": "SCRAM-SHA-256",
"database.user": "**",
"database.dbname": "**",
"database.connection.adapter": "logminer",
"schema.history.internal.kafka.bootstrap.servers": "kafka-controller-0.kafka-controller-headless.kafka.svc.cluster.local:9092,kafka-controller-1.kafka-controller-headless.kafka.svc.cluster.local:9092,kafka-controller-2.kafka-controller-headless.kafka.svc.cluster.local:9092",
"database.port": "1521",
"database.hostname": "**",
"database.password": "**",
"name": "oracle-source-archive-1",
"schema.history.internal.producer.sasl.jaas.config": "org.apache.kafka.common.security.scram.ScramLoginModule required username=\"**\" password=\"**\";",
"schema.history.internal.consumer.sasl.mechanism": "SCRAM-SHA-256",
"producer.override.sasl.jaas.config": "org.apache.kafka.common.security.scram.ScramLoginModule required username=\"**\" password=\"**\";",
"table.include.list": "**.**",
"producer.override.sasl.mechanism": "SCRAM-SHA-256",
"snapshot.mode": "no_data",
"schema.history.internal.consumer.security.protocol": "SASL_PLAINTEXT"
}
```