Updated on 2022-07-11 GMT+08:00

workflow.xml

Function

workflow.xml describes a complete service workflow. A workflow consists of a start node, an end node, and multiple action nodes.

Parameter Description

Table 1 describes parameters in workflow.xml.

Table 1 Parameters

Parameter

Meaning

name

Identifies a workflow file.

start

Indicates the workflow start node.

end

Indicates the workflow end node.

action

Indicates nodes (one or multiple) that are used to implement a service.

Example Codes

<workflow-app xmlns="uri:oozie:workflow:1.0" name="data_load">
    <start to="copyData"/>
    <action name="copyData">
    </action>
      ……
    <end name="end"/>
</workflow-app>