There's plenty of good commentary on the net regarding monitoring multiple copies of a delayed_job rake task (rake jobs:work). Delayed_job has a relatively newer way to run multiple workers using their own daemonize function. This command:
ruby script/delayed_job start -n 3 creates 3 separate workers but seems to use only one copy of Rails, resulting in considerably less memory usage than running three separate rake tasks. The result of the above command are three separate pid files names delayed_job.0.pid, delayed_job.1.pid, and delayed_job.2.pid. So, the question is, with one start command but three resulting pids, can you monitor that with God? How? -- You received this message because you are subscribed to the Google Groups "god.rb" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/god-rb?hl=en.
