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

Re: [Condor-users] Dynamic provisioning prevents Evenly Divided Resources tasks?



Hi Edier:

On Tue, 2011-08-02 at 12:29 -0500, Edier Zapata wrote:
> 
> And it is running in the not dynamic slots and in the Dynamic, how can I
> prevent Dynamic jobs to run in Evenly slots?
> 
> Thanks.
> 

There may be a better way, but typically I stick an additional AND-ed
expression on the job requirements:

(PartitionableSlot =?= TRUE || DynamicSlot =?= TRUE)

So, an example of complete job requirements might look like:

Requirements = (Arch == "INTEL" || Arch == "X86_64") && (OpSys == "OSX"
|| OpSys == "LINUX") && (PartitionableSlot =?= TRUE || DynamicSlot =?=
TRUE)

Cheers,
David