I'm using Condor to run many jobs, and I want to make sure that jobs don't run for more than a fixed amount of time, say 2 hours. Is there a way to specify in the Condor submission script that the job should be killed and marked as failed after this time limit?

link|improve this question

66% accept rate
feedback

1 Answer

periodic_remove = (CommittedTime - CommittedSuspensionTime) > 7200

should do the trick. This would only work in the latest stable version. With the previous one you can get similar (though not the same) effect with:

periodic_remove = (RemoteWallClockTime - CumulativeSuspensionTime) > 60

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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