plaofchina opened a new issue, #8899: URL: https://github.com/apache/seatunnel/issues/8899
### 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 The Kafka consumer configuration` enable.auto.commit` depends on the connector configuration `commit_on_checkpoint`, so the configuration `enable.auto.commit` is disabled. When `commit_on_checkpoint` is set to true, `enable.auto.commit` is also set to `true`. This can lead to automatic offset commits, which may cause data loss. ### SeaTunnel Version 2.3.9 ### SeaTunnel Config ```conf env { id=16838005946560 name=wqz-kafka description="测试kafka streaming模式报错" engine=SeaTunnel jobMode=STREAMING "job.name"=wqz-kafka "job.mode"=STREAMING job.retry.times=0 } source { Kafka { "plugin_output"=Table16838010490304 "dag-parsing.mode"=MULTIPLEX topic="tyx_test01" // topic="wqz-001-topic" format_error_handle_way=fail commit_on_checkpoint=true schema { fields { name=string } } format=json kafka.config = { "max.pool.records"=500 enable.auto.commit=false } "bootstrap.servers"="10.*.*.*:9092" } } transform { } sink { Console { "plugin_input"=Table16838010490304 "log.print.data"=true } } ``` ### Running Command ```shell Just Seatunnel Client ``` ### Error Exception ```log No Exception ``` ### Zeta or Flink or Spark Version _No response_ ### Java or Scala Version _No response_ ### Screenshots _No response_ ### 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]
