When running top note the value of PR vs NI:
PR:
The priority number is calculated by the kernel and is used to determine the order in which processes are schedule. The kernel takes many factors in to consideration when calculating this number, and it is not unusual to see large fluctuations in this number over the lifetime of a process.
NI:
This column reflects the "nice" setting of each process. A process's nice is inhereted from its parent. Most user processes run at a nice of 0, indicating normal priority. Users have the option of starting a process with a positive nice value to allow the system to reduce the priority given to that process. This is normally done for long-running cpu-bound jobs to keep them from interfering with interactive processes. The Unix command "nice" controls setting this value. Only root can set a nice value lower than the current value. Nice values can be negative. On most systems they range from -20 to 20. The nice value influences the priority value calculated by the Unix scheduler.
To see these values in action I'll start two CPU intensive processes:
someguy@machine:~$ dd if=/dev/urandom of=/dev/null & [1] 31406 someguy@machine:~$ dd if=/dev/urandom of=/dev/null & [2] 31415 someguy@machine:~$
I see them both at the top of the stack:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31406 someguy 25 0 9200 772 620 R 100 0.0 3:48.62 dd 31415 someguy 25 0 9204 772 620 R 100 0.0 3:28.74 dd
Note their priority of 25 and their nice value, let's see how they change as we renice them.
Remember, the nicer a program the lower it's priority. The less nice a program the higher it's priority. For exmple:
- Nice value of 19 is letting people walk on you
- Nice value of 5 is holding the door
- Nice value of -20 is pushing people out of the way
You can nice a program when you start it:
nice -n -10 xmmsIf it's already running:
renice 19 -p $pidIn this case I'll move one way up and one way down:
lower 406: renice 19 -p 31406
raise 415: renice -19 -p 31415
The results of the first:
someguy@machine:~$ renice 19 -p 31406 31406: old priority 0, new priority 19 someguy@machine:~$ PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31415 someguy 25 0 9204 772 620 R 100 0.0 6:50.54 dd 31406 someguy 39 19 9200 772 620 R 100 0.0 7:10.48 dd
So, it's priority went higher and the higher nice value shows. So, even the PR numbers are inversely proportional to nice numbers. Now, I raise the other:
someguy@machine:~$ sudo renice -19 -p 31415 Password: 31415: old priority 0, new priority -19 someguy@machine:~$ PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31406 someguy 39 19 9200 772 620 R 100 0.0 8:46.89 dd 31415 someguy 6 -19 9204 772 620 R 100 0.0 8:26.92 ddSo, I've raised the priority of the first. I could maximize it:
someguy@machine:~$ sudo renice -20 -p 31415 31415: old priority -19, new priority -20 someguy@machine:~$ PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31406 someguy 39 19 9200 772 620 R 100 0.0 17:00.51 dd 31415 someguy 5 -20 9204 772 620 R 100 0.0 16:41.13 dd
Note that I still can't get it past 5 with the lowest possible nice value. Note also that these are the two most CPU intensive processes so they both take the top of the stack, even with the most extreme nice values. If I had a third it should be sandwiched between the two.
someguy@machine:~$ dd if=/dev/urandom of=/dev/null & [1] 32089 someguy@machine:~$ PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 32089 someguy 25 0 9200 768 620 R 100 0.0 0:21.44 dd 31415 someguy 5 -20 9204 772 620 R 100 0.0 18:29.59 dd 31406 someguy 39 19 9200 772 620 R 100 0.0 18:48.88 dd
Now it's scheduling them round robin.
15, 6, 89 :: 15, 89, 6 :: 6, 89, 15 :: 89, 6, 15 :: 6, 15, 89
But 15 is on top 2/3 of the time. Interesting. It still letting the other jobs at the resources.
Now, I'll start a fourth CPU hog with a nice value from the start:
someguy@machine:~$ sudo nice -n -20 dd if=/dev/urandom of=/dev/null & [2] 32288 someguy@machine:~$
I predict that 88 and 15 will stay on top most of the time. Note that it was started with a higher nice value which required sudo so it's running as root:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31415 someguy 5 -20 9204 772 620 R 100 0.0 30:48.50 dd 32288 root 5 -20 9200 772 620 R 100 0.0 4:59.89 dd 31406 someguy 39 19 9200 772 620 R 99 0.0 31:05.53 dd 32089 someguy 25 0 9200 768 620 R 99 0.0 12:39.09 dd
Now I'll kill 88 and 15. Then let's try raising the importance of 6 and introducting a new process with a priority just below it:
renice -20 -p 31406 && nice -n -19 dd if=/dev/urandom of=/dev/null & someguy@machine:~$ sudo su - root@machine:~# renice -20 -p 31406 && nice -n -19 dd if=/dev/urandom of=/dev/null & [1] 32656 root@machine:~# 31406: old priority 19, new priority -20 root@machine:~#
top shows:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 31406 someguy 5 -20 9200 772 620 R 100 0.0 39:28.19 dd 32089 someguy 25 0 9200 768 620 R 100 0.0 21:02.10 dd 32658 root 6 -19 9200 768 620 R 100 0.0 0:22.50 dd
Wasn't that fun?
Remember when running top that you can see how all of the CPUs are working by pressing 1.
No comments:
Post a Comment