java - Hive jdbc 驱动程序以非描述性消息响应

标签 java hadoop jdbc hive

我准备了使用 hive jdbc 客户端调用 Hadoop DB 的 java 应用程序。 当我尝试做简单的查询时,比如“select * from students”,它工作正常。 但是一旦我添加了一些条件语句(例如, where age > 10 ),它就会开始响应异常,如下所示:

Caused by: java.sql.SQLException: Query returned non-zero code: 2, cause: FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.mr.MapRedTask
    at org.apache.hadoop.hive.jdbc.HiveStatement.executeQuery(HiveStatement.java:194)
    at org.springframework.jdbc.core.JdbcTemplate$1QueryStatementCallback.doInStatement(JdbcTemplate.java:441)
    at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:396)
    ... 29 more

我在谷歌中发现它缺少库的唯一可能原因。但对我来说,我需要额外的库来进行更复杂的查询,这看起来很奇怪。

以防万一这里是build.gradle的依赖列表

compile "org.springframework:spring-core:"+spring_version
compile "org.springframework:spring-beans:"+spring_version
compile "org.springframework:spring-context:"+spring_version
compile "org.springframework:spring-jdbc:"+spring_version

compile "commons-io:commons-io:2.1"

compile 'org.apache.hadoop:hadoop-core:1.0.0'

compile 'org.apache.hive:hive-jdbc:0.13.0'
compile 'org.apache.hive:hive-exec:0.13.0'
compile 'org.apache.hive:hive-service:0.13.0'
compile 'org.apache.hive:hive-metastore:0.13.0'

compile 'org.apache.thrift:libfb303:0.9.2'
compile 'org.apache.thrift:libthrift:0.9.2'

compile 'log4j:log4j:1.2.15'
compile 'org.antlr:antlr-runtime:3.5'
compile 'org.apache.derby:derby:10.10.1.1'
compile 'javax.jdo:jdo2-api:2.3-eb'
compile 'jpox:jpox:1.1.9'
compile 'jpox:jpox:1.1.9'

和 jdbc 模板的 spring 配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:c="http://www.springframework.org/schema/c"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location">
            <value>classpath:spring/application.properties</value>
        </property>
    </bean>

    <context:component-scan base-package="com.sample" />

    <!-- basic Hive driver bean -->
    <bean id="hive-driver" class="org.apache.hadoop.hive.jdbc.HiveDriver" />

    <bean id="hiveSource"
          class="org.springframework.jdbc.datasource.SimpleDriverDataSource"
          c:driver-ref="hive-driver" c:url="${hadoop.jdbc.driver.path}"
          c:username="${hadoop.login}" c:password="${hadoop.password}" />

    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
          c:data-source-ref="hiveSource" />

    <bean id="hiveDao" class="com.sample.dao.HiveDao">
        <property name="jdbcTemplate" ref="jdbcTemplate" />
    </bean>


    <bean id="hiveClient" class=" com.sample.client.HiveClient">
        <property name="hiveDao" ref="hiveDao" />
    </bean>

</beans>

请提供建议或分享工作示例。

最好的问候, 亚历克斯

最佳答案

使用, <bean id="hive-driver" class="org.apache.hive.jdbc.HiveDriver"/> 而不是 <bean id="hive-driver" class="org.apache.hadoop.hive.jdbc.HiveDriver" />

关于java - Hive jdbc 驱动程序以非描述性消息响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28424592/

相关文章:

hadoop - oozie 作业完成后的 HTTP 回调

hadoop - reducer 的输出发送到 HDFS,其中 map 输出存储在数据节点本地磁盘中?

java - 在多时区服务器上使用 JDBC 时,我应该选择哪种 Oracle 日期数据类型?

java - 在 Java 应用程序引擎中连接到 PostgreSQL

mysql - 多个结果集的多个查询

java - 如何在appengine上制作倒数计时器?

java - 背景和按钮问题

java - 为什么不是所有 Java Swing JTable 都有焦点指示器

java - 使用接口(interface)在 fragment 之间传递消息

windows - 在 Windows 上编译 Hadoop 时缺少 'ammintrin.h'?