wmmzz opened a new issue, #9907: URL: https://github.com/apache/seatunnel/issues/9907
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened 我使用jdbc可以同步。但是现在需要做实时。所以使用了cdc。但是只是在目标表创建了表。并没有插入数据。 ### SeaTunnel Version 2.3.11 ### SeaTunnel Config ```conf env { execution.parallelism = 1 job.mode = "STREAMING" } source { Oracle-CDC { plugin_output = "customers" username = "logminer_user" password = "****" database-names = ["ORCLCDB"] schema-names = ["HR"] table-names = ["ORCLCDB.HR.NOE"] base-url = "jdbc:oracle:thin:@//****/ORCLCDB" source.reader.close.timeout = 120000 scan.startup.mode = "initial" } } sink { jdbc { url = "jdbc:oracle:thin:@//***/ORCLCDB" driver = "oracle.jdbc.OracleDriver" user = "scott" password = "****" plugin_output = "customers" generate_sink_sql = true database = ORCLCDB table = "SCOTT.NOE" primary_keys = ["ID"] schema_save_mode = "CREATE_SCHEMA_WHEN_NOT_EXIST" data_save_mode="APPEND_DATA" } } ``` ### Running Command ```shell /opt/seatunnel/apache-seatunnel-2.3.11/bin/seatunnel.sh --config hr.conf -m local > seatunnel_hr.log 2>&1 ``` ### Error Exception ```log 没有发现影响进程的错误 ``` ### Zeta or Flink or Spark Version _No response_ ### Java or Scala Version java11 ### Screenshots <img width="392" height="113" alt="Image" src="https://github.com/user-attachments/assets/eabafd8d-2974-4e40-8313-e6a636871fcc" /> <img width="1201" height="878" alt="Image" src="https://github.com/user-attachments/assets/0f8d0576-e72e-41c3-ba40-f0597fed82eb" /> <img width="1180" height="865" alt="Image" src="https://github.com/user-attachments/assets/04112608-71e4-4a22-9cf2-198fbdceff34" /> <img width="1726" height="851" alt="Image" src="https://github.com/user-attachments/assets/0280da4c-3033-488f-a436-fab305c61595" /> [seatunnel_hr.log](https://github.com/user-attachments/files/22581665/seatunnel_hr.log) ### Are you willing to submit PR? - [x] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
