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

Re: [Condor-users] Tracing why nodes reject jobs?



On Thu, Jul 15, 2010 at 11:16:02AM -0500, David Kotz wrote:
:Jon,
:
:Have you tried using -better-analyze, rather than -analyze?  It will
:give more details.  It certainly doesn't always answer my questions, but
:it often does.

yes, the "better' part in this case isn't any better, well I din't
think so, but for completeness here it is:

The Requirements expression for your job is:

( target.Arch == "X86_64" ) && ( 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   ( target.Arch == "X86_64" )       410                  
	2   ( ( "X86_64" == target.Arch ) )   410                  
	3   ( target.OpSys == "LINUX" )       429                  
	4   ( ( "LINUX" == target.OpSys ) )   429                  
	5   ( target.Disk >= 7500 )           429                  
	6   ( ( 1024 * target.Memory ) >= 10000 )429                  
	
	The following attributes are missing from the job ClassAd:
	
	CheckpointPlatform
	JobVMType
	RequiresWholeMachine
	Slot1_RequiresWholeMachine
	
Thanks,
-Jon