RE: how we can create job sequencer in abinitio i.e ru...
in Abinito it is not possible to create the job sequence. But scheduling of the jobs can be done with the help of scheduling tool called CONTROL M .In this tool graph corresponding scripts and wrapper scripts are placed as per the sequence of exec and we can monitor the execution of the graphs.
RE: how we can create job sequencer in abinitio i.e running number of graphs at atime
Say there are 10 jobs 1 2 3 4 5 .. 10 and all the graphs are deployed as script. Suppose 1-4 graps should run at the same time and sequential pattern after that.
These are steps u may get into --
1. Create a script in unix that is required for sequential run viz.
seq_2_run.sh would call the scripts generated by deployment of the graphs in the following manner -
a. Take five script execute components b. Call the 1.ksh 2.ksh 3.ksh and 4.ksh in four script execute components and keep them all in the same phase say phase 0. c. Call the seq_2_run.sh in four script execute components and assign it as phase 2.
3. Run the graph.
Output :
1-4 would run at the same time and seqential pattern after the completion of the prior.
Every lock has a key !!! :) Abhisek .. fresh as dew
RE: how we can create job sequencer in abinitio i.e running number of graphs at atime
A job sequencer ie. running a number of graphs at a time and deciding the sequence of the graphs execution can be achieved through the concept of using a CONFIG file. In a config file (configuration file) the sequence of call of the .ksh script is given as well as whether a particular script will run in serial (independantly) or in parallel with other graphs (multiple graphs running at same time). Hence executing the config file solves our purpose.