home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252825_worker.xml < prev    next >
Extensible Markup Language  |  2003-04-23  |  6KB  |  135 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <modulesynopsis metafile="worker.xml.meta">
  5. <name>worker</name>
  6. <description>Multi-Processing Module implementing a hybrid
  7.     multi-threaded multi-process web server</description>
  8. <status>MPM</status>
  9. <sourcefile>worker.c</sourcefile>
  10. <identifier>mpm_worker_module</identifier>
  11.  
  12. <summary>
  13.     <p>This Multi-Processing Module (MPM) implements a hybrid
  14.     multi-process multi-threaded server.  By using threads to serve
  15.     requests, it is able to serve a large number of requests with
  16.     less system resources than a process-based server.  Yet it
  17.     retains much of the stability of a process-based server by
  18.     keeping multiple processes available, each with many threads.</p>
  19.  
  20.     <p>The most important directives used to control this MPM are
  21.     <directive module="mpm_common">ThreadsPerChild</directive>, which
  22.     controls the number of threads deployed by each child process and
  23.     <directive module="mpm_common">MaxClients</directive>, which
  24.     controls the maximum total number of threads that may be
  25.     launched.</p>
  26. </summary>
  27. <seealso><a href="../bind.html">Setting which addresses and ports Apache
  28. uses</a></seealso>
  29.  
  30. <section id="how-it-works"><title>How it Works</title>
  31.     <p>Each process has a fixed
  32.     number of threads. The server adjusts to handle load by
  33.     increasing or decreasing the number of processes.</p>
  34.  
  35.     <p>A single control process is responsible for launching child
  36.     processes. Each child process creates a fixed number of threads as
  37.     specified in the <directive
  38.     module="mpm_common">ThreadsPerChild</directive> directive. The
  39.     individual threads then listen for connections and serve them when
  40.     they arrive.</p>
  41.  
  42.     <p>Apache always tries to maintain a pool of <dfn>spare</dfn> or
  43.     idle server threads, which stand ready to serve incoming
  44.     requests. In this way, clients do not need to wait for a new
  45.     threads or processes to be created before their requests can be
  46.     served. The number of processes that will initially launched is
  47.     set by the <directive module="mpm_common">StartServers</directive>
  48.     directive. Then during operation, Apache assesses the total number
  49.     of idle threads in all processes, and forks or kills processes to
  50.     keep this number within the boundaries specified by <directive
  51.     module="mpm_common">MinSpareThreads</directive> and <directive
  52.     module="mpm_common">MaxSpareThreads</directive>. Since this
  53.     process is very self-regulating, it is rarely necessary to modify
  54.     these directives from their default values. The maximum number of
  55.     clients that may be served simultaneously (i.e., the maximum total
  56.     number of threads in all processes) is determined by the
  57.     <directive module="mpm_common">MaxClients</directive> directive,
  58.     while the maximum number of processes that can be launched is set
  59.     by the <directive module="mpm_common">ServerLimit</directive>
  60.     directive.  <directive module="mpm_common">ServerLimit</directive>
  61.     multiplied by <directive
  62.     module="mpm_common">ThreadsPerChild</directive> must be greater
  63.     than or equal to <directive
  64.     module="mpm_common">MaxClients</directive></p>
  65.  
  66.     <p>A typical configuration of the process-thread controls in
  67.     the <module>worker</module> MPM could look as follows:</p>
  68.  
  69.     <example>
  70.       StartServers         2<br />
  71.       MaxClients         150<br />
  72.       MinSpareThreads     25<br />
  73.       MaxSpareThreads     75<br />
  74.       ThreadsPerChild     25<br />
  75.       ServerLimit         16
  76.     </example>
  77.  
  78.     <p>While the parent process is usually started as <code>root</code>
  79.     under Unix in order to bind to port 80, the child processes and threads
  80.     are launched by Apache as a less-privileged user. The <directive
  81.     module="mpm_common">User</directive> and <directive
  82.     module="mpm_common">Group</directive> directives are used to set
  83.     the privileges of the Apache child processes. The child processes
  84.     must be able to read all the content that will be served, but
  85.     should have as few privileges beyond that as possible. In
  86.     addition, unless <a href="../suexec.html">suexec</a> is used,
  87.     these directives also set the privileges which will be inherited
  88.     by CGI scripts.</p>
  89.  
  90.     <p><directive module="mpm_common">MaxRequestsPerChild</directive>
  91.     controls how frequently the server recycles processes by killing
  92.     old ones and launching new ones.</p>
  93. </section>
  94.  
  95. <directivesynopsis location="mpm_common"><name>AcceptMutex</name>
  96. </directivesynopsis>
  97. <directivesynopsis location="mpm_common"><name>CoreDumpDirectory</name>
  98. </directivesynopsis>
  99. <directivesynopsis location="mpm_common"><name>Group</name>
  100. </directivesynopsis>
  101. <directivesynopsis location="mpm_common"><name>PidFile</name>
  102. </directivesynopsis>
  103. <directivesynopsis location="mpm_common"><name>Listen</name>
  104. </directivesynopsis>
  105. <directivesynopsis location="mpm_common"><name>ListenBacklog</name>
  106. </directivesynopsis>
  107. <directivesynopsis location="mpm_common"><name>LockFile</name>
  108. </directivesynopsis>
  109. <directivesynopsis location="mpm_common"><name>MaxClients</name>
  110. </directivesynopsis>
  111. <directivesynopsis location="mpm_common"><name>MaxMemFree</name>
  112. </directivesynopsis>
  113. <directivesynopsis location="mpm_common"><name>MaxRequestsPerChild</name>
  114. </directivesynopsis>
  115. <directivesynopsis location="mpm_common"><name>MaxSpareThreads</name>
  116. </directivesynopsis>
  117. <directivesynopsis location="mpm_common"><name>MinSpareThreads</name>
  118. </directivesynopsis>
  119. <directivesynopsis location="mpm_common"><name>ScoreBoardFile</name>
  120. </directivesynopsis>
  121. <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
  122. </directivesynopsis>
  123. <directivesynopsis location="mpm_common"><name>ServerLimit</name>
  124. </directivesynopsis>
  125. <directivesynopsis location="mpm_common"><name>StartServers</name>
  126. </directivesynopsis>
  127. <directivesynopsis location="mpm_common"><name>ThreadLimit</name>
  128. </directivesynopsis>
  129. <directivesynopsis location="mpm_common"><name>ThreadsPerChild</name>
  130. </directivesynopsis>
  131. <directivesynopsis location="mpm_common"><name>User</name>
  132. </directivesynopsis>
  133.  
  134. </modulesynopsis>
  135.