I'm running passenger with REE on a Rackspace cloud server. Is there any way to find out what is the maximum concurrent processes Passenger can create/handle with the provided infrastructure/hardware?

link|improve this question

feedback

2 Answers

By default the maximum number of Passenger instances spawned is six. You can adjust this in the configuration. Phusion provide excellent guidelines for setting this value in their documentation:

Nginx - http://www.modrails.com/documentation/Users%20guide%20Nginx.html#PassengerMaxPoolSize

Apache - http://www.modrails.com/documentation/Users%20guide%20Apache.html#_passengermaxpoolsize_lt_integer_gt

link|improve this answer
Thanks for the links, it explains it quite well. But, still there is no straight forward way of finding this out! Is there any tool to load Passenger & check what's the max it can go with provided infrastructure? – hnprashanth Apr 19 '11 at 8:45
Not automated, no. You could load test your app with varying values for MaxInstances, at a certain point you will see a levelling off or even reduction in RPS when you have too many. – Douglas F Shearer Apr 19 '11 at 11:18
feedback
up vote 1 down vote accepted

Found a better and easier option. I'm monitoring both my Application and EC2 instance (it should also run on Rackspace) with NewRelic. All I need to do now is find a load testing tool & put the load on my instance. NewRelic shows how many instances Passenger is creating & what is the resource consumption (RAM, CPU..etc) for the same.

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.