Browse Source

[doc] Change subprocess dependent (#10637)

3.1.0-release
sneh-wha 2 years ago committed by GitHub
parent
commit
1f46078ab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      docs/docs/en/guide/task/dependent.md
  2. 25
      docs/docs/en/guide/task/sub-process.md

24
docs/docs/en/guide/task/dependent.md

@ -7,20 +7,24 @@ Dependent nodes are **dependency check nodes**. For example, process A depends o
## Create Task ## Create Task
- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page. - Click `Project Management -> Project Name -> Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page.
- Drag from the toolbar <img src="../../../../img/tasks/icons/dependent.png" width="15"/> task node to canvas. - Drag from the toolbar <img src="../../../../img/tasks/icons/dependent.png" width="15"/> task node to canvas.
## Task Parameter ## Task Parameter
- **Node name**: The node name in a workflow definition is unique. | **Parameter** | **Description** |
- **Run flag**: Identifies whether this node schedules normally, if it does not need to execute, select the `prohibition execution`. | ----- | -----------|
- **Descriptive information**: Describe the function of the node. | Node name | Unique name of node in workflow definition. |
- **Task priority**: When the number of worker threads is insufficient, execute in the order of priority from high to low, and tasks with the same priority will execute in a first-in first-out order. | Run flag | Identifies whether this node schedules normally. |
- **Worker grouping**: Assign tasks to the machines of the worker group to execute. If `Default` is selected, randomly select a worker machine for execution. | Description | Describe the function of the node. |
- **Environment Name**: Configure the environment name in which run the script. | Task priority | When the number of worker threads is insufficient, execute in the order of priority from high to low, and tasks with the same priority will execute in a first-in first-out order. |
- **Times of failed retry attempts**: The number of times the task failed to resubmit. | Worker group | Assign tasks to the machines of the worker group to execute. If `Default` is selected, randomly select a worker machine for execution. |
- **Failed retry interval**: The time interval (unit minute) for resubmitting the task after a failed task. | Task group name | The group in Resources, if not configured, it will not be used. |
- **Delayed execution time**: The time (unit minute) that a task delays in execution. | Environment Name | Configure the environment name in which run the script. |
| Number of failed retries | The number of times the task failed to resubmit. |
| Failed retry interval | The time interval (unit minute) for resubmitting the task after a failed task. |
| Delayed execution time | The time (unit minute) that a task delays in execution. |
| Pre task | Selecting a predecessor task for the current task, will set the selected predecessor task as upstream of the current task. |
## Examples ## Examples

25
docs/docs/en/guide/task/sub-process.md

@ -6,20 +6,23 @@ The sub-process node is to execute an external workflow definition as a task nod
## Create Task ## Create Task
- Click `Project -> Management-Project -> Name-Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page. - Click `Project Management-> Project Name -> Workflow Definition`, and click the `Create Workflow` button to enter the DAG editing page.
- Drag from the toolbar <img src="../../../../img/tasks/icons/sub_process.png" width="15"/> task node to canvas to create a new SubProcess task. - Drag from the toolbar <img src="../../../../img/tasks/icons/sub_process.png" width="15"/> task node to canvas to create a new SubProcess task.
## Task Parameter ## Task Parameter
- Node name: The node name in a workflow definition is unique. | **Parameter** | **Description** |
- Run flag: Identifies whether this node schedules normally. | ---- |---------|
- Descriptive information: Describe the function of the node. | Node name | Unique name of node in workflow definition. |
- Task priority: When the number of worker threads is insufficient, execute in the order of priority from high to low, and tasks with the same priority will execute in a first-in first-out order. | Run flag | Identifies whether this node schedules normally. |
- Worker grouping: Assign tasks to the machines of the worker group to execute. If `Default` is selected, randomly select a worker machine for execution. | Description | Describe the function of the node. |
- Environment Name: Configure the environment name in which run the script. | Task priority | When the number of worker threads is insufficient, execute in the order of priority from high to low, and tasks with the same priority will execute in a first-in first-out order. |
- Timeout alarm: Check the timeout alarm and timeout failure. When the task runs exceed the "timeout", an alarm email will send and the task execution will fail. | Worker group | Assign tasks to the machines of the worker group to execute. If `Default` is selected, randomly select a worker machine for execution. |
- Sub-node: It is the workflow definition of the selected sub-process. Enter the sub-node in the upper right corner to jump to the workflow definition of the selected sub-process. | Task group name | The group in Resources, if not configured, it will not be used. |
- Predecessor task: Selecting a predecessor task for the current task, will set the selected predecessor task as upstream of the current task. | Environment Name | Configure the environment name in which run the script. |
| Timeout alarm | Check the timeout alarm and timeout failure. When the task runs exceed the "timeout", an alarm email will send and the task execution will fail. |
| Child node | It is the workflow definition of the selected sub-process. Enter the child node in the upper right corner to jump to the workflow definition of the selected sub-process. |
| Pre task | Selecting a predecessor task for the current task, will set the selected predecessor task as upstream of the current task.
## Task Example ## Task Example
@ -41,6 +44,6 @@ After creating the sub_process, create a corresponding shell task for printing "
![subprocess_task03](../../../../img/tasks/demo/subprocess_task03.png) ![subprocess_task03](../../../../img/tasks/demo/subprocess_task03.png)
## Notice ## Note
When using `sub_process` to recall a sub-node task, you need to ensure that the defined sub-node is online status, otherwise, the sub_process workflow will not work properly. When using `sub_process` to recall a sub-node task, you need to ensure that the defined sub-node is online status, otherwise, the sub_process workflow will not work properly.

Loading…
Cancel
Save