Versions Compared

Key

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

...

  • Download: final_chain.zip
  • Extract the archive to a ./config/live/issues folder of your JobScheduler installation.
  • The archive will extract the files to a sub-folder final_chain. 
  • You can store the sample files to a any folder as you like, however, you will to adjust the job parameters accordingly.

Pattern

Flowchart
order_A [shape="ellipse",label="Order A\n start time: Friday 08:00 ",fillcolor="violet"]
order_B [shape="ellipse",label="Order B\n start time: Friday 07:00 ",fillcolor="violet"]
order_Z [shape="ellipse",label="Order Z\n start time: Friday 15:00 ",fillcolor="violet"]
 
job_chain_A [label="Job Chain A\nhas no relevant dependencies",fillcolor="orange"]
job_chain_B [label="Job Chain B\nhas no relevant dependencies",fillcolor="orange"]
job_chain_Z [label="Job Chain Z\nstarts at an arbitrary point in time\ndepends on the execution of\nJob Chain A and Job Chain B",fillcolor="orange"]

job_check_predecessor [label="Job check_predecessor",fillcolor="lightskyblue"]
job_next_job [label="Next Job", fillcolor="lightskyblue"]
check_predecessor_successful [shape=diamond,label="execution successful?",fillcolor="white"]
order_Z [shape="ellipse",label="Order Z\n start time: Saturday 15:00 \nfor Job Chain A and Job Chain B",fillcolor="violetwhite"]
order_setback [label="Setback Order",fillcolor="white"]
 
order_A -> job_chain_A
order_B -> job_chain_B
order_Z -> job_chain_Z
job_chain_Z -> job_check_predecessor
job_check_predecessor -> check_predecessor_successful
check_predecessor_successful -> job_next_job [label=" yes "]
check_predecessor_successful -> order_setback [label=" order setback "]
order_setback -> job_check_predecessor

...