dongsilun opened a new issue, #5299: URL: https://github.com/apache/seatunnel/issues/5299
### 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 There are two records : {"id":10,"name":"zz1","age":20,"pt":"aa"}, {"id":10,"name":"zz1","age":30,"pt":"aa"}. One by one, the records are input to the kafka producer client. There is only one record ["id":10,"name":"zz1","age":30,"pt":"aa"] in partition 'aa' of hive table. An overwrite has occurred. The file in hdfs only have one line. ### SeaTunnel Version 2.3.2 ### SeaTunnel Config ```conf env { execution.parallelism = 1 job.mode = "STREAMING" checkpoint.interval = 2000 } source { Kafka { result_table_name = "ltao_test" schema = { fields { id = "int" name = "string" age = "int" pt = "string" } } format = json consumer.group = "seatunnel1" topic = "kafka2hive" bootstrap.servers = "node02:9092,node03:9092,node04:9092" kafka.config = { auto.offset.reset = "latest" } } } transform { Sql { source_table_name = "ltao_test" result_table_name = "result_table" query = "select id, concat(name, '_', 'test') as user_name, age, pt from ltao_test where id>0" } } sink { Hive { table_name = "test.ltao" metastore_uri = "thrift://node02:9083" save_mode="append" } } ``` ### Running Command ```shell start-seatunnel-flink-15-connector-v2.sh --master local --config test_kakfa_to_hive.conf ``` ### Error Exception ```log None ``` ### Zeta or Flink or Spark Version Flink-1.15.3 ### Java or Scala Version Java8 ### Screenshots   ### 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]
