ilovd opened a new issue, #7707: URL: https://github.com/apache/seatunnel/issues/7707
### 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 Hbase Sink to Starrocks,the configuration of transform.fieldmapper info:name doesn't work. ### SeaTunnel Version 2.3.6 ### SeaTunnel Config ```conf env { parallelism = 1 } source { Hbase { zookeeper_quorum = "10.53.14.206:2181" table = "users" caching = 1000 batch = 100 cache_blocks = false query_columns = ["rowkey", "info:name", "info:age"] result_table_name = "fake" schema = { columns = [ { name = "rowkey" type = string }, { name = "info:name" type = string }, { name = "info:age" type = int } ] } } } transform { FieldMapper { source_table_name = "fake" result_table_name = "fake1" field_mapper = { rowkey = code info:name = data info:age = msg } } } sink { Starrocks { source_table_name = "fake1" nodeUrls = ["10.53.14.206:8030"] username = admin password = "111111" database = "test" table = "hbasetest" starrocks.config { format = "json" } } ``` ### Running Command ```shell bin/seatunnel.sh -c config/hbase.conf -m local ``` ### Error Exception ```log There is no filed info:name from the upstream source. ``` ### Zeta or Flink or Spark Version zeta ### Java or Scala Version jdk11 ### Screenshots transform can not recognize the field "info:name", "info:age"。 i want to mapping hbase column to starrocks column, but failed. If i only use field rowkey to mapping, it will success. but when i mapping more columns , it will failed. ### 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]
