python僵尸进程产生的原因


Posted in Python onJuly 21, 2017

在 unix 或 unix-like 的系统中,当一个子进程退出后,它就会变成一个僵尸进程,如果父进程没有通过 wait 系统调用来读取这个子进程的退出状态的话,这个子进程就会一直维持僵尸进程状态。

Zombie process - Wikipedia 中是这样描述的:

On Unix and Unix-like computer operating systems, a zombie process or defunct process is a process that has completed execution (via the exit system call) but still has an entry in the process table: it is a process in the "Terminated state". This occurs for child processes, where the entry is still needed to allow the parent process to read its child's exit status: once the exit status is read via the wait system call, the zombie's entry is removed from the process table and it is said to be "reaped". A child process always first becomes a zombie before being removed from the resource table. In most cases, under normal system operation zombies are immediately waited on by their parent and then reaped by the system ? processes that stay zombies for a long time are generally an error and cause a resource leak.

并且僵尸进程无法通过 kill 命令来清除。

本文将探讨如何手动制造一个僵尸进程以及清除僵尸进程的办法。

手动制造一个僵尸进程

为了便于后面讲解清除僵尸进程的方法,我们使用日常开发中经常使用的 multiprocessing 模块来制造僵尸进程(准确的来说是制造一个长时间维持僵尸进程状态的子进程):

$ cat test_a.py
from multiprocessing import Process, current_process
import logging
import os
import time

logging.basicConfig(
  level=logging.DEBUG,
  format='%(asctime)-15s - %(levelname)s - %(message)s'
)


def run():
  logging.info('exit child process %s', current_process().pid)
  os._exit(3)

p = Process(target=run)
p.start()
time.sleep(100)

测试:

$ python test_a.py &
[1] 10091
$ 2017-07-20 21:28:14,792 - INFO - exit child process 10106

$ ps aux |grep 10106
mozillazg       10126  0.0 0.0 2434836  740 s006 R+  0:00.00 grep 10106
mozillazg       10106  0.0 0.0    0   0 s006 Z   0:00.00 (Python)

可以看到,子进程 10091 变成了僵尸进程。

既然已经可以控制僵尸进程的产生了,那我们就可以进入下一步如何清除僵尸进程了。

清除僵尸进程有两种方法:

•第一种方法就是结束父进程。当父进程退出的时候僵尸进程随后也会被清除。
• 第二种方法就是通过 wait 调用来读取子进程退出状态。我们可以通过处理 SIGCHLD 信号,在处理程序中调用 wait 系统调用来清除僵尸进程。

处理 SIGCHLD 信号

子进程退出时系统会向父进程发送 SIGCHLD 信号,父进程可以通过注册 SIGCHLD 信号处理程序,在信号处理程序中调用 wait
系统调用来清理僵尸进程。 $ cat test_b.py

import errno
from multiprocessing import Process, current_process
import logging
import os
import signal
import time

logging.basicConfig(
  level=logging.DEBUG,
  format='%(asctime)-15s - %(levelname)s - %(message)s'
)


def run():
  exitcode = 3
  logging.info('exit child process %s with exitcode %s',
         current_process().pid, exitcode)
  os._exit(exitcode)


def wait_child(signum, frame):
  logging.info('receive SIGCHLD')
  try:
    while True:
      # -1 表示任意子进程
      # os.WNOHANG 表示如果没有可用的需要 wait 退出状态的子进程,立即返回不阻塞
      cpid, status = os.waitpid(-1, os.WNOHANG)
      if cpid == 0:
        logging.info('no child process was immediately available')
        break
      exitcode = status >> 8
      logging.info('child process %s exit with exitcode %s', cpid, exitcode)
  except OSError as e:
    if e.errno == errno.ECHILD:
      logging.error('current process has no existing unwaited-for child processes.')
    else:
      raise
  logging.info('handle SIGCHLD end')

signal.signal(signal.SIGCHLD, wait_child)

p = Process(target=run)
p.start()

while True:
  time.sleep(100)

效果:

$ python test_b.py &
[1] 10159
$ 2017-07-20 21:28:56,085 - INFO - exit child process 10174 with exitcode 3
2017-07-20 21:28:56,088 - INFO - receive SIGCHLD
2017-07-20 21:28:56,089 - INFO - child process 10174 exit with exitcode 3
2017-07-20 21:28:56,090 - ERROR - current process has no existing unwaited-for child processes.
2017-07-20 21:28:56,090 - INFO - handle SIGCHLD end

$ ps aux |grep 10174
mozillazg       10194  0.0 0.0 2432788  556 s006 R+  0:00.00 grep 10174

可以看到,子进程退出变成僵尸进程后,系统给父进程发送了 SIGCHLD 信号,我们在 SIGCHLD 信号的处理程序中通过 os.waitpid 调用 wait 系统调用后阻止了子进程一直处于僵尸进程状态,从而实现了清除僵尸进程的效果。

Python 相关文章推荐
python33 urllib2使用方法细节讲解
Dec 03 Python
python实现带验证码网站的自动登陆实现代码
Jan 12 Python
Python中基本的日期时间处理的学习教程
Oct 16 Python
Unicode和Python的中文处理
Mar 19 Python
python模拟事件触发机制详解
Jan 19 Python
Django开发中的日志输出的方法
Jul 02 Python
django.db.utils.ProgrammingError: (1146, u“Table‘’ doesn’t exist”)问题的解决
Jul 13 Python
Python读取txt某几列绘图的方法
Oct 14 Python
20行python代码实现人脸识别
May 05 Python
Python面向对象之类和实例用法分析
Jun 08 Python
Python yield生成器和return对比代码实例
Apr 20 Python
Python OpenCV实现测量图片物体宽度
May 27 Python
python下载图片实现方法(超简单)
Jul 21 #Python
Python基于Pymssql模块实现连接SQL Server数据库的方法详解
Jul 20 #Python
Python使用内置json模块解析json格式数据的方法
Jul 20 #Python
Python轻量级ORM框架Peewee访问sqlite数据库的方法详解
Jul 20 #Python
Python函数式编程
Jul 20 #Python
python 换位密码算法的实例详解
Jul 19 #Python
python实现rsa加密实例详解
Jul 19 #Python
You might like
使用 eAccelerator加速PHP代码的目的
2007/03/16 PHP
一个简单php扩展介绍与开发教程
2010/08/19 PHP
php更改目录及子目录下所有的文件后缀的代码
2010/09/24 PHP
LotusPhp笔记之:Logger组件的使用方法
2013/05/06 PHP
PHP实现用户登录的案例代码
2018/05/10 PHP
jquery 常用操作方法
2010/01/28 Javascript
初试jQuery EasyUI 使用介绍
2010/04/01 Javascript
浅析JavaScript中的typeof运算符
2013/11/30 Javascript
js 动态加载事件的几种方法总结
2013/12/25 Javascript
node.js中的fs.open方法使用说明
2014/12/17 Javascript
JavaScript判断变量是否为空的自定义函数分享
2015/01/31 Javascript
javascript每日必学之多态
2016/02/23 Javascript
第一次接触神奇的Bootstrap基础排版
2016/07/26 Javascript
JavaScript无阻塞加载和defer、async详解
2017/02/26 Javascript
AngularJS中的promise用法分析
2017/05/19 Javascript
jQueryUI Sortable 应用Demo(分享)
2017/09/07 jQuery
vue中获取滚动table的可视页面宽度调整表头与列对齐(每列宽度不都相同)
2019/08/17 Javascript
聊聊鉴权那些事(推荐)
2019/08/22 Javascript
JavaScript实现栈结构Stack过程详解
2020/03/07 Javascript
JavaScript实现像雪花一样的Hexaflake分形
2020/07/07 Javascript
[01:09]DOTAPLUS——DOTA2的新时代
2018/04/04 DOTA
Python实现简单的HttpServer服务器示例
2017/09/25 Python
Python变量赋值的秘密分享
2018/04/03 Python
Django 路由系统URLconf的使用
2018/10/11 Python
Python爬虫之UserAgent的使用实例
2019/02/21 Python
python中删除某个元素的方法解析
2019/11/05 Python
Python logging模块写入中文出现乱码
2020/05/21 Python
python与js主要区别点总结
2020/09/13 Python
小学校园之星事迹材料
2014/05/16 职场文书
自动化专业毕业生求职信
2014/06/18 职场文书
见习期个人总结
2015/03/05 职场文书
幼儿园班级工作总结2015
2015/05/25 职场文书
欠款证明
2015/06/24 职场文书
2016猴年开门红标语口号
2015/12/26 职场文书
详解JVM系列之内存模型
2021/06/10 Javascript
Java SSM配置文件案例详解
2021/08/30 Java/Android