flink-cdc oracle incremental-snapshot log.mining.strategy set log.mining.strategy" to "redo_log_catalog" not get data? #3303
Unanswered
stardustman
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Hi @stardustman, when specifying the deserializer as However, there’s a known bug in version 3.0.1 and lower, which blocks Oracle database from capturing schema information. Patch #2315 has been merged, but it won’t be available until release 3.1. You may try compiling Flink CDC at release-3.1 branch and see if this problem persists. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have read the doc incremental-snapshot-based-datastream-experimental , and run the example code. It works. but I also need to get the ddl changes, so I change the debeziumProperties.setProperty("log.mining.strategy", "online_catalog");
to debeziumProperties.setProperty("log.mining.strategy", "redo_log_catalog");
after I run the modified code, there is nothing print in the console.
I set a breakpoint at JsonDebeziumDeserializationSchema#deserialize method, the method not invoked at all.
why? how to resolve this?
Beta Was this translation helpful? Give feedback.
All reactions