python子进程 内存_python中的子进程内存使用情况

How can one measure/benchmark maximum memory usage of a subprocess executed within python?

解决方案

I made a little utility class that demonstrates how to do this with the psutil library:

import psutil

import subprocess

class ProcessTimer:

def __init__(self,command):

self.command = command

self.execution_state = False

def execute(self):

self.max_vms_memory = 0

self.max_rss_memory = 0

self.t1 = None

self.t0 = time.time()

self.p = subprocess.Popen(self.command,shell=False)

self.execution_state = True

def poll(self):

if not self.check_execution_state():

return False

self.t1 = time.time()

try:

pp = psutil.Process(self.p.pid)

#obtain a list of the subprocess and all its descendants

descendants = list(pp.get_children(recursive=True))

descendants = descendants + [pp]

rss_memory = 0

vms_memory = 0

#calculate and sum up the memory of the subprocess and all its descendants

for descendant in descendants:

try:

mem_info = descendant.get_memory_info()

rss_memory += mem_info[0]

vms_memory += mem_info[1]

except psutil.error.NoSuchProcess:

#sometimes a subprocess descendant will have terminated between the time

# we obtain a list of descendants, and the time we actually poll this

# descendant's memory usage.

pass

self.max_vms_memory = max(self.max_vms_memory,vms_memory)

self.max_rss_memory = max(self.max_rss_memory,rss_memory)

except psutil.error.NoSuchProcess:

return self.check_execution_state()

return self.check_execution_state()

def is_running(self):

return psutil.pid_exists(self.p.pid) and self.p.poll() == None

def check_execution_state(self):

if not self.execution_state:

return False

if self.is_running():

return True

self.executation_state = False

self.t1 = time.time()

return False

def close(self,kill=False):

try:

pp = psutil.Process(self.p.pid)

if kill:

pp.kill()

else:

pp.terminate()

except psutil.error.NoSuchProcess:

pass

You then use it like so:

import time

#I am executing "make target" here

ptimer = ProcessTimer(['make','target'])

try:

ptimer.execute()

#poll as often as possible; otherwise the subprocess might

# "sneak" in some extra memory usage while you aren't looking

while ptimer.poll():

time.sleep(.5)

finally:

#make sure that we don't leave the process dangling?

ptimer.close()

print 'return code:',ptimer.p.returncode

print 'time:',ptimer.t1 - ptimer.t0

print 'max_vms_memory:',ptimer.max_vms_memory

print 'max_rss_memory:',ptimer.max_rss_memory

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值