vote up 0 vote down star

I am plannning to use whenever gem which among other things will also run minutely rake task. If my rake task takes more than a minute then based on the output from whenever gem it seems like the second instance of the rake task will kick-in even though the first one is not quite finished.

Will whenever gem will wait for the miutely task to finish before starting the second one?

If not then what are the workarounds. I believe this question is better served in serverfault still I am putting it here.

flag

70% accept rate

2 Answers

vote up 0 vote down check

whenever just writes cronjobs, and makes no effort to stop them overrunning themselves. This is the job of the task that is being run.

Use PID files, or file system locks to prevent the task running over the top of itself.

link|flag
vote up 0 vote down

In my scheduled application, I scan the process list looking for other instances of my application running with the same configuration file on the command line - then exit with a logged note if a process is already running with the same configuration file.

That keeps the program from stepping on itself ...

PID files or some type of "locking" file are prone to problems when the process exits but the lock file still exists.

Ron

link|flag
There is a difference between a locking file and a file lock (apidock.com/ruby/File/flock). – cwninja Oct 31 at 17:17
Yes, but that doesn't change the logic flaw - you are still testing if the process is running "indirectly" by checking if a file is locked. I check "directly" by scanning the process list, including command line arguments - it's simpler and more flexible. – Ron Savage Oct 31 at 22:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.