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