matianhe3 opened a new issue, #6636: URL: https://github.com/apache/seatunnel/issues/6636
### 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 chinese become `???`, maybe same as #5244 `广东 -> ??` but run many times, it maybe right `广东`. it is random. ### SeaTunnel Version 2.3.4 ### SeaTunnel Config ```conf env { execution.parallelism = 1 job.mode = BATCH job.name = test } source { Hive { table_name = "bdm.test" metastore_uri = "thrift://192.168.16.9:9083" hdfs_site_path = "/opt/apache-seatunnel-2.3.4/config/hdfs-site.xml" hive_site_path = "/opt/apache-seatunnel-2.3.4/config/hive-site.xml" result_table_name = source read_partitions = ["dt="${dt}] delimiter = "," } } transform { } sink { StarRocks { source_table_name = [source] nodeUrls = ["192.168.17.203:8030", "192.168.17.204:8030", "192.168.17.205:8030"] base-url = "jdbc:mysql:loadBalance://192.168.17.203:9030,192.168.17.204:9030,192.168.17.205:9030" username = test password = "" database = ods table = test enable_upsert_delete = true } } ``` ### Running Command ```shell seatunnel.sh -c test.conf ``` ### Error Exception ```log Starrocks ddl CREATE TABLE `test` ( `uniqueid` varchar(64) NOT NULL COMMENT "", `dt` date NOT NULL COMMENT "", `customerprovince` varchar(16) NULL COMMENT "", `customercity` varchar(32) NULL COMMENT "" ) ENGINE=OLAP PRIMARY KEY(`uniqueid`, `dt`) PARTITION BY (`dt`) DISTRIBUTED BY HASH(`uniqueid`) PROPERTIES ( "replication_num" = "3", "in_memory" = "false", "enable_persistent_index" = "true", "replicated_storage" = "true", "compression" = "LZ4" ); ``` ``` Hive DDL CREATE EXTERNAL TABLE if not exists `bdm`.`b_tianrun_ibs` ( uniqueid string comment "", customerprovince string comment "", customercity string comment "" ) partitioned by (dt string comment '') ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' ; ``` ``` ### Zeta or Flink or Spark Version Zeta 2.3.4 ### 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]
