Graceful handling of dependent scheduled tasks? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:29:18Zhttp://stackoverflow.com/feeds/question/179113http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179113/graceful-handling-of-dependent-scheduled-tasks0Graceful handling of dependent scheduled tasks?Teflon Ted2008-10-07T15:42:44Z2008-10-07T15:45:06Z
<p>Say I've got two scheduled processes: A and B.</p>
<p>Given that B should not run until A has completed, how might I gracefully enforce this dependency?</p>
<p>Approaches that have been considered:</p>
<ol>
<li><p>Have A schedule B upon completion. This has the downside of B never being scheduled if for some reason A failed.</p></li>
<li><p>When B runs, have it ping A to see if the latter has completed. How this might be accomplished (network, file, database record, message queue) could be messy and problematic introducing a third dependency.</p></li>
<li><p>Combine A and B into a single process. This has the downside of tightly binding the two, making it harder to re-run one or the other in isolation if need be.</p></li>
</ol>
<p>Thoughts?</p>
http://stackoverflow.com/questions/179113/graceful-handling-of-dependent-scheduled-tasks/179118#1791182Answer by warren for Graceful handling of dependent scheduled tasks?warren2008-10-07T15:44:07Z2008-10-07T15:44:07Z<p>Your option 1 directly answers your question: if B is dependent on A, and A fails, A not scheduling B means that B can't happen.</p>
<p>Unless B merely has to run after A does, whether or not A was successful.</p>
<p>In that case, something like the following (in bash) would work:</p>
<pre><code>A && B
</code></pre>
http://stackoverflow.com/questions/179113/graceful-handling-of-dependent-scheduled-tasks/179124#1791241Answer by Craig Walker for Graceful handling of dependent scheduled tasks?Craig Walker2008-10-07T15:45:06Z2008-10-07T15:45:06Z<p>You could modify step 3: Create your two processes to run in isolation, and then create a third process that runs the other two.</p>