我正在尝试使用协调器运行工作流,但是当我尝试将工作流和协调器 XML 文件路径设置在一起时,出现错误。这就是我的 jobs.properties 文件的样子:
nameNode=hdfs://10.74.6.155:9000
jobTracker=10.74.6.155:9010
queueName=default
oozie.use.system.libpath=true
oozie.wf.application.path=${nameNode}/user/${user.name}/examples/apps/test/
oozie.coord.application.path=${nameNode}/user/${user.name}/examples/apps/test/
当我使用命令行运行我的工作流程时:
bin\oozie job -oozie http://localhost:11000/oozie -config examples\apps\test\job.properties -run
我收到以下错误:
Error: E0302 : E0302: Invalid parameter [{0}]
我究竟做错了什么?
谢谢!