Should I activate keepAlive in Apache2?

Solution 1:

There are 2 good answers already, but the perhaps most important real-life issue is not mentioned yet.

First off, the OP might want to read the 2 preceding answers and this little blog post to understand what keepalives are. (The author doesn't elaborate on the part about TCPI/IP getting "faster" the longer the connection is open. It is true, longer-lasting connections benefit from IP window scaling, but the effect isn't significant unless the files are large, or the bandwith-delay product is unusually large.)

The big argument against HTTP Keepalive when using Apache is that it blocks Apache processes. I.e. a client using keepalives will prevent 'his' Apache process from serving any other clients, until the client closes the connection or the timeout is reached. In the same span of time, this Apache instance could have served many other connections.

Now, a very common Apache configuration is the Prefork MPM and a PHP / Perl / Python interpreter, and application code in the mentioned language. In this case each Apache process is "heavy" in the sense that it occupies several megabytes of RAM (Apache linked with interpreter and application code). This, together with the blocking of each keepalive'd Apache instance, is inefficient.

A common workaround is to use 2 Apache servers (both on the same physical server, or on 2 servers, as needed) with different configurations:

  • one "heavy" with mod_php (or whatever programming language is used) for dynamic content, with keepalives off.
  • one "lightweight" with a minimal set of modules, for serving static content (image, css, js etc), with keepalives on.

You can then expand on this separation of dynamic and static content when needed, for example by:

  • using an event-driven server for static content, such as nginx.
  • using a CDN for static content (could do all static content serving for you)
  • implementing caching of static and/or dynamic content

Another approach with regards to avoid blocking Apache is to use a load balancer with smarter connection handling, such as Perlbal.

.. and much more. :-)

Solution 2:

Keepalives can be good in some cases, they can be very bad in others. They reduce the time and effort of setting up a new connection, but they tie up server resources for the duration of keepalive timeout. Examples:

  • Pages with many small objects, clients on dialup - keepalive should be on.
  • Pages with a few large objects - keepalive won't be an advantage.
  • Server with very high number of unique visitors - keepalive should be off (otherwise, sockets and threads will be sitting in memory waiting for the keepalive timeout and not serving new clients).

As you can see, KeepAliveTimeout will also play a large role in optimization of your server performance.

Look at your usage pattern and decide for yourself.