I have a redmine instance deployed on a Linux x86_64 system and I am struggle with a funny performance inconsistencey issue. It behave like this:

Leave it alone for a couple of hours (no request to the application at all) then establish a connection, it takes a very long time to response to the first few requests (can be as bad as 15 seconds+, sometimes every for response at about 1 minute). After the first few requests, it performance very quickly, almost instantly where I can see from the log that it takes less than 100ms to response.

I have tried a couple of options to run it using mongrel, deployed it on passenger-Nginx, and on passenger-Apache. The behaviour simply reproduceable. I realised from the testing when it is keeping busy, there will be no problem at all.

Any ideas what it is all about? How can I improve this?

Many thanks for any advices in advance.

link|improve this question

67% accept rate
See also stackoverflow.com/questions/7062563/… - a known problem with mysql on windows, and therefore probably not related to your problem. Is there anything in the log files (mongrel logs for example) ? – marapet Nov 23 '11 at 0:27
Don't really see any error in the log related to the database. I also checked with this FAQ in Redmine. I have MySQL/Ruby adaptor 2.8.1 since day 1, the only thing was the gem was not install by the gem command, but via executing the extconf.rb script instead. – Pok Nov 23 '11 at 4:00
Going through the Passenger user guide again, looks like there might be a chance to resolve the problem by combining the usage of PassengerPreStart, PassengerMinInstances and PassengerPoolIdleTime. – Pok Nov 23 '11 at 4:34
feedback

1 Answer

up vote 2 down vote accepted

The issue is most likely caused by the the Passenger pool idleling out. You can either increase the PassengePoolIdleTime to a larger number, or if you don't wan it to time out at all set the value to 0. An Apache config something like below should fix the issues

<VirtualHost *:80>
    DocumentRoot /path/to/redmine/site/public
    ServerName example.com
    PassengerPoolIdleTime 0
        <Directory "/path/to/redmine/site/public">
                PassengerEnabled on
                AllowOverride
                Options -MultiViews
        </Directory>
</VirtualHost>
link|improve this answer
My apology for a stupid question. Should PassengerPoolIdleTime to be configured inside a VirtualHost for each VirtualHost or should this be setup globally? – Pok Dec 1 '11 at 2:07
As far as I recall you can do it globally, but I would recommend setting it per virtual host. Depending on the application, it's use, and how much it get's hit a different idle time might be more appropriate for different sites to save resources. – James Toyer Dec 1 '11 at 11:52
This made a HUGE difference on our server! Thanks James! – Cyber Sprocket Labs May 25 at 0:02
feedback

Your Answer

 
or
required, but never shown

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