我的hive-site.xml中列出了几个jar文件。我有一个使用特殊FileInputFormat的表。

运行 hive 时,我可以执行以下操作:describe my-table。工作正常。

当我运行hiveServer2并从beeline连接时。我可以看到表格,但是当我执行describe my-table时,我得到了:

Error: Error while processing statement: FAILED: RuntimeException java.lang.ClassNotFoundException: package.file.input.format.class.name (state=42000,code=40000)

我该怎么做才能确保hiveserver2可以访问jar文件?

最佳答案

您完成了三个步骤:user-defined-function with HiveServer2

09-27 18:07