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

Re: [Condor-users] Why does machine reject job for unknown reasons





On 5/15/07, Alexander Dietz <Alexander.Dietz@xxxxxxxxxxxxxx> wrote:
Lets double check to make sure your constraints do indeed match some machines. Try:

condor_status -const ' ( Arch == "X86_64" ) && ( OpSys == "LINUX" ) && ( ( CkptArch == "X86_64" ) || ( CkptArch is undefined ) ) && ( ( CkptOpSys == "LINUX" ) || ( CkptOpSys is undefined ) ) && ( Disk >= 10000 ) && ( ( Memory * 1024 ) >= 10000 )'


Hmm I do not get any output. Does it means none of the machine matches?

Sorry. That's my fault. "is undefined" and the math stuff won't work in a constraint tag. Although Steffen pointed out that you mentioned your pool was 152 big so that means you're matching just about every machine. Still, you can try:

condor_status -const ' ( Arch == "X86_64" ) && ( OpSys == "LINUX" ) && ( CkptArch == "X86_64" ) && ( CkptOpSys == "LINUX" ) && ( Disk >= 10000 ) && ( Memory >= 9 )'

- Ian