Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Condor Call back mechanism
- Date: Fri, 1 Jun 2007 09:54:55 -0400
- From: "Ian Chesal" <ICHESAL@xxxxxxxxxx>
- Subject: Re: [Condor-users] Condor Call back mechanism
> Several solution 'fragments'
I'll add to this: have your jobs remain in the queue after they're
complete (see:
http://www.cs.wisc.edu/condor/manual/v6.8/condor_submit.html#55420) by
adding to your submit ticket:
leave_in_queue = true
Periodically scan your queue with:
foreach $job (condor_q -const 'JobStatus == 4') {
do something
condor_rm $job
}
- Ian