Thank you Stefano, I meant LeaveJobInQueue, not OnExitRemove.
-tj
From: HTCondor-users <htcondor-users-bounces@xxxxxxxxxxx> on behalf of Stefano Belforte <stefano.belforte@xxxxxxx>
Sent: Friday, October 11, 2024 9:25 AM To: John M Knoeller via HTCondor-users <htcondor-users@xxxxxxxxxxx> Subject: Re: [HTCondor-users] JOB_IS_FINISHED_* config options not removing jobs with delay Hi TJ Maybe you meant OnExitHold ? Simply toggling OnExitRemoveto to False will set it to Idle again and make it run again (IIUC the doc). As an additional data point, we are using LeaveJobInQueue to keep jobs in the queue (and hence visible via condor_q) for some time w/o changing the job status, e.g.
LeaveJobInQueue = ifThenElse((JobStatus=?=4 || JobStatus=?=3) && (time() - EnteredCurrentStatus < 30 * 60*60), true, false)
Of course that needs to be done in the jobs submission, it is not a schedd config. Maybe Mary wants something that can be enforced in the schedd w/o users action ? A JobTransform ?
Stefano
On 11/10/2024 16:02, John M Knoeller via HTCondor-users wrote:
|