I have a production ruby sinatra app running on nginx/passenger, and I frequently see requests get inexplicably stalled. I wrote a script to call passenger-status on my cluster of machines every ten seconds and plot the results on a graph. This is what I see:

enter image description here

The blue line shows the global queue waiting spiking constantly to 60. This is an average across 4 machines, so when the blue line hits 60, it means every machine is maxed out. I have the current passenger_max_pool_size set to 20, so it's getting to 3x the max pool size, and then presumably dropping subsequent requests.

My app depends on two key external resources - an Amazon RDS mysql backend and a Redis instance. Perhaps one of these is periodically becoming slow or unresponsive and thereby causing this behavior?

Can anyone advise me on how to get a stack trace to see if the bottleneck here is Amazon RDS, Redis, or something else?

Thanks!

link|improve this question

59% accept rate
feedback

1 Answer

up vote 4 down vote accepted

I figured it out -- I had a SAVE config parameter in Redis that was firing once a minute. Evidently the forking/saving operations of redis are blocking for my app. I change the config param to be "3600 1", meaning I only save my database once an hour, which is OK because I am using it as a cache (data persisted in MYSQL).

link|improve this answer
Can I know how long was the waiting? AFAIK, the auto-save should be in background and should only delay while it's copying the memory pages, which should be 300ms top. – seppo0010 Feb 1 '11 at 2:03
Empirically, it would appear that my redis node would block for several seconds, I would say I saw around 5 -10 seconds of blocking in any given 60-sec period. I am going to try to spin up a slave and use the slave to save. – esilver Feb 1 '11 at 3:41
feedback

Your Answer

 
or
required, but never shown

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