From: Jim Jagielski Date: Mon, 23 Jul 2012 12:15:33 +0000 (+0000) Subject: Merge r1306426, r1306841 from trunk: X-Git-Tag: 2.4.3~217 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1db4bd37aa8cedc7aea9f85b1413cb23679bddea;p=apache Merge r1306426, r1306841 from trunk: Update worker mpm defaults to match documentation and built-in defaults. As per https://issues.apache.org/bugzilla/show_bug.cgi?id=52102 Updated event mpm configuration to match the defaults in documentation and header definitions. Updated prefork defaults to better match documentation and header definition. Submitted by: humbedooh Reviewed/backported by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1364600 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 785df26142..28c4794e69 100644 --- a/STATUS +++ b/STATUS @@ -133,15 +133,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: +1: rjung, humbedooh, jim rjung: sf: you applied it to trunk, care to vote? - * core config: Update worker and event mpm defaults to match documentation - and built-in defaults. PR 52102. - Changed values for MaxRequestWorkers, StartServers, MinSpareThreads - and MaxSpareThreads in httpd-mpm.conf. - trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1306426 and - http://svn.apache.org/viewvc?view=revision&revision=1306841 - 2.4.x patch: trunk patch works - +1: rjung, humbedooh, jim - PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ New proposals should be added at the end of the list ] diff --git a/docs/conf/extra/httpd-mpm.conf.in b/docs/conf/extra/httpd-mpm.conf.in index b64da4ef90..bf29fafe00 100644 --- a/docs/conf/extra/httpd-mpm.conf.in +++ b/docs/conf/extra/httpd-mpm.conf.in @@ -29,7 +29,7 @@ StartServers 5 MinSpareServers 5 MaxSpareServers 10 - MaxRequestWorkers 150 + MaxRequestWorkers 250 MaxConnectionsPerChild 0 @@ -42,11 +42,11 @@ # MaxConnectionsPerChild: maximum number of connections a server process serves # before terminating - StartServers 2 - MinSpareThreads 25 - MaxSpareThreads 75 + StartServers 3 + MinSpareThreads 75 + MaxSpareThreads 250 ThreadsPerChild 25 - MaxRequestWorkers 150 + MaxRequestWorkers 400 MaxConnectionsPerChild 0 @@ -59,11 +59,11 @@ # MaxConnectionsPerChild: maximum number of connections a server process serves # before terminating - StartServers 2 - MinSpareThreads 25 - MaxSpareThreads 75 + StartServers 3 + MinSpareThreads 75 + MaxSpareThreads 250 ThreadsPerChild 25 - MaxRequestWorkers 150 + MaxRequestWorkers 400 MaxConnectionsPerChild 0