我在使用 oozie 运行 hive 协调器时遇到问题。这就是我的 jobs.properties 文件的样子:
oozie.use.system.libpath=true
workflowRoot=hdfs://bigi-3000-beta-bm-20140511-2204-3467-master.imdemocloud.com:9000/user/nehpraka/price_comp1
start=2015-05-20T22:00Z
end=2015-06-22T23:00Z
# HDFS path of the coordinator app
oozie.coord.application.path=hdfs://bigi-3000-beta-bm-20140511-2204-3467-master.imdemocloud.com:9000/user/nehpraka/price_comp1
这是 coordinator.xml
<coordinator-app name="my_coord_app" frequency="${coord:hours(1)}" start="${coordStart}" end="${coordEnd}" timezone="UTC" xmlns="uri:oozie:coordinator:0.4">
<action>
<workflow>
<app-path>${workflowRoot}</app-path>
</workflow>
</action>
</coordinator-app>
但是当我运行我的工作时,我遇到了以下错误。
$OOZIE_HOME/bin/oozie job -run -config price_comp1/job.properties
Error: E1004 : Internal Server Error
我的工作流程运行良好,当我尝试附加协调器时出现问题。