Hi, Thanks for the feedback. That tomcat application(monitoring) is invoked through a 3rd party module and application remains active in browser for days together, which result
in memory leak for httpd process. To prevent that leak, that application owner has configured MaxRequestsPerChild as 100. I will suggest them to increase values of this and other directives. Regards, Vamsi. From: Daniel [mailto:dferradal@xxxxxxxxx]
What memory leak exactly? You are just proxying to tomcat. Increase the number of maxrequestsperchild to a more sensible number, such as 10.000 or even higher, so httpd is not constantly renewing childs if you have even a minimum load. Add more servers to avoid your issue, and try to use more threads too, 50 at least. It seems like you are constraining too much, and apache 2.2.15 with mpm_worker can give much much more. You will notice performance increasing greatly overall. 2014-08-22 6:06 GMT+02:00 Vattikuti, Vamsi Krishna Venkata (STSD) <vamsik@xxxxxx>:
|