we are using kafka connect debezium oracle plugin to capture source table changes .
below are the configurations.
{
"connector.class": "io.debezium.connector.oracle.OracleConnector",
"database.dbname": "xxx",
"database.hostname": "xx.xx.xx.xx",
"database.password": "*******",
"database.port": "1521",
"database.user": "xxxx",
"log.mining.batch.size.default": "40000",
"log.mining.batch.size.max": "200000",
"log.mining.batch.size.min": "5000",
"log.mining.continuous.mine": "true",
"log.mining.query.filter.mode": "in",
"
log.mining.sleep.time.default.ms": "500",
"
log.mining.sleep.time.increment.ms": "500",
"
log.mining.sleep.time.max.ms": "1000",
"
log.mining.sleep.time.min.ms": "0",
"log.mining.strategy": "online_catalog",
"log.mining.username.include.list": "xxxx",
"message.key.columns": "xxxxxxxxxx",
"name": "14debezium_prod_used_source10",
"schema.history.internal.kafka.bootstrap.servers": "
192.168.1.8:9092,
192.168.1.9:9092,
192.168.1.9 :9092",
"schema.history.internal.kafka.topic": "14debezium-schema-changes2",
"schema.history.internal.store.only.captured.databases.ddl": "true",
"schema.history.internal.store.only.captured.tables.ddl": "true",
"schema.include.list": "xxxxx",
"snapshot.max.threads": "8",
"snapshot.mode": "schema_only",
"table.include.list": "yyyyyyyy",
"tasks.max": "1",
"topic.prefix": "14DEBEZIUM2"
}
but we found some of the changes happened in source db are missing when above connect task finished.
pls provie some advice or clue to resolve the change records missing issue. Thanks