5

当我使用 from oozie od CDH 4.1.1 运行配置单元脚本时

运行失败:

Error Code  JA018
Error Message   org/apache/hadoop/hive/cli/CliDriver

Details
Property    Value
External Id job_201211281608_0112
External Status FAILED/KILLED
Data    None
Start time   Sat, 01 Dec 2012 03:02:37
End time     Sat, 01 Dec 2012 03:03:07
Id  0000007-121128160850795-oozie-oozi-W@ExchangeRateTest
Retries 0
TrackerUri  overlord-datanode1:8021
Transition  kill

谷歌搜索 JA018仅显示一个神秘提示:JA018 is output directory exists error in workflow map-reduce action。

我将我的 hiv-site.xml 复制到 HDFS 并在 workflow.xml 中设置:oozie.hive.defaults /user/hue/oozie/workspaces/ overlord -oozie-1/hive-site.xml

这是完整的workflow.xml:

<workflow-app name="HiveTest" xmlns="uri:oozie:workflow:0.4">
    <start to="ExchangeRateTest"/>
    <action name="ExchangeRateTest">
        <hive xmlns="uri:oozie:hive-action:0.2">
            <job-tracker>${jobTracker}</job-tracker>
            <name-node>${nameNode}</name-node>
            <prepare>
                <delete path="${nameNode}${jobOutput}"/>
            </prepare>
            <configuration>
                <property>
                    <name>oozie.use.system.libpath</name>
                    <value>true</value>
                </property>
                <property>
                    <name>oozie.hive.defaults</name>
                    <value>/user/hue/oozie/workspaces/_overlord_-oozie-1/hive-site.xml</value>
                </property>
            </configuration>
            <script>/user/hue/oozie/workspaces/_overlord_-oozie-1/03_update_exchange_rates_final.hive</script>
              <param>OUTPUT=${jobOutput}</param>
        </hive>
        <ok to="end"/>
        <error to="kill"/>
    </action>
    <kill name="kill">
        <message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
    </kill>
    <end name="end"/>
</workflow-app>

怎样才能让它发挥作用?

4

1 回答 1

2

org/apache/hadoop/hive/cli/CliDriver执行 Hive 操作需要该类。从错误消息中可以明显看出这一点。这个类在这个 jar 文件中:hive-cli-0.7.1-cdh3u5.jar. (在我的 cloudera 版本中,我的情况是 cdh3u5)。

ShareLibOozie 在目录中检查这个 jar 。该目录的位置通常配置在 中hive-site.xml,属性名称为oozie.service.WorkflowAppService.system.libpath,因此 Oozie 应该很容易找到该 jar。

但在我的情况下,hive-site.xml不包括这个属性,所以 Oozie 不知道在哪里可以找到这个 jar,因此java.lang.NoClassDefFoundError.

为了解决这个问题,我必须在我的 job.properties 文件中包含一个参数,以将 oozie 指向ShareLib目录的位置,如下所示 oozie.libpath=${nameNode}/user/oozie/share/lib:(取决于在SharedLib集群上配置目录的位置)。

于 2013-08-22T18:45:06.950 回答