NoPr opened a new issue, #8032: URL: https://github.com/apache/seatunnel/issues/8032
### 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 Using jdbc -hive as source, executing the script reports an error。The specified class cannot be found, but the jar package has been put in. 使用hive的jdbc做为source,报错找不到指定类,但是已经放入了jar包 ### SeaTunnel Version 2.3.7 ### SeaTunnel Config ```conf env { parallelism = 1 job.mode = BATCH } source { Jdbc { result_table_name = "ta_1856172468898095104_ble" driver = "org.apache.hive.jdbc.HiveDriver" url = "jdbc:hive2://127.0.0.1:10000/userdb" query = "select * from 'userdb'.'t_resource_unstructured_file'" user = "root" password = "" } } transform {} sink { Hive { source_table_name = "ta_1856172468898095104_ble" table_name = "btrc.test2233" metastore_uri = "thrift://127.0.0.1:9083" } } ``` ### Running Command ```shell ./bin/seatunnel.sh -c ***.config -e local ``` ### Error Exception ```log Exception in thread "main" org.apache.seatunnel.core.starter.exception.CommandExecuteException: SeaTunnel job executed failed at org.apache.seatunnel.core.starter.seatunnel.command.ClientExecuteCommand.execute(ClientExecuteCommand.java:211) at org.apache.seatunnel.core.starter.SeaTunnel.run(SeaTunnel.java:40) at org.apache.seatunnel.core.starter.seatunnel.SeaTunnelClient.main(SeaTunnelClient.java:34) Caused by: org.apache.seatunnel.api.table.factory.FactoryException: ErrorCode:[API-06], ErrorDescription:[Factory initialize failed] - Unable to create a source for identifier 'Jdbc'. at org.apache.seatunnel.api.table.factory.FactoryUtil.createAndPrepareSource(FactoryUtil.java:101) at org.apache.seatunnel.engine.core.parse.MultipleTableJobConfigParser.parseSource(MultipleTableJobConfigParser.java:375) at org.apache.seatunnel.engine.core.parse.MultipleTableJobConfigParser.parse(MultipleTableJobConfigParser.java:209) at org.apache.seatunnel.engine.client.job.ClientJobExecutionEnvironment.getLogicalDag(ClientJobExecutionEnvironment.java:114) at org.apache.seatunnel.engine.client.job.ClientJobExecutionEnvironment.execute(ClientJobExecutionEnvironment.java:182) at org.apache.seatunnel.core.starter.seatunnel.command.ClientExecuteCommand.execute(ClientExecuteCommand.java:158) ... 2 more Caused by: java.lang.NoSuchMethodError: org.apache.hadoop.hive.common.auth.HiveAuthUtils.getSocketTransport(Ljava/lang/String;II)Lorg/apache/hive/org/apache/thrift/transport/TTransport; at org.apache.hive.jdbc.HiveConnection.createUnderlyingTransport(HiveConnection.java:561) at org.apache.hive.jdbc.HiveConnection.createBinaryTransport(HiveConnection.java:581) at org.apache.hive.jdbc.HiveConnection.openTransport(HiveConnection.java:341) at org.apache.hive.jdbc.HiveConnection.<init>(HiveConnection.java:228) at org.apache.hive.jdbc.HiveDriver.connect(HiveDriver.java:107) at org.apache.seatunnel.connec ``` ### Zeta or Flink or Spark Version seatunnel-2.3.7 ### Java or Scala Version java1.8 ### Screenshots    ### 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]
