简体   繁体   中英

Start child process with limited priority

I'm looking for a way how to start process with Pythons subprocess module with low system priority, I've already found:

There's no mentioning of priority in subprocess manual .

I already have solution that seems to be working:

self.start_low_priority =  ('cmd', '/c', 'start', '/MIN', '/LOW', '/B', '/WAIT')

NOTE: switches /B /WAIT has to be in this order for this to work

And use it as:

args = self.start_low_priority + ( 'foo.exe', 'bar', 'foobar')
subprocess.call( args, shell=False)

But this solution doesn't seem to be the right and clean way plus Process Explorer is unable to build correct "Process tree" from applications started like this (thus you don't have ability to kill process tree ).

Is there any good practice way to do this for windows? Doesn't Python provide any multiplatform solution for this that I've missed?

You can use the psutil library. In particular you can set the priority setting psutil.Process.nice to the desired value.

See also this answer for an example.


Edit : Looking at the psutil 's documentation setting Process.nice directly is deprecated, you should use Process.nice(value) instead.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM