Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Undefined links corrected

...

  1. create a job "SynchroniseJobChains" named "sync" using the job wizzard wizard in JOE.
Code Block
 <job title="Synchronize Job Chains" order="yes">
    <script language="java"
    java_class="sos.scheduler.job.JobSchedulerSynchronizeJobChains"/>
 </job>

...

  1. Same steps as at 1.
  2. You can specify for each job chain, how many orders have to be at the sync point to set the node to GO. Note: If you want to specify it for different nodes, you can use parameter [job_chain];[state]_required_orders
Code Block
 <job title="Synchronize Job Chains" order="yes">
    <params>
        <param name="job_chain1_required_orders" value="3"/>
        <param name="job_chain2_required_orders" value="1"/>
    </params>
    <script language="java"
            java_class="sos.scheduler.job.JobSchedulerSynchronizeJobChains"/>
 </job>

...