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

[Condor-users] Even though requirements seem correct, condor rejects jobs.



Dear all,

I have been using condor for a while.
I added new computers to our pool whose have "WINDOWS" as OpSys and INTEL as Arch and 503 as Mem.
I designed requirements in my submit files as: 

requirements = OpSys == "WINDOWS" && Arch == "INTEL"

However, what I see by calling condor_q -better -analyze is:

4099.000:  Run analysis summary.  Of 80 machines,
     29 are rejected by your job's requirements 
     37 reject your job because of their own requirements 
      0 match but are serving users with a better priority in the pool 
     14 match but reject the job for unknown reasons 
      0 match but will not currently preempt their existing job 
      0 match but are currently offline 
      0 are available to run your job
No successful match recorded.
Last failed match: Fri May 18 16:57:05 2012
Reason for last match failure: no match found

The Requirements _expression_ for your job is:

( target.OpSys == "WINDOWS" && target.Arch == "INTEL" ) &&
( TARGET.Disk >= DiskUsage ) && ( ( TARGET.Memory * 1024 ) >= ImageSize ) &&
( ( RequestMemory * 1024 ) >= ImageSize ) && ( TARGET.HasFileTransfer )

    Condition                         Machines Matched    Suggestion
    ---------                         ----------------    ----------
1   .RIGHT.OpSys == "WINDOWS"         53                   
2   .RIGHT.Arch == "INTEL"            60                   
3   ( .RIGHT.Disk >= 12500 )          80                   
4   ( ( 1024 * .RIGHT.Memory ) >= 3000 )80                   
5   ( ( 1024 * ceiling(ifThenElse(JobVMMemory isnt undefined,JobVMMemory,2.929687500000000E+000)) ) >= 3000 )
                                      80                   
6   ( .RIGHT.HasFileTransfer )        80                   

The following attributes are missing from the job ClassAd:

CheckpointPlatform

Can anyone tell me why I get this error? Is it related to memory?

Thanks in advance,
Canan Has