lee-vivi opened a new issue, #10144: URL: https://github.com/apache/seatunnel/issues/10144
### 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以批量形式写入到Doris中,但运行命令后,发现Doris中没有写入任何数据,源表总数据量为百万级, 执行命令: /usr/local/seatunnel-2.3.4/bin/start-seatunnel-flink-13-connector-v2.sh --config batch_test1.conf ### SeaTunnel Version 所有2.3.X版本 ### SeaTunnel Config ```conf env { job.name=test2 parallelism = 1 job.mode = "BATCH" checkpoint.interval = 10000 } source { Jdbc { url = "jdbc:mysql://10.1.1.2:3306/source?serverTimezone=GMT%2b8&useUnicode=true&characterEncoding=UTF-8&rewriteBatchedStatements=true" driver = "com.mysql.cj.jdbc.Driver" connection_check_timeout_sec = 100 user = "root" password = "a123#456#" # Define query logic as required query = "select * from b_unique_map order by id asc limit 10" partition_column = "id" # Read start boundary partition_lower_bound = 1 # Read end boundary partition_upper_bound = 500 partition_num = 10 fetch_size = 1000 properties { useSSL=false } } } sink { Doris { fenodes = "17.1.12.30:8050" username = root password = "123a35aa1" database = "test" table = "b_unique_map" sink.label-prefix = "b_" sink.enable-2pc = "false" sink.enable-delete = "true" sink.buffer-size = 256 sink.buffer-count = 3 doris.batch.size = 1024 doris.config { format = "json" read_json_by_line = "true" } } } ``` ### Running Command ```shell /usr/local/seatunnel-2.3.4/bin/start-seatunnel-flink-13-connector-v2.sh --config batch_test1.conf ``` ### Error Exception ```log 没有错误异常,但Doris中没有写入的数据 ``` ### Zeta or Flink or Spark Version flink1.13.6 ### Java or Scala Version java8 ### 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]
