Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Dynamic provisioning prevents Evenly Divided Resources tasks?
- Date: Tue, 02 Aug 2011 13:39:57 -0400
- From: "David J. Herzfeld" <herzfeldd@xxxxxxxxx>
- Subject: 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