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

Re: [HTCondor-users] Absent node still active



On 7/16/2020 1:39 PM, Todd Tannenbaum wrote:
2. It seems bizarre to have absent ads for each slot, esp when your startd is configured for partitionable slots. Perhaps instead of configuring

 ABSENT_REQUIREMENTS = True

you may prefer to say something like

 ABSENT_REQUIREMENTS = SlotID == 1


A correction to my above ABSENT_REQUIREMENTS suggestion:

Since dynamic slots will share the same SlotID as their parent partitionable slot, the following would be a better ABSENT_REQUIREMENTS setting in order to get just one ad per machine (regardless of partitionable or static slots):

 ABSENT_REQUIREMENTS = SlotId==1 && SlotType=!="Dynamic"

Hope the above helps,
Todd