corgy-w opened a new issue, #7479: URL: https://github.com/apache/seatunnel/issues/7479
### 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 is no table_path multi-metrics populating error. Jdbc table-path to be named correctly when catalog is created. ### SeaTunnel Version dev ### SeaTunnel Config ```conf env { "job.mode"="BATCH" "job.name"="20" } source { Jdbc { url="jdbc:mysql://xxxxxx:3306/dbs?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true" driver="com.mysql.cj.jdbc.Driver" user="root" password="xxxxxx" query="select age, name,gender from `dbs`.`user`" "batch_size"="1024" # table_path="dbs.user" result_table_name="mysql1" } Jdbc { url="jdbc:mysql://xxxxxx:3306/dbs?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true" driver="com.mysql.cj.jdbc.Driver" user="root" password="xxxxxx." query="select name from `dbs`.`users`" "batch_size"="1024" # table_path="dbs.users" result_table_name="mysql2" } } transform { } sink { Jdbc { url="jdbc:mysql://xxxxxx:3306/pegasus_data_demo_00?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true" driver="com.mysql.cj.jdbc.Driver" user="root" password="xxxxxx." database="pegasus_data_demo_00" table="user" generate_sink_sql = true source_table_name="mysql1" } Jdbc { url="jdbc:mysql://xxxxxx:3306/pegasus_data_demo_00?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true" driver="com.mysql.cj.jdbc.Driver" user="root" password="xxxxxx." database="pegasus_data_demo_00" table="users" generate_sink_sql = true source_table_name="mysql2" } } ``` ### Running Command ```shell - ``` ### Error Exception ```log - ``` ### 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]
