alextinng opened a new issue, #6324: URL: https://github.com/apache/seatunnel/issues/6324
### 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 timestamp data writing into iotdb with a wrong zoneid data in taos ``` time | power | ====================================================== 2024-02-01 00:00:00.000 | 26.410000000 | 2024-02-01 00:01:00.000 | 26.310000000 | 2024-02-01 00:02:00.000 | 26.580000000 | 2024-02-01 00:03:00.000 | 26.970000000 | 2024-02-01 00:04:00.000 | 27.630000000 | ``` data in iotdb ``` IoTDB> show time_zone Current time zone: Asia/Shanghai IoTDB> select s_1603004 from root.default.ods_23_bd_pq_dtl.**.d_20854087 +-----------------------------+--------------------------------------------------------+ | Time|root.default.ods_23_bd_pq_dtl.t_272.d_20854087.s_1603004| +-----------------------------+--------------------------------------------------------+ |2024-02-01T08:00:00.000+08:00| 26.41| |2024-02-01T08:01:00.000+08:00| 26.31| |2024-02-01T08:02:00.000+08:00| 26.58| |2024-02-01T08:03:00.000+08:00| 26.97| |2024-02-01T08:04:00.000+08:00| 27.63| +-----------------------------+--------------------------------------------------------+ Total line number = 5 ``` possibly cause:  ### SeaTunnel Version 2.3.4 ### SeaTunnel Config ```conf { "env" : { "execution.parallelism" : 1, "job.mode" : "BATCH" }, "source" : [ { "password" : "taosdata", "database" : "vpp", "lower_bound" : "2024-02-01 00:00:00", "stable" : "dev", "result_table_name" : "t_src", "upper_bound" : "2024-02-01 00:05:00", "plugin_name" : "TDengine", "url" : "jdbc:TAOS-RS://localhost:6041/vpp?timezone=Asia/Shanghai&user=root&password=taosdata", "username" : "root" } ], "sink" : [ { "zone_id" : "Asia/Shanghai", "password" : "root", "batch_size" : 1024, "node_urls" : [ "localhost:6667" ], "storage_group" : "root.default", "source_table_name" : "t_dest", "key_timestamp" : "ts", "plugin_name" : "Console", "key_device" : "device_name", "username" : "root", "batch_interval_ms" : 1000 } ] } ``` ### Running Command ```shell bin/seatunel.sh --config a.conf -e local ``` ### 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? - [ ] 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]
