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

[HTCondor-users] Idle processes and TARGET.Memory



I am trying to troubleshoot a condor configuration on a multi core system. 16 Cores and 16 GBs of Ram. Currently all my jobs are siting idle with the default configuration. (see below)
slot10@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:05
slot11@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:06
slot12@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:07
slot13@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:08
slot14@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:09
slot15@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:10
slot16@xxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:03
slot1@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Benchmar  0.210  973  
0+00:00:04
slot2@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:05
slot3@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:06
slot4@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:07
slot5@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:08
slot6@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:09
slot7@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:10
slot8@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:03
slot9@xxxxxxxxxxxx LINUX      X86_64 Unclaimed Idle      0.000  973  
0+00:00:04

Output from condor_q -analyze

	Last successful match: Tue Nov 12 12:21:34 2013
	Last failed match: Tue Nov 12 16:13:08 2013

	Reason for last match failure: no match found

WARNING:  Be advised:
   No resources matched request's constraints

The Requirements expression for your job is:

    ( TARGET.Arch == "X86_64" ) && ( TARGET.OpSys == "LINUX" ) &&
( TARGET.Disk >= RequestDisk ) && ( TARGET.Memory >= RequestMemory ) &&
    ( ( TARGET.HasFileTransfer ) ||
      ( TARGET.FileSystemDomain == MY.FileSystemDomain ) )

Suggestions:

    Condition                         Machines Matched    Suggestion
    ---------                         ----------------    ----------
1   ( TARGET.Memory >= 1465 )         0                   MODIFY TO 973
2   ( TARGET.Arch == "X86_64" )       16
3   ( TARGET.OpSys == "LINUX" )       16
4   ( TARGET.Disk >= 1 )              16
5 ( ( TARGET.HasFileTransfer ) || ( TARGET.FileSystemDomain == "bug13.core.montana.edu" ) )
                                      16


It looks like I need to change the TARGET.Memory first of all but I'm not sure how.
Pete