当我生成进程时出现僵尸进程

发布于 2024-08-24 06:36:52 字数 249 浏览 6 评论 0原文

我有一段代码,我在其中生成子进程以使其更加高效。然而,他们似乎创建了各种僵尸进程,这些进程会阻塞套接字并导致站点瘫痪。

spawn(:method => :thread) do
   if @login_user.suggested_group_info.new_record?
       xxx
   end
end

1)为什么会创建僵尸进程? 2)我怎样才能编写代码,确保在进程变成僵尸之前将其杀死?

I have a pieces of code where i spawn off children processes to make it more efficient. However, they appear to create all sorts of zombie processes which block sockets and bring down the site.

spawn(:method => :thread) do
   if @login_user.suggested_group_info.new_record?
       xxx
   end
end

1) Why is this creating zombie processes?
2) How could i write the code such that i make sure i kill the process before it becomes a zombie?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烈酒灼喉 2024-08-31 06:36:52

您必须保存生成的进程的 PID,并在其终止后对其执行 waitpid(2) 系统调用。 (我不知道 Ruby 是如何做到这一点的。)

You have to save the PID of the spawned process and execute the waitpid(2) system call upon it after it dies. (I don't know how Ruby does this.)

本王不退位尔等都是臣 2024-08-31 06:36:52

您还可以捕获子进程关闭,这将清理僵尸进程

trap("CLD") {
  pid = Process.wait
  puts "Child pid #{pid}: terminated"
}

You can also trap for the child shutdown which will clean up the zombie process

trap("CLD") {
  pid = Process.wait
  puts "Child pid #{pid}: terminated"
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文