vote up 4 vote down star

I want to offload a block of code in my main process to child process to make it run concurrently. I also want to have the PID of the spawned child process so I can monitor and kill it if necessary.

flag

4 Answers

vote up 4 vote down check

You can use the fork kernel method. Here is an example:

#!/usr/bin/env ruby
puts "This is the master process."

child_pid = fork do
  puts "This is the child process"
  exit
end

puts "The PID of the child process is #{child_pid}"

The fork method returns the PID of the process it forks and executes any code in the block passed. Like regular Ruby blocks it keeps the bindings of the parent process.

It is a good idea to make your forked process exit.

link|flag
One thing to remember with Ruby is that not all things work exactly the same way in Windows versus *nix. Sometimes they're completely unimplemented on Windows, so use at your own peril. – Daemin Nov 22 '08 at 17:33
This one wouldn't work in Windows at all – vava Feb 14 at 4:55
@Vadim I think that is a feature, not a bug. – Chris Lloyd Feb 15 at 23:57
vote up 3 vote down

In addition to Chris' great answer, remember to call Process.wait from your master in order to reap your child process, else you'll leave zombies behind.

link|flag
Sweet, that was an awesome tip. – Chris Lloyd Nov 23 '08 at 9:15
vote up 2 vote down

If you are happy to use Threads, rather than Processes, then something like this may be a bit more scaleable to more-than-one fork:

def doit(x)
    sleep(rand(10))
    puts "Done... #{x}"
end

thingstodo = ["a","b","c","d","e","f","g"]
tasklist = []

# Set the threads going

thingstodo.each { |thing|
    task = Thread.new { doit(thing) } 
    tasklist << task
} 

# Wait for the threads to finish

tasklist.each { |task|
    task.join
}

Please see John Topley's excellent comments and reference, below, regarding the Ruby execution model and its restrictions.

link|flag
Presumably these are Green Threads rather than proper OS threads? – John Topley Nov 21 '08 at 19:21
Read this regarding Ruby 1.9: igvita.com/2008/11/… – John Topley Nov 22 '08 at 11:47
vote up 0 vote down

In 1.9 you can use Process.spawn command

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.