Looking for a method to kill all children for my Timeout::Errorcontingency

X

Xeno Campanoli

Do I really need to collect all the pids from fork to kill them in that case, or
is there a method I'm not finding in pickaxe that just does it???

xc
 
J

Jos Backus

Do I really need to collect all the pids from fork to kill them in that case, or
is there a method I'm not finding in pickaxe that just does it???

Here's a trick I use, maybe it is useful. Note that even if push-to-slaves
creates children, those too will be killed because they reside in the same
process group.

require 'timeout'
signal = '-TERM'
timeout = 30

pid = Process.fork do
Process.setsid
exec %{push-to-slaves -v}
end
begin
Timeout::timeout(timeout) { Process.waitpid(pid) }
rescue Timeout::Error => exc
puts "#{exc.message}, killing pid #{pid}"
Process.kill(signal, pid)
res = Process.waitpid(pid)
puts "pid #{pid.inspect} != res #{res.inspect}" if res != pid
end
 
X

Xeno Campanoli

Jos said:
Here's a trick I use, maybe it is useful. Note that even if push-to-slaves
creates children, those too will be killed because they reside in the same
process group.

The problem with that is I have many processes, so I would be doing this with
arrays and loops, which suddenly becomes problematic. If I could just call
something that automatically kills the entire tree of children on down that
would be much nicer...??
 
M

Mike B

The problem with that is I have many processes, so I would be doing this with
arrays and loops, which suddenly becomes problematic. If I could just call
something that automatically kills the entire tree of children on down that
would be much nicer...??

Maybe this could help?

http://markmail.org/message/3nl2idghbekgbahb

It's a link to Ara Howards announcement for terminator.

Mike B.
 
J

Jos Backus

If those many processes were being started by the push-to-slaves script as in
the example I posted, unless that script did something to create new process
groups for its children, the code I posted would terminate all those processes
because they all belong to the same process group which is targeted by the
Process.kill(-TERM, pid) invocation. Iow, if you want to kill all the children
at once the easiest way is to make sure they all belong to the same pgrp.
 
X

Xeno Campanoli

Yes thank you.

Part of my problem is I wasn't feeling sure about how I would use processes or
threads, and why. With the advent of the new Chrome Philosophy, I was thinking
perhaps processes might be the way to go, as I was doing curl executions, but it
turns out I need to do a surrounding sequence of things in parallel for
initializations and closures, so I am leaning back to threads now, which I think
solves the problems. I would sure like to find a book just on use of threads
and processes in Ruby. I would think a knowledgeable person could probably write
at least 12 chapters on it for the layman alone, and not having done some of
this for over ten years, that's where I'm feeling I'm at.

Thank you again for the feedback.

Sincerely, Xeno

xc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top