[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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