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

[Condor-users] Modify job requirements of an Idle job



Hi all,

I have many jobs of my Condor pool staying in Idle status due to memory jobs requirements problem.
condor_q -better-analyse produces the following informations :

The Requirements expression for your job is:

( 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 ?

Thanks in advance for your help.

Yann