Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [HTCondor-users] unix scheduling priority
- Date: Mon, 22 Feb 2021 10:02:56 -0600
- From: Greg Thain <gthain@xxxxxxxxxxx>
- Subject: Re: [HTCondor-users] unix scheduling priority
On 2/22/21 9:55 AM, rmorgan466@xxxxxxxxx wrote:
Is it possible to run a particular command with with lowest Unix (nice
19) ?
Yes -- the starter configuration knob
JOB_RENICE_INCREMENT
sets the Unix nice value for HTCondor jobs on that machine. You can set
this to a static value, like
JOB_RENICE_INCREMENT = 19
or, it can be a classad expression, like
JOB_RENICE_INCREMENT = Owner == "todd" ? 19 : 0
-greg