Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Modify job requirements of an Idle job
- Date: Fri, 27 Oct 2006 07:39:19 -0400
- From: "Ian Chesal" <ICHESAL@xxxxxxxxxx>
- Subject: Re: [Condor-users] Modify job requirements of an Idle job
> ( target.Arch == "INTEL" ) && ( target.OpSys == "LINUX" ) &&
> ( ( CkptArch == target.Arch ) || ( CkptArch is undefined ) )
> && ( ( CkptOpSys == target.OpSys ) || ( CkptOpSys is
> undefined ) ) && ( target.Disk >= DiskUsage ) && ( (
> target.Memory * 1024 ) >= ImageSize )
>
> Condition Machines Matched Suggestion
> --------- ---------------- ----------
> 1 ( ( 1024 * target.Memory ) >= 939996 )0 REMOVE
> 2 ( target.Arch == "INTEL" ) 165
> 3 ( target.OpSys == "LINUX" ) 165
> 4 ( ( "INTEL" == target.Arch ) ) 165
> 5 ( ( "LINUX" == target.OpSys ) ) 165
> 6 ( target.Disk >= 12215 ) 165
>
> Is there a way to remove the requirement "( target.Memory *
> 1024 ) >= ImageSize" for these jobs (with a command like
> condor_alter or something like that) and without deleting and
> submitting the job again ?
Try condor_qedit:
http://www.cs.wisc.edu/condor/manual/v6.8.2/condor_qedit.html#54448
Something like:
condor_qedit -constraint "ImageSize > 939996" ImageSize 100000
- Ian