Linux – Do children processes inherit ionice priorities from their parents? How to check the IO priority of a running process

linuxprocess

Ionice is a standard linux command that allows to set the io priority for a process:

http://linux.die.net/man/1/ionice

Do children processes inherit ionice priorities from their parents? How do you check the io priority of a running process?

Best Answer

Yes. I tested it. IO priority is inherited just like CPU niceness. This is probably what you want. If it isn't, you can explicitly specify the IO priority of child processes with the ionice command.