A few Ruby apps I've worked with hang for a long time on slow calls causing processes to backup on the machine eventually requiring a reboot. Is there a quick and easy way in Passenger to limit a execution time for a single Apache call.

In PHP if a process exceeds the max execution time setting in php.ini the process returns an error to Apache and the server keeps merrily plugging away.

link|improve this question

50% accept rate
1  
can't help you with passenger, just checked, and can't find any option in the passenger doc. we use nginx + unicorn, which supports timeouts. it's a little bit more complicated to setup, but has some advantages. for example the unicorns don't idle out like the passenger workers (which then need to startup again, which causes long response times for some users) – Marian Theisen Sep 23 '11 at 20:49
feedback

1 Answer

I would take a look at fixing the application. Cutting off requests at the web server level is really more of a band aid and not addressing the core problem - which is request failures, one way or another. If the Ruby app is dependent on another service that is timing out, you can patch the code like this, using the timeout.rb library:

require 'timeout'
status = Timeout::timeout(5) {
  # Something that should be interrupted if it takes too much time...
}

This will let the code "give up" and close out the request gracefully when needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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