home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 November / PCWorld_2003-11_cd.bin / Komunik / apache / apache_2.0.47-win32-x86-no_ssl.msi / Data.Cab / F250811_perftuning.html.en < prev    next >
Extensible Markup Language  |  2003-05-29  |  53KB  |  1,060 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Apache Performance Tuning - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">Miscellaneous Documentation</a></div><div id="page-content"><div id="preamble"><h1>Apache Performance Tuning</h1>
  20. <div class="toplang">
  21. <p><span>Available Languages: </span><a href="../en/misc/perf-tuning.html" title="English"> en </a></p>
  22. </div>
  23.  
  24.  
  25.     <div class="warning"><h3>Warning:</h3>
  26.       <p>This document has not been fully updated
  27.       to take into account changes made in the 2.0 version of the
  28.       Apache HTTP Server. Some of the information may still be
  29.       relevant, but please use it with care.</p>
  30.     </div>
  31.  
  32.     <p>Orignally written by Dean Gaudet.</p>
  33.  
  34.     <p>Apache 2.0 is a general-purpose webserver, designed to
  35.     provide a balance of flexibility, portability, and performance.
  36.     Although it has not been designed specifically to set benchmark
  37.     records, Apache 2.0 is capable of high performance in many
  38.     real-world situations.</p>
  39.  
  40.     <p>Compared to Apache 1.3, release 2.0 contains many additional
  41.     optimizations to increase throughput and scalability. Most of
  42.     these improvements are enabled by default. However, there are
  43.     compile-time and run-time configuration choices that can
  44.     significantly affect performance. This document describes the
  45.     options that a server administrator can configure to tune the
  46.     performance of an Apache 2.0 installation. Some of these
  47.     configuration options enable the httpd to better take advantage
  48.     of the capabilities of the hardware and OS, while others allow
  49.     the administrator to trade functionality for speed.</p>
  50.  
  51.   </div>
  52. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#hardware">Hardware and Operating System Issues</a></li>
  53. <li><img alt="" src="../images/down.gif" /> <a href="#runtime">Run-Time Configuration Issues</a></li>
  54. <li><img alt="" src="../images/down.gif" /> <a href="#compiletime">Compile-Time Configuration Issues</a></li>
  55. <li><img alt="" src="../images/down.gif" /> <a href="#trace">Appendix: Detailed Analysis of a Trace</a></li>
  56. </ul></div>
  57. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  58. <div class="section">
  59. <h2><a name="hardware" id="hardware">Hardware and Operating System Issues</a></h2>
  60.  
  61.     
  62.  
  63.     <p>The single biggest hardware issue affecting webserver
  64.     performance is RAM. A webserver should never ever have to swap,
  65.     as swapping increases the latency of each request beyond a point
  66.     that users consider "fast enough". This causes users to hit
  67.     stop and reload, further increasing the load. You can, and
  68.     should, control the <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code> setting so that your server
  69.     does not spawn so many children it starts swapping. This procedure
  70.     for doing this is simple: determine the size of your average Apache
  71.     process, by looking at your process list via a tool such as
  72.     <code>top</code>, and divide this into your total available memory,
  73.     leaving some room for other processes.</p>
  74.  
  75.     <p>Beyond that the rest is mundane: get a fast enough CPU, a
  76.     fast enough network card, and fast enough disks, where "fast
  77.     enough" is something that needs to be determined by
  78.     experimentation.</p>
  79.  
  80.     <p>Operating system choice is largely a matter of local
  81.     concerns. But some guidelines that have proven generally
  82.     useful are:</p>
  83.  
  84.     <ul>
  85.       <li>
  86.         <p>Run the latest stable release and patchlevel of the
  87.         operating system that you choose. Many OS suppliers have
  88.         introduced significant performance improvements to their
  89.         TCP stacks and thread libraries in recent years.</p>
  90.       </li>
  91.  
  92.       <li>
  93.         <p>If your OS supports a <code>sendfile(2)</code> system
  94.         call, make sure you install the release and/or patches
  95.         needed to enable it. (With Linux, for example, this means
  96.         using Linux 2.4 or later. For early releases of Solaris 8,
  97.         you may need to apply a patch.) On systems where it is
  98.         available, <code>sendfile</code> enables Apache 2 to deliver
  99.         static content faster and with lower CPU utilization.</p>
  100.       </li>
  101.     </ul>
  102.  
  103.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  104. <div class="section">
  105. <h2><a name="runtime" id="runtime">Run-Time Configuration Issues</a></h2>
  106.  
  107.     
  108.  
  109.     <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="../mod/mod_dir.html">mod_dir</a></code></li><li><code class="module"><a href="../mod/mpm_common.html">mpm_common</a></code></li><li><code class="module"><a href="../mod/mod_status.html">mod_status</a></code></li></ul></td><td><ul><li><code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code></li><li><code class="directive"><a href="../mod/mod_dir.html#directoryindex">DirectoryIndex</a></code></li><li><code class="directive"><a href="../mod/core.html#hostnamelookups">HostnameLookups</a></code></li><li><code class="directive"><a href="../mod/core.html#enablemmap">EnableMMAP</a></code></li><li><code class="directive"><a href="../mod/core.html#enablesendfile">EnableSendfile</a></code></li><li><code class="directive"><a href="../mod/core.html#keepalivetimeout">KeepAliveTimeout</a></code></li><li><code class="directive"><a href="../mod/prefork.html#maxspareservers">MaxSpareServers</a></code></li><li><code class="directive"><a href="../mod/prefork.html#minspareservers">MinSpareServers</a></code></li><li><code class="directive"><a href="../mod/core.html#options">Options</a></code></li><li><code class="directive"><a href="../mod/mpm_common.html#startservers">StartServers</a></code></li></ul></td></tr></table>
  110.  
  111.     <h3><a name="dns" id="dns">HostnameLookups and other DNS considerations</a></h3>
  112.  
  113.       
  114.  
  115.       <p>Prior to Apache 1.3, <code class="directive"><a href="../mod/core.html#hostnamelookups">HostnameLookups</a></code> defaulted to <code>On</code>.
  116.       This adds latency to every request because it requires a
  117.       DNS lookup to complete before the request is finished. In
  118.       Apache 1.3 this setting defaults to <code>Off</code>. If you need
  119.       to have addresses in your log files resolved to hostnames, use the
  120.       <a href="../programs/logresolve.html"><code>logresolve</code></a>
  121.       program that comes with Apache, on one of the numerous log
  122.       reporting packages which are available.</p>
  123.  
  124.       <p>It is recommended that you do this sort of postprocessing of
  125.       your log files on some machine other than the production web
  126.       server machine, in order that this activity not adversely affect
  127.       server performance.</p>
  128.  
  129.       <p>If you use any <code><code class="directive"><a href="../mod/mod_access.html#allow">Allow</a></code> 
  130.       from domain</code> or <code><code class="directive"><a href="../mod/mod_access.html#deny">Deny</a></code> from domain</code> 
  131.       directives (i.e., using a hostname, or a domain name, rather than
  132.       an IP address) then you will pay for
  133.       a double reverse DNS lookup (a reverse, followed by a forward
  134.       to make sure that the reverse is not being spoofed). For best
  135.       performence, therefore, use IP addresses, rather than names, when
  136.       using these directives, if possible.</p>
  137.  
  138.       <p>Note that it's possible to scope the directives, such as
  139.       within a <code><Location /server-status></code> section.
  140.       In this case the DNS lookups are only performed on requests
  141.       matching the criteria. Here's an example which disables lookups
  142.       except for <code>.html</code> and <code>.cgi</code> files:</p>
  143.  
  144.       <div class="example"><p><code>
  145.         HostnameLookups off<br />
  146.         <Files ~ "\.(html|cgi)$"><br />
  147.         <span class="indent">
  148.           HostnameLookups on<br />
  149.         </span>
  150.         </Files>
  151.       </code></p></div>
  152.  
  153.       <p>But even still, if you just need DNS names in some CGIs you
  154.       could consider doing the <code>gethostbyname</code> call in the
  155.       specific CGIs that need it.</p>
  156.  
  157.     
  158.  
  159.     <h3><a name="symlinks" id="symlinks">FollowSymLinks and SymLinksIfOwnerMatch</a></h3>
  160.  
  161.       
  162.  
  163.       <p>Wherever in your URL-space you do not have an <code>Options
  164.       FollowSymLinks</code>, or you do have an <code>Options
  165.       SymLinksIfOwnerMatch</code> Apache will have to issue extra
  166.       system calls to check up on symlinks. One extra call per
  167.       filename component. For example, if you had:</p>
  168.  
  169.       <div class="example"><p><code>
  170.         DocumentRoot /www/htdocs<br />
  171.         <Directory /><br />
  172.         <span class="indent">
  173.           Options SymLinksIfOwnerMatch<br />
  174.         </span>
  175.         </Directory>
  176.       </code></p></div>
  177.  
  178.       <p>and a request is made for the URI <code>/index.html</code>.
  179.       Then Apache will perform <code>lstat(2)</code> on
  180.       <code>/www</code>, <code>/www/htdocs</code>, and
  181.       <code>/www/htdocs/index.html</code>. The results of these
  182.       <code>lstats</code> are never cached, so they will occur on
  183.       every single request. If you really desire the symlinks
  184.       security checking you can do something like this:</p>
  185.  
  186.       <div class="example"><p><code>
  187.         DocumentRoot /www/htdocs<br />
  188.         <Directory /><br />
  189.         <span class="indent">
  190.           Options FollowSymLinks<br />
  191.         </span>
  192.         </Directory><br />
  193.         <br />
  194.         <Directory /www/htdocs><br />
  195.         <span class="indent">
  196.           Options -FollowSymLinks +SymLinksIfOwnerMatch<br />
  197.         </span>
  198.         </Directory>
  199.       </code></p></div>
  200.  
  201.       <p>This at least avoids the extra checks for the
  202.       <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> path.
  203.       Note that you'll need to add similar sections if you
  204.       have any <code class="directive"><a href="../mod/mod_alias.html#alias">Alias</a></code> or
  205.       <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> paths
  206.       outside of your document root. For highest performance,
  207.       and no symlink protection, set <code>FollowSymLinks</code>
  208.       everywhere, and never set <code>SymLinksIfOwnerMatch</code>.</p>
  209.  
  210.     
  211.  
  212.     <h3><a name="htacess" id="htacess">AllowOverride</a></h3>
  213.  
  214.       
  215.  
  216.       <p>Wherever in your URL-space you allow overrides (typically
  217.       <code>.htaccess</code> files) Apache will attempt to open
  218.       <code>.htaccess</code> for each filename component. For
  219.       example,</p>
  220.  
  221.       <div class="example"><p><code>
  222.         DocumentRoot /www/htdocs<br />
  223.         <Directory /><br />
  224.         <span class="indent">
  225.           AllowOverride all<br />
  226.         </span>
  227.         </Directory>
  228.       </code></p></div>
  229.  
  230.       <p>and a request is made for the URI <code>/index.html</code>.
  231.       Then Apache will attempt to open <code>/.htaccess</code>,
  232.       <code>/www/.htaccess</code>, and
  233.       <code>/www/htdocs/.htaccess</code>. The solutions are similar
  234.       to the previous case of <code>Options FollowSymLinks</code>.
  235.       For highest performance use <code>AllowOverride None</code>
  236.       everywhere in your filesystem.</p>
  237.  
  238.     
  239.  
  240.     <h3><a name="negotiation" id="negotiation">Negotiation</a></h3>
  241.  
  242.       
  243.  
  244.       <p>If at all possible, avoid content-negotiation if you're
  245.       really interested in every last ounce of performance. In
  246.       practice the benefits of negotiation outweigh the performance
  247.       penalties. There's one case where you can speed up the server.
  248.       Instead of using a wildcard such as:</p>
  249.  
  250.       <div class="example"><p><code>
  251.         DirectoryIndex index
  252.       </code></p></div>
  253.  
  254.       <p>Use a complete list of options:</p>
  255.  
  256.       <div class="example"><p><code>
  257.         DirectoryIndex index.cgi index.pl index.shtml index.html
  258.       </code></p></div>
  259.  
  260.       <p>where you list the most common choice first.</p>
  261.  
  262.       <p>Also note that explicitly creating a <code>type-map</code>
  263.       file provides better performance than using
  264.       <code>MultiViews</code>, as the necessary information can be
  265.       determined by reading this single file, rather than having to
  266.       scan the directory for files.</p>
  267.  
  268.     <p>If your site needs content negotiation consider using
  269.     <code>type-map</code> files, rather than the <code>Options
  270.     MultiViews</code> directive to accomplish the negotiation. See the
  271.     <a href="../content-negotiation.html">Content Negotiation</a>
  272.     documentation for a full discussion of the methods of negotiation,
  273.     and instructions for creating <code>type-map</code> files.</p>
  274.  
  275.     
  276.  
  277.     <h3>Memory-mapping</h3>
  278.  
  279.       
  280.  
  281.       <p>In situations where Apache 2.0 needs to look at the contents
  282.       of a file being delivered--for example, when doing server-side-include
  283.       processing--it normally memory-maps the file if the OS supports
  284.       some form of <code>mmap(2)</code>.</p>
  285.  
  286.       <p>On some platforms, this memory-mapping improves performance.
  287.       However, there are cases where memory-mapping can hurt the performance
  288.       or even the stability of the httpd:</p>
  289.  
  290.       <ul>
  291.         <li>
  292.           <p>On some operating systems, <code>mmap</code> does not scale
  293.           as well as <code>read(2)</code> when the number of CPUs increases.
  294.           On multiprocessor Solaris servers, for example, Apache 2.0 sometimes
  295.           delivers server-parsed files faster when <code>mmap</code> is disabled.</p>
  296.         </li>
  297.  
  298.         <li>
  299.           <p>If you memory-map a file located on an NFS-mounted filesystem
  300.           and a process on another NFS client machine deletes or truncates
  301.           the file, your process may get a bus error the next time it tries
  302.           to access the mapped file content.</p>
  303.         </li>
  304.       </ul>
  305.  
  306.       <p>For installations where either of these factors applies, you
  307.       should use <code>EnableMMAP off</code> to disable the memory-mapping
  308.       of delivered files. (Note: This directive can be overridden on
  309.       a per-directory basis.)</p>
  310.  
  311.     
  312.  
  313.     <h3>Sendfile</h3>
  314.  
  315.       
  316.  
  317.       <p>In situations where Apache 2.0 can ignore the contents of the file
  318.       to be delivered -- for example, when serving static file content -- 
  319.       it normally uses the kernel sendfile support the file if the OS 
  320.       supports the <code>sendfile(2)</code> operation.</p>
  321.  
  322.       <p>On most platforms, using sendfile improves performance by eliminating
  323.       separate read and send mechanics.  However, there are cases where using
  324.       sendfile can harm the stability of the httpd:</p>
  325.  
  326.       <ul>
  327.         <li>
  328.           <p>Some platforms may have broken sendfile support that the build
  329.           system did not detect, especially if the binaries were built on
  330.           another box and moved to such a machine with broken sendfile support.</p>
  331.         </li>
  332.         <li>
  333.           <p>With an NFS-mounted files, the kernel may be unable 
  334.           to reliably serve the network file through it's own cache.</p>
  335.         </li>
  336.       </ul>
  337.  
  338.       <p>For installations where either of these factors applies, you
  339.       should use <code>EnableSendfile off</code> to disable sendfile
  340.       delivery of file contents. (Note: This directive can be overridden 
  341.       on a per-directory basis.)</p>
  342.  
  343.     
  344.  
  345.     <h3><a name="process" id="process">Process Creation</a></h3>
  346.  
  347.       
  348.  
  349.       <p>Prior to Apache 1.3 the <code class="directive"><a href="../mod/prefork.html#minspareservers">MinSpareServers</a></code>, <code class="directive"><a href="../mod/prefork.html#maxspareservers">MaxSpareServers</a></code>, and <code class="directive"><a href="../mod/mpm_common.html#startservers">StartServers</a></code> settings all had drastic effects on
  350.       benchmark results. In particular, Apache required a "ramp-up"
  351.       period in order to reach a number of children sufficient to serve
  352.       the load being applied. After the initial spawning of
  353.       <code class="directive"><a href="../mod/mpm_common.html#startservers">StartServers</a></code> children,
  354.       only one child per second would be created to satisfy the
  355.       <code class="directive"><a href="../mod/prefork.html#minspareservers">MinSpareServers</a></code>
  356.       setting. So a server being accessed by 100 simultaneous
  357.       clients, using the default <code class="directive"><a href="../mod/mpm_common.html#startservers">StartServers</a></code> of <code>5</code> would take on
  358.       the order 95 seconds to spawn enough children to handle
  359.       the load. This works fine in practice on real-life servers,
  360.       because they aren't restarted frequently. But does really
  361.       poorly on benchmarks which might only run for ten minutes.</p>
  362.  
  363.       <p>The one-per-second rule was implemented in an effort to
  364.       avoid swamping the machine with the startup of new children. If
  365.       the machine is busy spawning children it can't service
  366.       requests. But it has such a drastic effect on the perceived
  367.       performance of Apache that it had to be replaced. As of Apache
  368.       1.3, the code will relax the one-per-second rule. It will spawn
  369.       one, wait a second, then spawn two, wait a second, then spawn
  370.       four, and it will continue exponentially until it is spawning
  371.       32 children per second. It will stop whenever it satisfies the
  372.       <code class="directive"><a href="../mod/prefork.html#minspareservers">MinSpareServers</a></code>
  373.       setting.</p>
  374.  
  375.       <p>This appears to be responsive enough that it's almost
  376.       unnecessary to twiddle the <code class="directive"><a href="../mod/prefork.html#minspareservers">MinSpareServers</a></code>, <code class="directive"><a href="../mod/prefork.html#maxspareservers">MaxSpareServers</a></code> and <code class="directive"><a href="../mod/mpm_common.html#startservers">StartServers</a></code> knobs. When more than 4 children are
  377.       spawned per second, a message will be emitted to the
  378.       <code class="directive"><a href="../mod/core.html#errorlog">ErrorLog</a></code>. If you
  379.       see a lot of these errors then consider tuning these settings.
  380.       Use the <code class="module"><a href="../mod/mod_status.html">mod_status</a></code> output as a guide.</p>
  381.  
  382.     <p>Related to process creation is process death induced by the
  383.     <code class="directive"><a href="../mod/mpm_common.html#maxrequestsperchild">MaxRequestsPerChild</a></code>
  384.     setting. By default this is <code>0</code>,
  385.     which means that there is no limit to the number of requests
  386.     handled per child. If your configuration currently has this set
  387.     to some very low number, such as <code>30</code>, you may want to bump this
  388.     up significantly. If you are running SunOS or an old version of
  389.     Solaris, limit this to <code>10000</code> or so because of memory leaks.</p>
  390.  
  391.     <p>When keep-alives are in use, children will be kept busy
  392.     doing nothing waiting for more requests on the already open
  393.     connection. The default <code class="directive"><a href="../mod/core.html#keepalivetimeout">KeepAliveTimeout</a></code> of <code>15</code>
  394.     seconds attempts to minimize this effect. The tradeoff here is
  395.     between network bandwidth and server resources. In no event
  396.     should you raise this above about <code>60</code> seconds, as <a href="http://www.research.digital.com/wrl/techreports/abstracts/95.4.html">
  397.     most of the benefits are lost</a>.</p>
  398.  
  399.     
  400.  
  401.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  402. <div class="section">
  403. <h2><a name="compiletime" id="compiletime">Compile-Time Configuration Issues</a></h2>
  404.  
  405.     
  406.  
  407.     <h3>Choosing an MPM</h3>
  408.  
  409.       
  410.  
  411.       <p>Apache 2.x supports pluggable concurrency models, called
  412.       <a href="../mpm.html">Multi-Processing Modules</a> (MPMs).
  413.       When building Apache, you must choose an MPM to use.  There
  414.       are platform-specific MPMs for some platforms:
  415.       <code class="module"><a href="../mod/beos.html">beos</a></code>, <code class="module"><a href="../mod/mpm_netware.html">mpm_netware</a></code>,
  416.       <code class="module"><a href="../mod/mpmt_os2.html">mpmt_os2</a></code>, and <code class="module"><a href="../mod/mpm_winnt.html">mpm_winnt</a></code>.  For
  417.       general Unix-type systems, there are several MPMs from which
  418.       to choose.  The choice of MPM can affect the speed and scalability
  419.       of the httpd:</p>
  420.  
  421.       <ul>
  422.  
  423.         <li>The <code class="module"><a href="../mod/worker.html">worker</a></code> MPM uses multiple child
  424.         processes with many threads each.  Each thread handles
  425.         one connection at a time.  Worker generally is a good
  426.         choice for high-traffic servers because it has a smaller
  427.         memory footprint than the prefork MPM.</li>
  428.  
  429.         <li>The <code class="module"><a href="../mod/prefork.html">prefork</a></code> MPM uses multiple child
  430.         processes with one thread each.  Each process handles
  431.         one connection at a time.  On many systems, prefork is
  432.         comparable in speed to worker, but it uses more memory.
  433.         Prefork's threadless design has advantages over worker
  434.         in some situations: it can be used with non-thread-safe
  435.         third-party modules, and it is easier to debug on platforms
  436.         with poor thread debugging support.</li>
  437.  
  438.       </ul>
  439.  
  440.       <p>For more information on these and other MPMs, please
  441.       see the MPM <a href="../mpm.html">documentation</a>.</p>
  442.  
  443.     
  444.  
  445.     <h3><a name="modules" id="modules">Modules</a></h3>
  446.  
  447.         
  448.  
  449.         <p>Since memory usage is such an important consideration in
  450.         performance, you should attempt to eliminate modules that youare
  451.         not actually using. If you have built the modules as <a href="../dso.html">DSOs</a>, eliminating modules is a simple
  452.         matter of commenting out the associated <code class="directive"><a href="../mod/mod_so.html#loadmodule">LoadModule</a></code> directive for that module.
  453.         This allows you to experiment with removing modules, and seeing
  454.         if your site still functions in their absense.</p>
  455.  
  456.         <p>If, on the other hand, you have modules statically linked
  457.         into your Apache binary, you will need to recompile Apache in
  458.         order to remove unwanted modules.</p>
  459.  
  460.         <p>An associated question that arises here is, of course, what
  461.         modules you need, and which ones you don't. The answer here
  462.         will, of course, vary from one web site to another. However, the
  463.         <em>minimal</em> list of modules which you can get by with tends
  464.         to include <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code>, <code class="module"><a href="../mod/mod_dir.html">mod_dir</a></code>,
  465.         and <code class="module"><a href="../mod/mod_log_config.html">mod_log_config</a></code>. <code>mod_log_config</code> is,
  466.         of course, optional, as you can run a web site without log
  467.         files. This is, however, not recommended.</p>
  468.  
  469.     
  470.  
  471.     <h3>Atomic Operations</h3>
  472.  
  473.       
  474.  
  475.       <p>Some modules, such as <code class="module"><a href="../mod/mod_cache.html">mod_cache</a></code> and
  476.       recent development builds of the worker MPM, use APR's
  477.       atomic API.  This API provides atomic operations that can
  478.       be used for lightweight thread synchronization.</p>
  479.  
  480.       <p>By default, APR implements these operations using the
  481.       most efficient mechanism available on each target
  482.       OS/CPU platform.  Many modern CPUs, for example, have
  483.       an instruction that does an atomic compare-and-swap (CAS)
  484.       operation in hardware.  On some platforms, however, APR
  485.       defaults to a slower, mutex-based implementation of the
  486.       atomic API in order to ensure compatibility with older
  487.       CPU models that lack such instructions.  If you are
  488.       building Apache for one of these platforms, and you plan
  489.       to run only on newer CPUs, you can select a faster atomic
  490.       implementation at build time by configuring Apache with
  491.       the <code>--enable-nonportable-atomics</code> option:</p>
  492.  
  493.       <div class="example"><p><code>
  494.         ./buildconf<br />
  495.         ./configure --with-mpm=worker --enable-nonportable-atomics=yes
  496.       </code></p></div>
  497.  
  498.       <p>The <code>--enable-nonportable-atomics</code> option is
  499.       relevant for the following platforms:</p>
  500.  
  501.       <ul>
  502.  
  503.         <li>Solaris on SPARC<br />
  504.             By default, APR uses mutex-based atomics on Solaris/SPARC.
  505.             If you configure with <code>--enable-nonportable-atomics</code>,
  506.             however, APR generates code that uses a SPARC v8plus opcode for
  507.             fast hardware compare-and-swap.  If you configure Apache with
  508.             this option, the atomic operations will be more efficient
  509.             (allowing for lower CPU utilization and higher concurrency),
  510.             but the resulting executable will run only on UltraSPARC
  511.             chips.
  512.         </li>
  513.  
  514.         <li>Linux on x86<br />
  515.             By default, APR uses mutex-based atomics on Linux.  If you
  516.             configure with <code>--enable-nonportable-atomics</code>,
  517.             however, APR generates code that uses a 486 opcode for fast
  518.             hardware compare-and-swap.  This will result in more efficient
  519.             atomic operations, but the resulting executable will run only
  520.             on 486 and later chips (and not on 386).
  521.         </li>
  522.  
  523.       </ul>
  524.  
  525.     
  526.  
  527.     <h3>mod_status and ExtendedStatus On</h3>
  528.  
  529.       
  530.  
  531.       <p>If you include <code class="module"><a href="../mod/mod_status.html">mod_status</a></code> and you also set
  532.       <code>ExtendedStatus On</code> when building and running
  533.       Apache, then on every request Apache will perform two calls to
  534.       <code>gettimeofday(2)</code> (or <code>times(2)</code>
  535.       depending on your operating system), and (pre-1.3) several
  536.       extra calls to <code>time(2)</code>. This is all done so that
  537.       the status report contains timing indications. For highest
  538.       performance, set <code>ExtendedStatus off</code> (which is the
  539.       default).</p>
  540.  
  541.     
  542.  
  543.     <h3>accept Serialization - multiple sockets</h3>
  544.  
  545.       
  546.  
  547.       <p>This discusses a shortcoming in the Unix socket API. Suppose
  548.       your web server uses multiple <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code> statements to listen on either multiple
  549.       ports or multiple addresses. In order to test each socket
  550.       to see if a connection is ready Apache uses
  551.       <code>select(2)</code>. <code>select(2)</code> indicates that a
  552.       socket has <em>zero</em> or <em>at least one</em> connection
  553.       waiting on it. Apache's model includes multiple children, and
  554.       all the idle ones test for new connections at the same time. A
  555.       naive implementation looks something like this (these examples
  556.       do not match the code, they're contrived for pedagogical
  557.       purposes):</p>
  558.  
  559.       <div class="example"><p><code>
  560.         for (;;) {<br />
  561.         <span class="indent">
  562.           for (;;) {<br />
  563.           <span class="indent">
  564.             fd_set accept_fds;<br />
  565.             <br />
  566.             FD_ZERO (&accept_fds);<br />
  567.             for (i = first_socket; i <= last_socket; ++i) {<br />
  568.             <span class="indent">
  569.               FD_SET (i, &accept_fds);<br />
  570.             </span>
  571.             }<br />
  572.             rc = select (last_socket+1, &accept_fds, NULL, NULL, NULL);<br />
  573.             if (rc < 1) continue;<br />
  574.             new_connection = -1;<br />
  575.             for (i = first_socket; i <= last_socket; ++i) {<br />
  576.             <span class="indent">
  577.               if (FD_ISSET (i, &accept_fds)) {<br />
  578.               <span class="indent">
  579.                 new_connection = accept (i, NULL, NULL);<br />
  580.                 if (new_connection != -1) break;<br />
  581.               </span>
  582.               }<br />
  583.             </span>
  584.             }<br />
  585.             if (new_connection != -1) break;<br />
  586.           </span>
  587.           }<br />
  588.           process the new_connection;<br />
  589.         </span>
  590.         }
  591.       </code></p></div>
  592.  
  593.       <p>But this naive implementation has a serious starvation problem.
  594.       Recall that multiple children execute this loop at the same
  595.       time, and so multiple children will block at
  596.       <code>select</code> when they are in between requests. All
  597.       those blocked children will awaken and return from
  598.       <code>select</code> when a single request appears on any socket
  599.       (the number of children which awaken varies depending on the
  600.       operating system and timing issues). They will all then fall
  601.       down into the loop and try to <code>accept</code> the
  602.       connection. But only one will succeed (assuming there's still
  603.       only one connection ready), the rest will be <em>blocked</em>
  604.       in <code>accept</code>. This effectively locks those children
  605.       into serving requests from that one socket and no other
  606.       sockets, and they'll be stuck there until enough new requests
  607.       appear on that socket to wake them all up. This starvation
  608.       problem was first documented in <a href="http://bugs.apache.org/index/full/467">PR#467</a>. There
  609.       are at least two solutions.</p>
  610.  
  611.       <p>One solution is to make the sockets non-blocking. In this
  612.       case the <code>accept</code> won't block the children, and they
  613.       will be allowed to continue immediately. But this wastes CPU
  614.       time. Suppose you have ten idle children in
  615.       <code>select</code>, and one connection arrives. Then nine of
  616.       those children will wake up, try to <code>accept</code> the
  617.       connection, fail, and loop back into <code>select</code>,
  618.       accomplishing nothing. Meanwhile none of those children are
  619.       servicing requests that occurred on other sockets until they
  620.       get back up to the <code>select</code> again. Overall this
  621.       solution does not seem very fruitful unless you have as many
  622.       idle CPUs (in a multiprocessor box) as you have idle children,
  623.       not a very likely situation.</p>
  624.  
  625.       <p>Another solution, the one used by Apache, is to serialize
  626.       entry into the inner loop. The loop looks like this
  627.       (differences highlighted):</p>
  628.  
  629.       <div class="example"><p><code>
  630.         for (;;) {<br />
  631.         <span class="indent">
  632.           <strong>accept_mutex_on ();</strong><br />
  633.           for (;;) {<br />
  634.           <span class="indent">
  635.             fd_set accept_fds;<br />
  636.             <br />
  637.             FD_ZERO (&accept_fds);<br />
  638.             for (i = first_socket; i <= last_socket; ++i) {<br />
  639.             <span class="indent">
  640.               FD_SET (i, &accept_fds);<br />
  641.             </span>
  642.             }<br />
  643.             rc = select (last_socket+1, &accept_fds, NULL, NULL, NULL);<br />
  644.             if (rc < 1) continue;<br />
  645.             new_connection = -1;<br />
  646.             for (i = first_socket; i <= last_socket; ++i) {<br />
  647.             <span class="indent">
  648.               if (FD_ISSET (i, &accept_fds)) {<br />
  649.               <span class="indent">
  650.                 new_connection = accept (i, NULL, NULL);<br />
  651.                 if (new_connection != -1) break;<br />
  652.               </span>
  653.               }<br />
  654.             </span>
  655.             }<br />
  656.             if (new_connection != -1) break;<br />
  657.           </span>
  658.           }<br />
  659.           <strong>accept_mutex_off ();</strong><br />
  660.           process the new_connection;<br />
  661.         </span>
  662.         }
  663.       </code></p></div>
  664.  
  665.       <p><a id="serialize" name="serialize">The functions</a>
  666.       <code>accept_mutex_on</code> and <code>accept_mutex_off</code>
  667.       implement a mutual exclusion semaphore. Only one child can have
  668.       the mutex at any time. There are several choices for
  669.       implementing these mutexes. The choice is defined in
  670.       <code>src/conf.h</code> (pre-1.3) or
  671.       <code>src/include/ap_config.h</code> (1.3 or later). Some
  672.       architectures do not have any locking choice made, on these
  673.       architectures it is unsafe to use multiple
  674.       <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code>
  675.       directives.</p>
  676.  
  677.       <dl>
  678.         <dt><code>USE_FLOCK_SERIALIZED_ACCEPT</code></dt>
  679.  
  680.         <dd>
  681.           <p>This method uses the <code>flock(2)</code> system call to
  682.           lock a lock file (located by the <code class="directive"><a href="../mod/mpm_common.html#lockfile">LockFile</a></code> directive).</p>
  683.         </dd>
  684.  
  685.         <dt><code>USE_FCNTL_SERIALIZED_ACCEPT</code></dt>
  686.  
  687.         <dd>
  688.           <p>This method uses the <code>fcntl(2)</code> system call to
  689.           lock a lock file (located by the <code class="directive"><a href="../mod/mpm_common.html#lockfile">LockFile</a></code> directive).</p>
  690.         </dd>
  691.  
  692.         <dt><code>USE_SYSVSEM_SERIALIZED_ACCEPT</code></dt>
  693.  
  694.         <dd>
  695.           <p>(1.3 or later) This method uses SysV-style semaphores to
  696.           implement the mutex. Unfortunately SysV-style semaphores have
  697.           some bad side-effects. One is that it's possible Apache will
  698.           die without cleaning up the semaphore (see the
  699.           <code>ipcs(8)</code> man page). The other is that the
  700.           semaphore API allows for a denial of service attack by any
  701.           CGIs running under the same uid as the webserver
  702.           (<em>i.e.</em>, all CGIs, unless you use something like
  703.           <code>suexec</code> or <code>cgiwrapper</code>). For these
  704.           reasons this method is not used on any architecture except
  705.           IRIX (where the previous two are prohibitively expensive
  706.           on most IRIX boxes).</p>
  707.         </dd>
  708.  
  709.         <dt><code>USE_USLOCK_SERIALIZED_ACCEPT</code></dt>
  710.  
  711.         <dd>
  712.           <p>(1.3 or later) This method is only available on IRIX, and
  713.           uses <code>usconfig(2)</code> to create a mutex. While this
  714.           method avoids the hassles of SysV-style semaphores, it is not
  715.           the default for IRIX. This is because on single processor
  716.           IRIX boxes (5.3 or 6.2) the uslock code is two orders of
  717.           magnitude slower than the SysV-semaphore code. On
  718.           multi-processor IRIX boxes the uslock code is an order of
  719.           magnitude faster than the SysV-semaphore code. Kind of a
  720.           messed up situation. So if you're using a multiprocessor IRIX
  721.           box then you should rebuild your webserver with
  722.           <code>-DUSE_USLOCK_SERIALIZED_ACCEPT</code> on the
  723.           <code>EXTRA_CFLAGS</code>.</p>
  724.         </dd>
  725.  
  726.         <dt><code>USE_PTHREAD_SERIALIZED_ACCEPT</code></dt>
  727.  
  728.         <dd>
  729.           <p>(1.3 or later) This method uses POSIX mutexes and should
  730.           work on any architecture implementing the full POSIX threads
  731.           specification, however appears to only work on Solaris (2.5
  732.           or later), and even then only in certain configurations. If
  733.           you experiment with this you should watch out for your server
  734.           hanging and not responding. Static content only servers may
  735.           work just fine.</p>
  736.         </dd>
  737.       </dl>
  738.  
  739.       <p>If your system has another method of serialization which
  740.       isn't in the above list then it may be worthwhile adding code
  741.       for it (and submitting a patch back to Apache).</p>
  742.  
  743.       <p>Another solution that has been considered but never
  744.       implemented is to partially serialize the loop -- that is, let
  745.       in a certain number of processes. This would only be of
  746.       interest on multiprocessor boxes where it's possible multiple
  747.       children could run simultaneously, and the serialization
  748.       actually doesn't take advantage of the full bandwidth. This is
  749.       a possible area of future investigation, but priority remains
  750.       low because highly parallel web servers are not the norm.</p>
  751.  
  752.       <p>Ideally you should run servers without multiple
  753.       <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code>
  754.       statements if you want the highest performance.
  755.       But read on.</p>
  756.  
  757.     
  758.  
  759.     <h3>accept Serialization - single socket</h3>
  760.  
  761.       
  762.  
  763.       <p>The above is fine and dandy for multiple socket servers, but
  764.       what about single socket servers? In theory they shouldn't
  765.       experience any of these same problems because all children can
  766.       just block in <code>accept(2)</code> until a connection
  767.       arrives, and no starvation results. In practice this hides
  768.       almost the same "spinning" behaviour discussed above in the
  769.       non-blocking solution. The way that most TCP stacks are
  770.       implemented, the kernel actually wakes up all processes blocked
  771.       in <code>accept</code> when a single connection arrives. One of
  772.       those processes gets the connection and returns to user-space,
  773.       the rest spin in the kernel and go back to sleep when they
  774.       discover there's no connection for them. This spinning is
  775.       hidden from the user-land code, but it's there nonetheless.
  776.       This can result in the same load-spiking wasteful behaviour
  777.       that a non-blocking solution to the multiple sockets case
  778.       can.</p>
  779.  
  780.       <p>For this reason we have found that many architectures behave
  781.       more "nicely" if we serialize even the single socket case. So
  782.       this is actually the default in almost all cases. Crude
  783.       experiments under Linux (2.0.30 on a dual Pentium pro 166
  784.       w/128Mb RAM) have shown that the serialization of the single
  785.       socket case causes less than a 3% decrease in requests per
  786.       second over unserialized single-socket. But unserialized
  787.       single-socket showed an extra 100ms latency on each request.
  788.       This latency is probably a wash on long haul lines, and only an
  789.       issue on LANs. If you want to override the single socket
  790.       serialization you can define
  791.       <code>SINGLE_LISTEN_UNSERIALIZED_ACCEPT</code> and then
  792.       single-socket servers will not serialize at all.</p>
  793.  
  794.     
  795.  
  796.     <h3>Lingering Close</h3>
  797.  
  798.       
  799.  
  800.       <p>As discussed in <a href="http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt">
  801.       draft-ietf-http-connection-00.txt</a> section 8, in order for
  802.       an HTTP server to <strong>reliably</strong> implement the
  803.       protocol it needs to shutdown each direction of the
  804.       communication independently (recall that a TCP connection is
  805.       bi-directional, each half is independent of the other). This
  806.       fact is often overlooked by other servers, but is correctly
  807.       implemented in Apache as of 1.2.</p>
  808.  
  809.       <p>When this feature was added to Apache it caused a flurry of
  810.       problems on various versions of Unix because of a
  811.       shortsightedness. The TCP specification does not state that the
  812.       <code>FIN_WAIT_2</code> state has a timeout, but it doesn't prohibit it.
  813.       On systems without the timeout, Apache 1.2 induces many sockets
  814.       stuck forever in the <code>FIN_WAIT_2</code> state. In many cases this
  815.       can be avoided by simply upgrading to the latest TCP/IP patches
  816.       supplied by the vendor. In cases where the vendor has never
  817.       released patches (<em>i.e.</em>, SunOS4 -- although folks with
  818.       a source license can patch it themselves) we have decided to
  819.       disable this feature.</p>
  820.  
  821.       <p>There are two ways of accomplishing this. One is the socket
  822.       option <code>SO_LINGER</code>. But as fate would have it, this
  823.       has never been implemented properly in most TCP/IP stacks. Even
  824.       on those stacks with a proper implementation (<em>i.e.</em>,
  825.       Linux 2.0.31) this method proves to be more expensive (cputime)
  826.       than the next solution.</p>
  827.  
  828.       <p>For the most part, Apache implements this in a function
  829.       called <code>lingering_close</code> (in
  830.       <code>http_main.c</code>). The function looks roughly like
  831.       this:</p>
  832.  
  833.       <div class="example"><p><code>
  834.         void lingering_close (int s)<br />
  835.         {<br />
  836.         <span class="indent">
  837.           char junk_buffer[2048];<br />
  838.           <br />
  839.           /* shutdown the sending side */<br />
  840.           shutdown (s, 1);<br />
  841.           <br />
  842.           signal (SIGALRM, lingering_death);<br />
  843.           alarm (30);<br />
  844.           <br />
  845.           for (;;) {<br />
  846.           <span class="indent">
  847.             select (s for reading, 2 second timeout);<br />
  848.             if (error) break;<br />
  849.             if (s is ready for reading) {<br />
  850.             <span class="indent">
  851.               if (read (s, junk_buffer, sizeof (junk_buffer)) <= 0) {<br />
  852.               <span class="indent">
  853.                 break;<br />
  854.               </span>
  855.               }<br />
  856.               /* just toss away whatever is here */<br />
  857.             </span>
  858.             }<br />
  859.           </span>
  860.           }<br />
  861.           <br />
  862.           close (s);<br />
  863.         </span>
  864.         }
  865.       </code></p></div>
  866.  
  867.       <p>This naturally adds some expense at the end of a connection,
  868.       but it is required for a reliable implementation. As HTTP/1.1
  869.       becomes more prevalent, and all connections are persistent,
  870.       this expense will be amortized over more requests. If you want
  871.       to play with fire and disable this feature you can define
  872.       <code>NO_LINGCLOSE</code>, but this is not recommended at all.
  873.       In particular, as HTTP/1.1 pipelined persistent connections
  874.       come into use <code>lingering_close</code> is an absolute
  875.       necessity (and <a href="http://www.w3.org/Protocols/HTTP/Performance/Pipeline.html">
  876.       pipelined connections are faster</a>, so you want to support
  877.       them).</p>
  878.  
  879.     
  880.  
  881.     <h3>Scoreboard File</h3>
  882.  
  883.       
  884.  
  885.       <p>Apache's parent and children communicate with each other
  886.       through something called the scoreboard. Ideally this should be
  887.       implemented in shared memory. For those operating systems that
  888.       we either have access to, or have been given detailed ports
  889.       for, it typically is implemented using shared memory. The rest
  890.       default to using an on-disk file. The on-disk file is not only
  891.       slow, but it is unreliable (and less featured). Peruse the
  892.       <code>src/main/conf.h</code> file for your architecture and
  893.       look for either <code>USE_MMAP_SCOREBOARD</code> or
  894.       <code>USE_SHMGET_SCOREBOARD</code>. Defining one of those two
  895.       (as well as their companions <code>HAVE_MMAP</code> and
  896.       <code>HAVE_SHMGET</code> respectively) enables the supplied
  897.       shared memory code. If your system has another type of shared
  898.       memory, edit the file <code>src/main/http_main.c</code> and add
  899.       the hooks necessary to use it in Apache. (Send us back a patch
  900.       too please.)</p>
  901.  
  902.       <div class="note">Historical note: The Linux port of Apache didn't start to
  903.       use shared memory until version 1.2 of Apache. This oversight
  904.       resulted in really poor and unreliable behaviour of earlier
  905.       versions of Apache on Linux.</div>
  906.  
  907.     
  908.  
  909.     <h3>DYNAMIC_MODULE_LIMIT</h3>
  910.  
  911.       
  912.  
  913.       <p>If you have no intention of using dynamically loaded modules
  914.       (you probably don't if you're reading this and tuning your
  915.       server for every last ounce of performance) then you should add
  916.       <code>-DDYNAMIC_MODULE_LIMIT=0</code> when building your
  917.       server. This will save RAM that's allocated only for supporting
  918.       dynamically loaded modules.</p>
  919.  
  920.     
  921.  
  922.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  923. <div class="section">
  924. <h2><a name="trace" id="trace">Appendix: Detailed Analysis of a Trace</a></h2>
  925.  
  926.     
  927.  
  928.     <p>Here is a system call trace of Apache 2.0.38 with the worker MPM
  929.     on Solaris 8. This trace was collected using:</p>
  930.  
  931.     <div class="example"><p><code>
  932.       truss -l -p <var>httpd_child_pid</var>.
  933.     </code></p></div>
  934.  
  935.     <p>The <code>-l</code> option tells truss to log the ID of the
  936.     LWP (lightweight process--Solaris's form of kernel-level thread)
  937.     that invokes each system call.</p>
  938.  
  939.     <p>Other systems may have different system call tracing utilities
  940.     such as <code>strace</code>, <code>ktrace</code>, or <code>par</code>.
  941.     They all produce similar output.</p>
  942.  
  943.     <p>In this trace, a client has requested a 10KB static file
  944.     from the httpd. Traces of non-static requests or requests
  945.     with content negotiation look wildly different (and quite ugly
  946.     in some cases).</p>
  947.  
  948.     <div class="example"><pre>/67:    accept(3, 0x00200BEC, 0x00200C0C, 1) (sleeping...)
  949. /67:    accept(3, 0x00200BEC, 0x00200C0C, 1)            = 9</pre></div>
  950.  
  951.     <p>In this trace, the listener thread is running within LWP #67.</p>
  952.  
  953.     <div class="note">Note the lack of <code>accept(2)</code> serialization. On this
  954.     particular platform, the worker MPM uses an unserialized accept by
  955.     default unless it is listening on multiple ports.</div>
  956.  
  957.     <div class="example"><pre>/65:    lwp_park(0x00000000, 0)                         = 0
  958. /67:    lwp_unpark(65, 1)                               = 0</pre></div>
  959.  
  960.     <p>Upon accepting the connection, the listener thread wakes up
  961.     a worker thread to do the request processing. In this trace,
  962.     the worker thread that handles the request is mapped to LWP #65.</p>
  963.  
  964.     <div class="example"><pre>/65:    getsockname(9, 0x00200BA4, 0x00200BC4, 1)       = 0</pre></div>
  965.  
  966.     <p>In order to implement virtual hosts, Apache needs to know
  967.     the local socket address used to accept the connection. It
  968.     is possible to eliminate this call in many situations (such
  969.     as when there are no virtual hosts, or when
  970.     <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code> directives
  971.     are used which do not have wildcard addresses). But
  972.     no effort has yet been made to do these optimizations. </p>
  973.  
  974.     <div class="example"><pre>/65:    brk(0x002170E8)                                 = 0
  975. /65:    brk(0x002190E8)                                 = 0</pre></div>
  976.  
  977.     <p>The <code>brk(2)</code> calls allocate memory from the heap.
  978.     It is rare to see these in a system call trace, because the httpd
  979.     uses custom memory allocators (<code>apr_pool</code> and
  980.     <code>apr_bucket_alloc</code>) for most request processing.
  981.     In this trace, the httpd has just been started, so it must
  982.     call <code>malloc(3)</code> to get the blocks of raw memory
  983.     with which to create the custom memory allocators.</p>
  984.  
  985.     <div class="example"><pre>/65:    fcntl(9, F_GETFL, 0x00000000)                   = 2
  986. /65:    fstat64(9, 0xFAF7B818)                          = 0
  987. /65:    getsockopt(9, 65535, 8192, 0xFAF7B918, 0xFAF7B910, 2190656) = 0
  988. /65:    fstat64(9, 0xFAF7B818)                          = 0
  989. /65:    getsockopt(9, 65535, 8192, 0xFAF7B918, 0xFAF7B914, 2190656) = 0
  990. /65:    setsockopt(9, 65535, 8192, 0xFAF7B918, 4, 2190656) = 0
  991. /65:    fcntl(9, F_SETFL, 0x00000082)                   = 0</pre></div>
  992.  
  993.     <p>Next, the worker thread puts the connection to the client (file
  994.     descriptor 9) in non-blocking mode. The <code>setsockopt(2)</code>
  995.     and <code>getsockopt(2)</code> calls are a side-effect of how
  996.     Solaris's libc handles <code>fcntl(2)</code> on sockets.</p>
  997.  
  998.     <div class="example"><pre>/65:    read(9, " G E T   / 1 0 k . h t m".., 8000)     = 97</pre></div>
  999.  
  1000.     <p>The worker thread reads the request from the client.</p>
  1001.  
  1002.     <div class="example"><pre>/65:    stat("/var/httpd/apache/httpd-8999/htdocs/10k.html", 0xFAF7B978) = 0
  1003. /65:    open("/var/httpd/apache/httpd-8999/htdocs/10k.html", O_RDONLY) = 10</pre></div>
  1004.  
  1005.     <p>This httpd has been configured with <code>Options FollowSymLinks</code>
  1006.     and <code>AllowOverride None</code>.  Thus it doesn't need to
  1007.     <code>lstat(2)</code> each directory in the path leading up to the
  1008.     requested file, nor check for <code>.htaccess</code> files.
  1009.     It simply calls <code>stat(2)</code> to verify that the file:
  1010.     1) exists, and 2) is a regular file, not a directory.</p>
  1011.  
  1012.     <div class="example"><pre>/65:    sendfilev(0, 9, 0x00200F90, 2, 0xFAF7B53C)      = 10269</pre></div>
  1013.  
  1014.     <p>In this example, the httpd is able to send the HTTP response
  1015.     header and the requested file with a single <code>sendfilev(2)</code>
  1016.     system call. Sendfile semantics vary among operating systems. On some other
  1017.     systems, it is necessary to do a <code>write(2)</code> or
  1018.     <code>writev(2)</code> call to send the headers before calling
  1019.     <code>sendfile(2)</code>.</p>
  1020.  
  1021.     <div class="example"><pre>/65:    write(4, " 1 2 7 . 0 . 0 . 1   -  ".., 78)      = 78</pre></div>
  1022.  
  1023.     <p>This <code>write(2)</code> call records the request in the
  1024.     access log. Note that one thing missing from this trace is a
  1025.     <code>time(2)</code> call. Unlike Apache 1.3, Apache 2.0 uses
  1026.     <code>gettimeofday(3)</code> to look up the time. On some operating
  1027.     systems, like Linux or Solaris, <code>gettimeofday</code> has an
  1028.     optimized implementation that doesn't require as much overhead
  1029.     as a typical system call.</p>
  1030.  
  1031.     <div class="example"><pre>/65:    shutdown(9, 1, 1)                               = 0
  1032. /65:    poll(0xFAF7B980, 1, 2000)                       = 1
  1033. /65:    read(9, 0xFAF7BC20, 512)                        = 0
  1034. /65:    close(9)                                        = 0</pre></div>
  1035.  
  1036.     <p>The worker thread does a lingering close of the connection.</p>
  1037.  
  1038.     <div class="example"><pre>/65:    close(10)                                       = 0
  1039. /65:    lwp_park(0x00000000, 0)         (sleeping...)</pre></div>
  1040.  
  1041.     <p>Finally the worker thread closes the file that it has just delivered
  1042.     and blocks until the listener assigns it another connection.</p>
  1043.  
  1044.     <div class="example"><pre>/67:    accept(3, 0x001FEB74, 0x001FEB94, 1) (sleeping...)</pre></div>
  1045.  
  1046.     <p>Meanwhile, the listener thread is able to accept another connection
  1047.     as soon as it has dispatched this connection to a worker thread (subject
  1048.     to some flow-control logic in the worker MPM that throttles the listener
  1049.     if all the available workers are busy).  Though it isn't apparent from
  1050.     this trace, the next <code>accept(2)</code> can (and usually does, under
  1051.     high load conditions) occur in parallel with the worker thread's handling
  1052.     of the just-accepted connection.</p>
  1053.  
  1054.   </div></div>
  1055. <div class="bottomlang">
  1056. <p><span>Available Languages: </span><a href="../en/misc/perf-tuning.html" title="English"> en </a></p>
  1057. </div><div id="footer">
  1058. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  1059. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  1060. </body></html>