Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Job chain with multiple orders executing in parallel

  • Three orders start are executed in the same job chain at different points the same point in time:
    • Order 1 includes two start times for workdays.
    • Order 2 starts on Saturday.
    • Order 3 starts on Sunday.
    Order 1 and 2 start the job chain at its beginning, order 3 starts the job chain with Job 2
    • and Order 2 are executing the same job node 2. 
    • Order 3 is executing job node 3.
  • Each order carries a different parameter set for the jobs of the job chain.

...

Flowchart
Order1 [shape="ellipse",label="Order 1\n parameter set: 1 ",fillcolor="violet"]
Order2 [shape="ellipse",label="Order 2\n parameter set: 2 ",fillcolor="violet"]
Order3 [shape="ellipse",label="Order 3\n parameter set: 3 ",fillcolor="violet"]
Job1 [label="Job 1",fillcolor="lightskyblue"]
Job1_successful [shape=diamond,label="execution successful?",fillcolor="white"]
Job2 [label="Job 2",fillcolor="lightskyblue"]
Job2_successful [shape=diamond,label="execution successful?",fillcolor="white"]
Job3 [label="Job 3",fillcolor="lightskyblue"]
Job3_successful [shape=diamond,label="execution successful?",fillcolor="white"]
EndStateSuccess [label="End state: success",fillcolor="palegreen"]
EndStateError [label="End state: error",fillcolor="lightcoral"]

Job1 -> Job2
Order1 -> Job2 [label=" order 1 executing job 2 "]
Order2 -> Job2  [label=" order 2 executing job 2 "]
Job2 -> Job3
Order3 -> Job3 [label=" order 3 executing job 3"]
Job1 -> Job1_successful
Job1_successful -> Job2 [label=" yes "]
Job1_successful -> EndStateError [label=" no "]
Job2 -> Job2_successful
Job2_successful -> Job3 [label=" yes "]
Job2_successful -> EndStateError [label=" no "]
Job3 -> Job3_successful
Job3_successful -> EndStateSuccess [label=" yes "]
Job3_successful -> EndStateError [label=" no "]