Graceful handling of dependent scheduled tasks? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:29:18Z http://stackoverflow.com/feeds/question/179113 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/179113/graceful-handling-of-dependent-scheduled-tasks 0 Graceful handling of dependent scheduled tasks? Teflon Ted 2008-10-07T15:42:44Z 2008-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#179118 2 Answer by warren for Graceful handling of dependent scheduled tasks? warren 2008-10-07T15:44:07Z 2008-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 &amp;&amp; B </code></pre> http://stackoverflow.com/questions/179113/graceful-handling-of-dependent-scheduled-tasks/179124#179124 1 Answer by Craig Walker for Graceful handling of dependent scheduled tasks? Craig Walker 2008-10-07T15:45:06Z 2008-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>