Search code examples
ruby-on-railsrakeforkdelayed-job

running fork in delayed job


we use delayed job in our web application and we need multiple delayed jobs workers happening parallelly, but we don't know how many will be needed.

solution i currently try is running one worker and calling fork/Process.detach inside the needed task.

i was trying to run fork directly in rails application previously but it didnt work too good with passenger.

this solution seems to work well. could there be any caveats in production?


Solution

  • one issue which happened to me today and which anyone trying that should take care of was following:

    i noticed that worker is down so i started it. something i didnt think about was that there were 70 jobs waiting in queue. and since processes are forked, they pretty much killed our server for around half an hour by starting all almost immediately and eating all memory in process.. :]

    so ensuring that there is god watching over the worker is important.

    also worker seems to die often but not sure yet if its connected with forking.