Description:
I have to create a job that executes x # of tasks. Let's say 10. These tasks combined are going to take 10-12 hours.
Scenario:
Task #4 crashes. I manually fix the underlying bug for task #4 and want to rerun the job starting from task #4 (because running this job takes long enough as is), but I want 4 through 10 to run automatically at this point - instead of having to individually/manually select each task to run after their respective completion.
I have tried to write out a file at the completion of each task. But, if you check for the existence of said files as a condition for each task - you can only select one condition, not 2 - which would simulate if statement logic. If file exists - run next task. If doesn't exist - run current task.
There must be a way to execute a job starting from a task other than the first.
Thanks,
Matt
Edited by user
2008-09-29T21:40:32Z
|
Reason: Not specified