I'm trying to get three cron jobs to run incrementally throughout the day. I use contab to schedule some jobs on my linux server.
Goals:
- I don't want the jobs to run at the same time as each other
- I want the jobs to run ever 16 minutes (or 17 or 18 - see below). I'm trying to avoid having the jobs all running at the same time ever hour and especially I don't want them to run at the top of the hour, every hour. It's ok if the jobs rotate into the top of the hour once in awhile.
Problem is that the jobs all run seem to start at the top of the hour and rotate, but start over at the top of hour,, because I guess I have not scheduled the cron correctly.
To achieve what you want you should not specify the starting minute as an asterisk.
Specify the desired minute plus the interval instead, like
3/18 * * * *
7/17 * * * *
11/16 * * * *
The first job will run at 3/21/39/57 minutes past the hour
The second job will run at 7/24/41/58.minutes past the hour
The third job will run at 11/27/43/59 minutes past the hour
>> avoid having the jobs all running at the same time ever hour <<
This will unfortunately not be possible with cron alone.
You could add some scatter by specifying a random sleep interval at the top of your scripts, let's say something between 0 and 5 minutes:
This link may be useful: http://stackoverflow.com/questions/8181949/how-do-set-cron-to-run-my-script-every-40mins-25mins
In essense, you will need to set up multiple cron entries, for example, for the same job. The job that needs to be run every 16 minutes will have 4 cron jobs - the first one, RPOnlinePurge, can be scheduled to run at 1st, 17th, 33rd and 49th minutes of hour 1, 5, 9, 13. The same job again can be scheduled to run at 5th, 21st,37th,53rd minutes of hours 2,6,10,14,18,22 and so on.
Something like this:
1,17,33,49 1,5,9,13,17,21 * * * your-command-for-RPOnlinePurge
05,21,37,53 2,6,10,14,18,22 * * * your-command-for-RPOnlinePurge
....
....
0
Question has a verified solution.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Are you ready to take your data science career to the next step, or break into data science? With Springboard’s Data Science Career Track, you’ll master data science topics, have personalized career guidance, weekly calls with a data science expert, and a job guarantee.
while true
do
command1
command2
sleep 600
done
the above script will run for ever and as yo can see will sleep for 600 seconds (10 min)