long time cron job via wget/curl ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:12:03Zhttp://stackoverflow.com/feeds/question/844831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/844831/long-time-cron-job-via-wget-curl1long time cron job via wget/curl ?shuxer2009-05-10T06:36:45Z2009-05-10T09:35:56Z
<p>Hi All</p>
<p>I am working on cron jobs for my php app and planning to use cron via wget/curl.
Some of my php cron jobs can take 2-3 hours. How to let php work 2-3 hours from cron tab ? Is it good practice to run such long time jobs via cron wget/curl ? Anyone got experience on this ? I also have email queue and i needs to be run every 10 seconds, but cron tab is minute level. Any suggest on this case ? </p>
<p>Thanks for reading.</p>
http://stackoverflow.com/questions/844831/long-time-cron-job-via-wget-curl/844840#8448403Answer by Thej for long time cron job via wget/curl ?Thej2009-05-10T06:44:55Z2009-05-10T06:44:55Z<p>When you use wget/curl, you are requesting for a page from a webserver. Every webserver will have a time out period, so this might time out. </p>
<p>Also some of the hosting providers may stop the process running beyond certain minutes ( basically done to control the rogue threads).</p>
<p>So it is not advisable to schedule using wget/curl if the job takes more than few minutes.</p>
<p>Try scheduling it using actual scheduler. You can run php from command line</p>
<blockquote>
<p>php [options] [-f] [--]
[args...]</p>
</blockquote>
<p>php command should be on the path.</p>
http://stackoverflow.com/questions/844831/long-time-cron-job-via-wget-curl/845010#8450100Answer by Ciaran McNulty for long time cron job via wget/curl ?Ciaran McNulty2009-05-10T09:35:56Z2009-05-10T09:35:56Z<p>You can use the following at the start of your script to tell PHP to effectively never time out:</p>
<pre><code>set_time_limit(0);
</code></pre>
<p>What may be wiser is, if crontab is going to run the script every 24 hours, set the timeout to 24 hours so that you don't get two copies running at the same time.</p>
<pre><code>set_time_limit(24*60*60);
</code></pre>
<p>Crontab only allows minute-level execution because, that's the most often you should really be launching a script - there are startup/shutdown costs that make more rapid scheduling inefficient. </p>
<p>If your application requires a queue to be checked every 10 seconds a better strategy might be to have a single long-running script that does that checking and uses sleep() occasionally to stop itself from hogging system resources.</p>
<p>On a UNIX system such a script should really run as a daemon - have a look at the PEAR <a href="http://pear.php.net/package/System%5FDaemon" rel="nofollow">System_Daemon</a> package to see how that can be accomplished simply. </p>