Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

max size for oozie workflow definition exceeded

avatar

I am facing below exception on submitted co-ordinator job.

Caused by: org.apache.oozie.workflow.WorkflowException: E0736: Workflow definition length [637,397] exceeded maximum allowed length [100,000]
	at org.apache.oozie.service.WorkflowAppService.readDefinition(WorkflowAppService.java:130)
	at org.apache.oozie.service.LiteWorkflowAppService.parseDef(LiteWorkflowAppService.java:45)
	at org.apache.oozie.command.wf.SubmitXCommand.execute(SubmitXCommand.java:179)

is there any way to bypass this ?

1 ACCEPTED SOLUTION

avatar
Rising Star

@Santhosh B Gowda

To Increase the size of the workflow job definition size. Please add the following property to oozie-site.xml:

oozie.service.WorkflowAppService.WorkflowDefinitionMaxLength=<The maximum length of the workflow definition in bytes>

For Example:

oozie.service.WorkflowAppService.WorkflowDefinitionMaxLength=1000000

View solution in original post

1 REPLY 1

avatar
Rising Star

@Santhosh B Gowda

To Increase the size of the workflow job definition size. Please add the following property to oozie-site.xml:

oozie.service.WorkflowAppService.WorkflowDefinitionMaxLength=<The maximum length of the workflow definition in bytes>

For Example:

oozie.service.WorkflowAppService.WorkflowDefinitionMaxLength=1000000