如何处理由Hive JDBC开发的服务应用程序故障?

问题描述 投票:0回答:1

我正在基于Hive jdbc-examples项目开发服务应用程序,无法运行该应用程序。“蜂巢”

我通常使用华为的大数据产品来执行Hive的jdbc示例开发,但始终无法运行该应用程序。

jdbc hive bigdata huawei
1个回答
1
投票

要解决此问题,请尝试以下方法之一:

方法1

根据Hive jdbc-examples示例项目,将core-site.xml配置文件放入类路径。

方法2

在代码中,显式加载core-site.xml文件:

...... conf = new Configuration();字符串userdir = System.getProperty(“ user.dir”)+ File.separator +“ conf” + File.separator;conf.addResource(new Path(userdir +“ core-site.xml”)); ......

方法3

在代码中,将hadoop.security.authentication设置为kerberos:

...... CONF = new Configuration();CONF.set(“ hadoop.security.authentication”,“ kerberos”); ......

有关详细信息,请参见meta

© www.soinside.com 2019 - 2024. All rights reserved.