Reputation: 143
I'm trying to do such scheduling:
So the questions are:
I tried to do this, but has no results:
date_condition: 1
start_times: "7:00, 8:00"
condition: s(JOB_A)
Upvotes: 1
Views: 31059
Reputation: 11885
You can schedule JOB_B to run only on Fridays, have it start at the same time as JOB_A, and make it dependent on JOB_A. This way, Autosys will start it at e.g. 07:00, check its conditions, and see that JOB_A is still running, causing JOB_B to wait for JOB_A to finish.
Assuming JOB_A is already set up and running at 07:00, JOB_B would need to be configured like this:
date_conditions: 1
days_of_week: fr
start_times: "07:00"
condition: s(JOB_A)
Upvotes: 4