Kamil Kukura <[email protected]> wrote: > I have strange error that happens after couple of hours. Some > instances start to respond on any request with status code 500. Log > file unicorn.stderr.log gets populated with this error:
>From the backtrace, it looks like an application error of some sort. Unicorn itself never changes the application once it's loaded. Does an external service your application relies on get overloaded? This is a hunch: perhaps your Rails application is opening connections to a backend and not closing them explicitly (maybe in an error-handling path). > Application is running on rails 2.3.14/ruby 1.9.2p290 and maybe it > has something to do with plugin being used, that is > template_streaming (https://github.com/oggy/template_streaming) What happens when you disable the template_streaming? Streaming isn't likely to help with nginx in front right now (disabling proxy_buffering in nginx is dangerous to unicorn). -- Eric Wong _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
