Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Update documentation for loop task (DO_WHILE) (#2965)
Browse files Browse the repository at this point in the history
* update doc for loop task

* better language
  • Loading branch information
manan164 authored May 4, 2022
1 parent 4e1f08a commit a0cc539
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/reference-docs/do-while-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ When scheduled, each task of this loop will see its `taskReferenceName` concaten

Each task output is stored as part of the DO_WHILE task, indexed by the iteration value (see example below), allowing the condition to reference the output of a task for a specific iteration (eg. $.LoopTask['iteration']['first_task'])

The DO_WHILE task is set to `FAILED` as soon as one of the loopTask fails. In such case retry, iteration starts from 1.
The DO_WHILE task is set to `FAILED` as soon as one of the loopOver fails. In such case retry, iteration starts from 1.

#### Limitations
- Domain or isolation group execution is unsupported; - Nested DO_WHILE is unsupported;
- SUB_WORKFLOW is unsupported;
- Since loopover tasks will be executed in loop inside scope of parent do while task, crossing branching outside of DO_WHILE task is not respected.
- Since loopover tasks will be executed in loop inside scope of parent do while task, crossing branching outside of DO_WHILE task is not respected.
- Nested DO_WHILE tasks are not supported. However, DO_WHILE task supports SUB_WORKFLOW as loopOver task, so we can achieve similar functionality.

Branching inside loopover task is supported.
Branching inside loopOver task is supported.



Expand Down

0 comments on commit a0cc539

Please sign in to comment.