Use of Jobs
Read more on the features of Job Objects in the job documentation.
Job Patterns
Independent Job Start Pattern
- Jobs are completely independent from one another.
- Each job has an individual start time.
![](/download/export/graphviz6461899477733738330.png)
Job Start Pattern based on Execution Results
- Jobs are started based on the execution result of a previous job.
- If Job 1 returns an exit code 1 then Job 2 will be executed.
- If Job 1 returns an exit code 2 then Job 3 will be executed.
![](/download/export/graphviz454575856324359860.png)
Parallel Tasks Job Start Pattern
- Jobs can be executed in multiple parallel tasks.
- All tasks are executed independently from one another.
![](/download/export/graphviz4351146738122595589.png)