A tool to change the priority of a process, giving it more or less CPU time.
Questions tagged [nice]
47 questions
3
votes
1 answer
Changing priorities of background vs foreground processes?
The commends nice/renice have no effect between processes started as foreground process and processes started as background processes. Even with maximum niceness on the foreground processes they get always more attention. While this makes a lot of…

Peter B.
- 189
- 1
- 7
3
votes
1 answer
Running Hudson builds with a lower process priority
At my office we have an older server running Hudson (1.395) and a collection of other things (JIRA and SVN being the important two). When Husdon is running builds, the slowdown on the server is very noticeable.
I've been trying to find a way to…

MBCook
- 165
- 1
- 6
3
votes
1 answer
How "nice" determines amount of cpu resource to give
Is there a particular formula to calculate the amount of cpu resources that is allocated for a process when you "nice" it?

Flint
- 631
- 5
- 10
- 18
3
votes
3 answers
nice renice and ionice
I've read about nice renice and ionice to control the scheduling priority of running processes. However, I still don't understand when and how are they useful for. For instance doing something like:
nice -n 13 pico myfile.txt

Jeffrey Darrow
- 33
- 1
- 3
2
votes
3 answers
How to run docker build at lower priority?
I often have to re-build Docker images, and I do that inside the host I run my containers in. Occasionally I see that this puts considerable pressure on the CPU, so I thought I could run docker build under nice -n19, but this seems to make no…

Morpheu5
- 259
- 4
- 18
2
votes
0 answers
rsync: Maximum nice to keep system responsive
Unfortunately a background rsync reduces the responsiveness of a server.
I search a way to have maximum niceness for this background task, to keep the server respond fast.
My current wrapper commands are this:
nice -n19 ionice -c3 nocache
Source:…

guettli
- 3,591
- 17
- 72
- 123
2
votes
1 answer
Automatic CPU load balancing for program or program group under Linux?
assume the following setup: system (Ubuntu 14.04 LTS) with 40 cores, lots of RAM. Additionally a program which is only partly multithreaded. That is, it constantly switches between running on multiple cores for hours and then on only one core (also…

BaCh
- 121
- 1
2
votes
2 answers
getting an application to run with the same priority as cpu idle
I have a solaris server that needs to run a timecritical application as fast as possible, although setting it to the RT priority class doesnt seem like a good idea since it may need 100 CPU for prolonged periods.
I would like to use the idle cpu…

camelccc
- 255
- 1
- 15
2
votes
1 answer
slow down processes (cpu usage)
I found out that an imagemagick/convert application on my VPS is causing troubles due to high load on my box. Now i added renice with priority 10 to all of these convert-processes for throttling each minute.
However, I am not sure if it really slows…

ledy
- 565
- 1
- 6
- 15
2
votes
1 answer
nice cpu usage showing, but process wasn't explicitly run with nice
About 25% of my CPU usage is attributed to "nice" which is all coming from one process.
The process in question was not started with nice(1) nor was it adjusted with renice(1) -- at least not manually.
OS is Debian Squeeze. How can I find out what…

tryin2bsecure
- 43
- 1
- 5
2
votes
2 answers
ionice process group?
Is there an easy way to change the I/O priority of a whole group of processes the way renice -g does? It seems like only changing the I/O priority of a single process is supported by ionice. If this can't be done, can someone please point me to…

dsimcha
- 681
- 1
- 7
- 12
1
vote
2 answers
processes running nice +20 still make the system sluggish
if i have a process that i wish to run in the background on all cores, it can make the system extremely sluggish, even running at nice +20. Running out of memory or io is not the issue. Is there any easy way of reducing the cpu priority below this,…

camelccc
- 255
- 1
- 15
1
vote
2 answers
Why is CPU usage somewhat "nicer" today than yesterday?
First post here from an eager learner more educated with front end. Please consider the following munin graph:
Considering the general traffic the site on this box got today was the "same" as yesterday, and it was doing the "same" work, why was the…

mayersdesign
- 136
- 1
- 1
- 9
1
vote
1 answer
Get NewRelic to respect ionice'd processes
On our web server, we perform an incremental backup of our files every 4 hours using rsnapshot. To perform the actual copying of files, I've configured it to use a custom script, cp-nice that has the following contents:
nice -n19 ionice -c3 cp…

rinogo
- 329
- 4
- 14
1
vote
1 answer
How to configure the niceness or priority of service started on boot
I want to increase the niceness of an service (decrease the CPU priority) started as an dedicated user or group during the boot process. I'm not able to define the niceness or priority in the /etc/security/limits.conf or ./limits.d/ directory for…

devnox
- 11
- 1
- 2