Description
job.properties:
hdfsDir=/user/strat_ci/yoozie_test
inputDir=${hdfsDir}/input-data
outputDir=${hdfsDir}/output-demo
queueName=grideng
in the original run, the Action Configuration replaces the variable:
<configuration>
<property>
<name>mapred.input.dir</name>
<value>/user/strat_ci/yoozie_test/output-demo/mapred_1</value>
</property>
<property>
<name>mapred.output.dir</name>
<value>/user/strat_ci/yoozie_test/output-demo/streaming</value>
</property>
<property>
<name>mapred.job.queue.name</name>
<value>grideng</value>
</property>
in rerun, the Action Configuration does not replace variable, therefore the action fails with error code JA018:
<configuration>
<property>
<name>mapred.input.dir</name>
<value>${hdfsDir}/output-demo/mapred_1</value>
</property>
<property>
<name>mapred.output.dir</name>
<value>${hdfsDir}/output-demo/streaming</value>
</property>
<property>
<name>mapred.job.queue.name</name>
<value>grideng</value>
</property>