python应用优雅关闭_Python多处理退出优雅如何?

import multiprocessing

import time

class testM(multiprocessing.Process):

def __init__(self):

multiprocessing.Process.__init__(self)

self.exit = False

def run(self):

while not self.exit:

pass

print "You exited!"

return

def shutdown(self):

self.exit = True

print "SHUTDOWN initiated"

def dostuff(self):

print "haha", self.exit

a = testM()

a.start()

time.sleep(3)

a.shutdown()

time.sleep(3)

print a.is_alive()

a.dostuff()

exit()

I am just wondering how come the code above doesn't really print "you exited". What am I doing wrong? if so, may someone point me out the correct way to exit gracefully? (I am not referring to process.terminate or kill)

解决方案

The reason you are not seeing this happen is because you are not communicating with the subprocess. You are trying to use a local variable (local to the parent process) to signal to the child that it should shutdown.

Take a look at the information on synchonization primatives. You need to setup a signal of some sort that can be referenced in both processes. Once you have this you should be able to flick the switch in the parent process and wait for the child to die.

Try the following code:

import multiprocessing

import time

class MyProcess(multiprocessing.Process):

def __init__(self, ):

multiprocessing.Process.__init__(self)

self.exit = multiprocessing.Event()

def run(self):

while not self.exit.is_set():

pass

print "You exited!"

def shutdown(self):

print "Shutdown initiated"

self.exit.set()

if __name__ == "__main__":

process = MyProcess()

process.start()

print "Waiting for a while"

time.sleep(3)

process.shutdown()

time.sleep(3)

print "Child process state: %d" % process.is_alive()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值