Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] unclaimed/owner status
- Date: Thu, 10 Sep 2009 15:13:03 +0100
- From: Alan Woodland <alan.woodland@xxxxxxxxx>
- Subject: Re: [Condor-users] unclaimed/owner status
2009/9/10 Matthew Farrellee <matt@xxxxxxxxxx>:
> Alan Woodland wrote:
>> 2009/9/10 Jeremy Villalobos <jeremyvillalobos@xxxxxxxxx>:
>>> Hello:
>>>
>>> I have a 16 core system, and all the cores appear as Owner. I would like
>>> for the syste to show all of them, or 15 of them as unclaimed. where is
>>> this option in the configuration
>>>
>>
>> START = ( (VirtualMachineID == 1) && (false) ) || true
>>
>> should do the trick.
>>
>> Alan
>
> VirtualMachineID is very much deprecated and should not be used if you're running a version of Condor from the past few years, use SlotID.
I pulled it from a config file that was written quite some time ago :)
>
> Btw, START = blah || TRUE ...
>
That'll teach me to blindly make changes without thinking it through properly:
START = ( (SlotID == 1) && (FALSE) ) || ( (SlotID =!= 1) && (TRUE) )
Might make more sense! (In the config I pulled it from I just had a
test for VirtualMachineID == 2)
of course that would simplify to just:
START = (SlotID =!= 1)
Alan