Oozie Workflow Warning - "Application does not define formal parameters in its XML definition"

What is the meaning of the org.apache.oozie.util.ParameterVerifier warning "Application does not define formal parameters in its XML definition"?

+3


source to share


1 answer


This is because your workflow.xml or Coordinator.xml does not contain a child node for "parameters".

Oozie's code for this check can be found here .



You can find an example (second section of code) here .

Note. It looks like this is a mild warning ... unless these parameters are required for something else.

0


source







All Articles