gpt4 book ai didi

python sigkill 捕捉策略

转载 作者:IT王子 更新时间:2023-10-28 23:38:59 27 4
gpt4 key购买 nike

我想知道是否有任何方法可以从 OOM killer 那里捕捉到 sigkill。我有一个任务队列,并且每隔一段时间就会创建一个被 OOM 杀死的庞大任务。这个:

catch Exception as ex:
# clean up!

不起作用,因为 SIGKILL 无法被捕获。所以........在 SIGKILL 之后有什么策略可以清理吗?我可以 fork 并观察子进程吗?如果是这样,子进程打开的任何资源都必须由父进程提前知道吗?或者我可以做一些版本的

ps -ef | grep <child pid> | xargs kill -9  (you get the idea...)

目前,如果我在 OOM 终止后不进行清理,我会留下大量子进程和其他东西,这只会在重试任务时使情况变得更糟,并且很快就会无法访问服务器。

最后,做就够了吗:

kill -9 <process id> 

要测试这个确切的情况?

非常感谢!

最佳答案

SIGKILL 就其本质而言不能被困住。

http://en.wikipedia.org/wiki/Unix_signal#SIGKILL :

SIGKILL

The SIGKILL signal is sent to a process to cause it to terminate immediately (kill). In contrast to SIGTERM and SIGINT, this signal cannot be caught or ignored, and the receiving process cannot perform any clean-up upon receiving this signal.

最好的办法是下次启动流程时,查找需要清理的任何内容。

是的,kill -9 <pid>将向进程发送 SIGKILL。 (准确地说,它发送第 9 个信号 - 恰好 SIGKILL 在几乎每个系统上都有数字 9。您也可以编写 kill -KILL <pid> ,它可以让您以可移植的方式通过名称而不是数字来指定信号.)

关于python sigkill 捕捉策略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30732683/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com