Httpd worker MPM Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 42: Line 42:
Any connection attempts over the MaxClients limit will normally be queued, up to a number based on the [[#ListenBacklog|ListenBacklog]] directive. Once a child process becomes available after handling at least one of its current requests, the connection will then be serviced.
Any connection attempts over the MaxClients limit will normally be queued, up to a number based on the [[#ListenBacklog|ListenBacklog]] directive. Once a child process becomes available after handling at least one of its current requests, the connection will then be serviced.


Even if ServerLimit is set to a high value (ThreadPerChild left to default), the number of concurrent connection ''is'' limited by MaxClients. This was actually tested and proven.
Even if ServerLimit is set to a high value (ThreadPerChild left to default), the number of concurrent connection ''is'' limited by MaxClients. This was tested and proven.


!Idiosyncrasies
==MaxClients Idiosyncrasies==


* MaxClient must be at least equals with ThreadPerChild. If not, httpd will warn at startup and automatically adjust the value to be equals with ThreadPerChild.
* MaxClient must be at least equals with [[#ThreadsPerChild|ThreadsPerChild]]. If not, httpd will warn at startup and automatically adjust the value to be equals with [[#ThreadsPerChild|ThreadsPerChild]].
* MaxClient must be an integer multiple of ThreadsPerChild. If it's not, it will be adjusted automatically:
* MaxClient must be an integer multiple of [[#ThreadsPerChild|ThreadsPerChild]]. If it's not, it will be adjusted automatically, and the server will issue an error message similar to the one presented below:
{{{
 
MaxClients (12) is not an integer multiple of ThreadsPerChild (10), lowering MaxClients to 10
<pre>
}}}
MaxClients (12) is not an integer multiple of ThreadsPerChild (10), lowering MaxClients to 10
</pre>


=ServerLimit=
=ServerLimit=

Revision as of 02:20, 2 January 2017

Internal

Overview

worker MPM Concepts

Diagram

The configuration elements described below are represented on the mod_jk Concepts Diagram.

Enabling woker MPM Mode

If you configure httpd yourself, make sure you compiled it with worker MPM support.

If you use Red Hat EWS, worker support comes pre-compiled into $APACHE_HOME/sbin/httpd.worker, make sure the start script is using that.

For more details about compiling httpd with the right MPM mode, see:

woker MPM Compilation

ThreadsPerChild

StartServers

MinSpareThreads

MaxSpareThreads

MaxClients

MaxClients represents the maximum number of connections that will be processed simultaneously by the entire server, seen as the sum of all active children processes. The default value is 400 = 16 (ServerLimit) * 25 (ThreadsPerChild). The directive restricts the total number of threads that will be available to serve clients.

Any connection attempts over the MaxClients limit will normally be queued, up to a number based on the ListenBacklog directive. Once a child process becomes available after handling at least one of its current requests, the connection will then be serviced.

Even if ServerLimit is set to a high value (ThreadPerChild left to default), the number of concurrent connection is limited by MaxClients. This was tested and proven.

MaxClients Idiosyncrasies

  • MaxClient must be at least equals with ThreadsPerChild. If not, httpd will warn at startup and automatically adjust the value to be equals with ThreadsPerChild.
  • MaxClient must be an integer multiple of ThreadsPerChild. If it's not, it will be adjusted automatically, and the server will issue an error message similar to the one presented below:
MaxClients (12) is not an integer multiple of ThreadsPerChild (10), lowering MaxClients to 10

ServerLimit

ThreadLimit

ListenBacklog