Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Cannot rerun failed coordinator workflow jobs in Oozie

avatar
New Member

I'm having trouble rerunning failed workflows run by coordinators in oozie. When I click the rerun button I get:

"RERUN action for could not be completed". Checking the oozie logs I see:

org.apache.oozie.servlet.XServletException: E0302: Invalid parameter [Multiple app paths specified, only one is allowed]

If I access the failed oozie URL in the logs (after stripping the CGI params) I get the job it's trying to submit. I see that both the following are defined:

"conf":"<configuration>\r\n  <property>\r\n  <name>oozie.wf.application.path<\/name>\r\n    <value>\/mypath\/workflow\/my_workflow.xml<\/value> ...
"appPath":"\/mypath\/workflow\/my_workflow.xml"

Is this the multiple app paths it talks of? Has anyone else seen this? I'm not adding configuration anywhere else to try and specify the workflow.

1 ACCEPTED SOLUTION

avatar
Expert Contributor

Remove "oozie.coord.application.path" parameter from job.xml config file when you rerun it.

Also ensure you have "oozie.wf.rerun.skip.nodes" property added while rerunning workflow.

Command:

oozie job -rerun <wf-id> -config /tmp/job.xml

View solution in original post

1 REPLY 1

avatar
Expert Contributor

Remove "oozie.coord.application.path" parameter from job.xml config file when you rerun it.

Also ensure you have "oozie.wf.rerun.skip.nodes" property added while rerunning workflow.

Command:

oozie job -rerun <wf-id> -config /tmp/job.xml