no function is mapped to the name "action:output" , oozie shell action -
according oozie documentation, can capture output of shell action using function string action:output(string node, string key)
when use in decision node <decision name="mydecision"> <switch> <case to="shell1"> ${action:output('decidescript','decide.next.step.name') = 'shell1'} </case> <default to="end"/> </switch> </decision>
oozie throws me error saying no function mapped name "action:output" , oozie shell action
the seems error in oozie documentation of shell action. use {wf:actiondata('decidescript')['decide.next.step.name'] = 'shell1}
el instead.
Comments
Post a Comment