13813586515 opened a new issue, #7298: URL: https://github.com/apache/seatunnel/issues/7298
### 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 mysql-cdc ->doris exception ### SeaTunnel Version 2.3.5 ### SeaTunnel Config ```conf env { parallelism = 1 job.mode = "STREAMING" checkpoint.interval = 10000 } source { MySQL-CDC { result_table_name = "customers_mysql_cdc" base-url = "jdbc:mysql://xxxx:3306/abc" username = "root" password = "password" table-names = ["abc.seatunnel_cdc_test"] table-names-config = [ { table = "abc.seatunnel_cdc_test" primaryKeys = ["id"] } ] startup.mode = "initial" } } sink { Doris { fenodes = "xxxx:58030" username = root password = "password" database = "ods_xxx" table = "ods_xxx" sink.label-prefix = "ods_xxx_seatunnel_cdc_test" sink.enable-2pc = "true" sink.enable-delete = "true" doris.config { format = "json" read_json_by_line = "true" } } } ``` ### Running Command ```shell mysql create table sql: CREATE TABLE `xxx`.`seatunnel_cdc_test` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; ``` ### Error Exception ```log java.util.concurrent.ExecutionException: java.lang.RuntimeException: Generate Splits for table xxx.seatunnel_cdc_test error ``` ### Zeta or Flink or Spark Version Zeta ### Java or Scala Version java1.8 ### Screenshots _No response_ ### Are you willing to submit PR? - [ ] 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]
