james007
james007

Reputation: 741

Autosys R11 Job Scheduling with delay

I have a BOX_A which have JOB_A and BOX_AB. Once BOX_A is started, i want to start BOX_AB, after 30 sec only when JOB_A is success.

BOX_A
     - JOB_A
     - BOX_AB
             - JOB_AB1
             - JOB_AB2

We can use the condition to find JOB_A's success but how to start after 30 sec's once JOB_A's success.

JOB's in BOX_AB depends on JOB_A bootup. So need a delay before the BOX_AB's jobs starts up.

Upvotes: 1

Views: 5021

Answers (2)

sanky10987
sanky10987

Reputation: 43

I am not sure how exactly you can add 30 seconds delay but you can add delay in terms of minutes, something like this: SUCCESS(job_A, 00.05)

Format is: SUCCESS(jobname, hh.mm) or S(jobname, hh.mm) You can also refer my answer in the post here

Upvotes: 2

Jack Kada
Jack Kada

Reputation: 25262

Your best bet would be to create a process which simply slept and added that as a dependency

Upvotes: 1

Related Questions