Versions Compared

Key

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

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

Deutsche Version

Example: Multiple parallel processes in a job chain

Specification:

  • The job chain is to start with a job named "with the name truncate_export_table".
  • After this job has been completed four jobs named "with the name table partition" are to be run in parallel.
  • A single job that indexes the new partition tables is then to run.
  • Finally, a further four jobs that test the individual partition tables are to start in parallel.
    This job chain is shown schematically in the diagram in the "Diamond" section  section below.

Writing the job chain

...

  1. A "splitter" job has to be included for each "series" of job nodes that are to be processed in parallel. The splitter generates an order for each series of parallel job nodes starts these orders as soon as it itself has been started.
  2. In order to do this the splitter job has to "know" the names of the states corresponding to the first node of each job node series. These names are specified in the splitter job's state_names parameter (see How to set and read job , and order and node parameters).
  3. The parallel processing normally ends at a specific node in the the chain with processing then continuing serially. This node is the synchronisation node and is implemented using the Sync-Job.

Anchor
#diamond_diagram
#diamond_diagram
The "

...

diamond" job chain structure

The example job chain will look like this (the diagram has been generated with the Sandbox JOE Version, which is planned to be released with JobScheduler version 1.7):

We refer to the pattern that results with in this type of job chain as a "diamond" pattern. Such patterns can occur more than once in a job chain: both sequentially, as shown in the diagram above, in parallel and nested. They can also be combined with other job chain patterns such as emerald or cross-over patterns (see Example showing the synchronization of multiple job chains).

...

The next illustration shows a list view of the job chain as produced created by JOE:

The "Splitter" job

A generic splitter job is delivered with the JobScheduler JITL jobs. This job can be found in the "./live/sos/jitl" directory.

We recommend that the following syntax is used for the names of job nodes that are to be processed in parallel:

"node name of the splitter job" ":" "job name". For example split_partitions:export_table_partition_1 (see Best Practice - Parallel nodes).

Splitter job parameters

See documentation of the JobChainSplitter job.

...

  • The splitter job state_names parameter is used to specify the node names of the jobs that are to be first started in parallel (see How to set and read job , and order and node parameters).
  • The node names are to be seperated by semi-colons.
  • In jobs chains with this diamond pattern structure, the parameters are specified for the job chain and referred to as node parameters. Node parameters can be used to specify parameters for more than one splitter in a job chain, independently of one another, as in our example, without creating conflicts.

...

For more information see the documentation for the JobSchedulerSynchronizeJobChains job.

Related Downloads

...

See also

Downloads

You can download the example described in this FAQ : insert_to_export_table_parallel.zip.