diff options
author | Luca Toscano <elukey@apache.org> | 2016-12-04 11:07:56 +0100 |
---|---|---|
committer | Luca Toscano <elukey@apache.org> | 2016-12-04 11:07:56 +0100 |
commit | 0477e5bac4e66c42680f8ee34b72d34203772076 (patch) | |
tree | d8471f323fb47a7b08dfd807219d4e99d307a860 /docs/manual/mod/event.xml | |
parent | Missing CHNAGES for r1772489 (diff) | |
download | apache2-0477e5bac4e66c42680f8ee34b72d34203772076.tar.xz apache2-0477e5bac4e66c42680f8ee34b72d34203772076.zip |
Added some notes in mpm-event's doc page
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1772512 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/event.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/manual/mod/event.xml b/docs/manual/mod/event.xml index f7cca7b59c..c92a394dfd 100644 --- a/docs/manual/mod/event.xml +++ b/docs/manual/mod/event.xml @@ -144,7 +144,17 @@ of the <directive>AsyncRequestWorkerFactor</directive>.</p> graceful terminations in a much better way. Some of the improvements are:</p> <ul> <li>Allow the use of all the scoreboard slots up to - <directive module="mpm_common">ServerLimit</directive>.</li> + <directive module="mpm_common">ServerLimit</directive>. + <directive module="mpm_common">MaxRequestWorkers</directive> and + <directive module="mpm_common">ThreadsPerChild</directive> are used + to limit the amount of active processes, meanwhile + <directive module="mpm_common">ServerLimit</directive> + takes also into account the ones doing a graceful + close to allow extra slots when needed. The idea is to use + <directive module="mpm_common">ServerLimit</directive> to instruct httpd + about how many overall processes are tolerated before impacting + the system resources. + </li> <li>Force gracefully finishing processes to close their connections in keep-alive state.</li> <li>During graceful shutdown, if there are more running worker threads |