vote up 1 vote down star
2

I have a queue of workers that spawn external third party apps using subprocess. I'd like to control how much of the overall resources of my server these process consume. Some of these external apps also tend to hang for unknown reasons, fixed with a restart.

What's a good way to:

  • Monitor the overall server load (say, load average or equivalent of vmstat) in python?
  • Monitor the cpu load of the processes I spawn?
  • Kill processes I've spawned if they're taking too long or taking too much cpu?

Basically I need to be able to control the load the I'm placing on my server with my spawned threads.

Hopefully there's a package or library that'll do all this for me?

flag

64% accept rate

2 Answers

vote up 1 vote down

Functions to get load average and kill process are available in standard python library (os.getloadavg(), os.kill(), subprocess.Popen.kill()). There is a psutil package for the rest (psutil.Process.get_cpu_times(), psutil.Process.get_cpu_percent(), psutil.Process.get_memory_info(), psutil.Process.get_memory_percent() and more)

link|flag
vote up 0 vote down

As for governing CPU, you'll want to use nice to launch your processes.

For monitoring system load and other stats related to currently running processes, you might look into the /proc directory of pseudo-devices.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.