Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Maximum running time for jobs
- Date: Thu, 12 Apr 2007 16:42:03 -0400
- From: "Ian Chesal" <ICHESAL@xxxxxxxxxx>
- Subject: Re: [Condor-users] Maximum running time for jobs
You can use:
SYSTEM_PERIODIC_REMOVE = ((JobStatus == 2) && ((CurrentTime -
EnteredCurrentStatus) > 123456789))
Where 123456789 is the maximum run time you want a job execute for in
seconds. The JobStatus part makes certain it only removes jobs that are
currently running.
This works for in my 6.8.x system.
- Ian