Displaying 1 result from an estimated 1 matches for "maxrequestworkers".
2015 Nov 03
1
prefork vs worker mpm in apache
...showing that thread safety was disabled.
But after that change apache processes spiked from around 11 processes per
machine to well over 250 processes at any given time.
These are the tuning settings we have in apache:
StartServers 10
#MinSpareServers 10
#MaxSpareServers 25
ServerLimit 250
MaxRequestWorkers 250
MaxConnectionsPerChild 1000
KeepAlive On
KeepAliveTimeout 30
EnableSendfile Off
So I was just wondering how this change could've cause this problem of
having the number of apache processes spike. And if there are any other
changes we can make to apache to bring the process count down?...