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

Re: [Condor-users] Need help with 7.0.1



> Requirements = ((Machine == "SYCAMORE.ad.water.ca.gov")) && 
> (Arch == "INTEL") && (OpSys == "WINNT51") && (Disk >= 
> DiskUsage) && ((Memory * 1024) >= ImageSize) && (HasFileTransfer)
> 
> $ condor_status -constraint 'Machine == "SYCAMORE.ad.water.ca.gov"'
> 
> Name               OpSys      Arch   State     Activity LoadAv Mem
> ActvtyTime
> 
> slot1@xxxxxxxxxxxx WINNT51    INTEL  Unclaimed Idle     0.000   767
> 0+01:10:38
> slot2@xxxxxxxxxxxx WINNT51    INTEL  Unclaimed Idle     0.000   767
> 0+13:33:23
> slot3@xxxxxxxxxxxx WINNT51    INTEL  Unclaimed Idle     0.000   767
> 0+09:33:19
> slot4@xxxxxxxxxxxx WINNT51    INTEL  Unclaimed Idle     0.000   767
> 0+01:33:08

Here's how you can narrow it down to figure out which of the constraints
is preventing your jobs from running.

* Check that (Memory * 1024) on Sycamore is >= ImageSize for the
processes in cluster 722:

	> condor_status -constraint 'Machine ==
"SYCAMORE.ad.water.ca.gov" && (Memory * 1024) > [number]'

	Where [number] is the integer ImageSize value from the
	processes in cluster 722.

* Check that Disk on Sycamore is >= DiskUsage for the processes in
cluster 722:

	> condor_status -constraint 'Machine ==
"SYCAMORE.ad.water.ca.gov" && Disk >= [number]'

	Where [number] is the integer DiskUsage value from the processes
	in cluster 722.

* Check that the machine HasFileTransfer set to True:

	> condor_status -constraint 'Machine ==
"SYCAMORE.ad.water.ca.gov" && HasFileTransfer'

Any or all of those fail?

- Ian


Confidentiality Notice.  This message may contain information that is confidential or otherwise protected from disclosure.
If you are not the intended recipient, you are hereby notified that any use, disclosure, dissemination, distribution, 
or copying of this message, or any attachments, is strictly prohibited.  If you have received this message in error, 
please advise the sender by reply e-mail, and delete the message and any attachments.  Thank you.