You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by "Mona Chitnis (JIRA)" <ji...@apache.org> on 2012/05/13 23:19:53 UTC

[jira] [Updated] (OOZIE-8) variable not replaced in workflow rerun

     [ https://issues.apache.org/jira/browse/OOZIE-8?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mona Chitnis updated OOZIE-8:
-----------------------------


For the patch committed in trunk with this JIRA ID (also available under the same JIRA ID in Apache ReviewBoard system), I grant license to ASF for inclusion in ASF works (as per the Apache License §5) 
                
> variable not replaced in workflow rerun
> ---------------------------------------
>
>                 Key: OOZIE-8
>                 URL: https://issues.apache.org/jira/browse/OOZIE-8
>             Project: Oozie
>          Issue Type: Bug
>            Reporter: Mona Chitnis
>              Labels: oozie, rerun
>             Fix For: 3.2.0
>
>         Attachments: OOZIE-8.patch
>
>   Original Estimate: 168h
>  Remaining Estimate: 168h
>
> 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>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira