Reputation: 31
I have 2 oozie work flows ..say workflow 1 and workflow2. While workflow2 execution, workflow1shld not get triggered. And hence workflow 2 shld also check if workflow1 is executing, if so, it shld wait until its completion and then get triggered.
Upvotes: 2
Views: 1825
Reputation: 463
Oozie workflows are independent. You could implement the workaround suggested here How to create Oozie workflow dependencies in hue --workflow--Editor : a preliminary java action that calls Oozie REST APIs to check whether wf1 or wf2 is running.
Upvotes: 1