Does “nice” affect the priority of Java threads

2019-07-10 16:53发布

On a Unix system, you can run a process at lower CPU priority using the nice command:

 nice program

And you could use that to run a JVM process:

 nice java -jar program.jar

The Java program run by that JVM process will start multiple threads.

Does the nice change affect the scheduling of those Java threads? That is, will the Java threads have a lower CPU priority when run as

 nice java -jar program.jar

that when run as

 java -jar program.jar

In general, this will be system dependent, so I am interested in teh Linux case.

3条回答
贼婆χ
2楼-- · 2019-07-10 17:16

Actually...Niceness is a property of the application according to POSIX.1. Here is a more detailed post. is nice() used to change the thread priority or the process priority?

查看更多
别忘想泡老子
3楼-- · 2019-07-10 17:36

According to what ps reports niceness is applied to java threads. I ran this quick test with a java application that waits for user input:

Start process with : nice -n 19 java Main
Output of ps -m -l 20746

F S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY        TIME CMD
0 -  1000 20746 10006  0   -   - - 1739135 -    pts/2      0:00 java Main
0 S  1000     -     -  0  99  19 -     - futex_ -          0:00 -
1 S  1000     -     -  0  99  19 -     - wait_w -          0:00 -
1 S  1000     -     -  0  99  19 -     - futex_ -          0:00 -
1 S  1000     -     -  0  99  19 -     - futex_ -          0:00 -

Start process with : nice -n 15 java Main
Output of ps -m -l 21488

F S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY        TIME CMD
0 -  1000 21488 10006  0   -   - - 1722494 -    pts/2      0:00 java Main
0 S  1000     -     -  0  95  15 -     - futex_ -          0:00 -
1 S  1000     -     -  0  95  15 -     - wait_w -          0:00 -
1 S  1000     -     -  0  95  15 -     - futex_ -          0:00 -
1 S  1000     -     -  0  95  15 -     - futex_ -          0:00 -

The NI column seems to reflect what I passed to nice and the priority changes accordingly too. I got the process ID (20746, 21488) using jps.

Note that running jstack 21488 for example will not give the above information.

I ran the above on Ubuntu 16.04 LTS (64bit)

查看更多
Bombasti
4楼-- · 2019-07-10 17:37

Java is not special. It's just a process, and the OS sets its "niceness" the same way as with any other process.

On Linux, Java threads are implemented using native threads, so again, "niceness" is subject to OS controls in the same way as any other native thread.

查看更多
登录 后发表回答