How do I select which Apache MPM to use?

183,500

Solution 1

There are a number of MPM modules (Multi-Processing Modules), but by far the most widely used (at least on *nix platforms) are the three main ones: prefork, worker, and event. Essentially, they represent the evolution of the Apache web server, and the different ways that the server has been built to handle HTTP requests within the computing constraints of the time over its long (in software terms) history.


prefork

mpm_prefork is.. well.. it's compatible with everything. It spins off a number of child processes for serving requests, and the child processes only serve one request at a time. Because it's got the server process sitting there, ready for action, and not needing to deal with thread marshaling, it's actually faster than the more modern threaded MPMs when you're only dealing with a single request at a time - but concurrent requests suffer, since they're made to wait in line until a server process is free. Additionally, attempting to scale up in the count of prefork child processes, you'll easily suck down some serious RAM.

It's probably not advisable to use prefork unless you need a module that's not thread safe.

Use if: You need modules that break when threads are used, like mod_php. Even then, consider using FastCGI and php-fpm.

Don't use if: Your modules won't break in threading.

worker

mpm_worker uses threading - which is a big help for concurrency. Worker spins off some child processes, which in turn spin off child threads; similar to prefork, some spare threads are kept ready if possible, to service incoming connections. This approach is much kinder on RAM, since the thread count doesn't have a direct bearing on memory use like the server count does in prefork. It also handles concurrency much more easily, since the connections just need to wait for a free thread (which is usually available) instead of a spare server in prefork.

Use if: You're on Apache 2.2, or 2.4 and you're running primarily SSL.

Don't use if: You really can't go wrong, unless you need prefork for compatibility.

However, note that the treads are attached to connections and not requests - which means that a keep-alive connection always keeps a hold of a thread until it's closed (which can be a long time, depending on your configuration). Which is why we have..

event

mpm_event is very similar to worker, structurally; it's just been moved from 'experimental' to 'stable' status in Apache 2.4. The big difference is that it uses a dedicated thread to deal with the kept-alive connections, and hands requests down to child threads only when a request has actually been made (allowing those threads to free back up immediately after the request is completed). This is great for concurrency of clients that aren't necessarily all active at a time, but make occasional requests, and when the clients might have a long keep-alive timeout.

The exception here is with SSL connections; in that case, it behaves identically to worker (gluing a given connection to a given thread until the connection closes).

Use if: You're on Apache 2.4 and like threads, but you don't like having threads waiting for idle connections. Everyone likes threads!

Don't use if: You're not on Apache 2.4, or you need prefork for compatibility.


In today's world of slowloris, AJAX, and browsers that like to multiplex 6 TCP connections (with keep-alive, of course) to your server, concurrency is an important factor in making your server scale and scale well. Apache's history has tied it down in this regard, and while it's really still not up to par with the likes of nginx or lighttpd in terms of resource usage or scale, it's clear that the development team is working toward building a web server that's still relevant in today's high-request-concurrency world.

Solution 2

Here is a good explanation of how it works with gifs:

https://www.datadoghq.com/blog/monitoring-apache-web-server-performance/

Briefly: if you on 2.4 and you need httpd as a reverse proxy (dispatcher) so your choice is an Event MPM

Solution 3

As of February 2018, the Apache 2.4 documentation for Event MPM states that using Apache as a proxy will keep the "improved connection handling" since 2.4.24 from working as designed. See the Limitations section.

The issue is that, as a proxy, the worker cannot tell where the end of the response is, and will be forced to wait until the entire response is seen before returning control to the listener.

For this reason, it seems that using the Worker model may be best for when apache is used as a proxy. It is not really clear to me if there are advantages to the event model in a proxy environment, but perhaps there are.

Solution 4

Mostly depends on which Apache modules you want to use. I think worker is generally the default choice, but some (older) modules require forking and depend on prefork.

If you have no preferences, I recommend you go with the preferred dependency from your OS distribution. Ubuntu for example will by default install mpm-worker when you install Apache2.

Share:
183,500

Related videos on Youtube

Tiffany Walker
Author by

Tiffany Walker

Updated on September 18, 2022

Comments

  • Tiffany Walker
    Tiffany Walker almost 2 years

    This is a Canonical Question about selecting the right Apache httpd MPM.

    I'm a little confused between the different MPMs offered by Apache - 'worker', 'event', 'prefork', etc.

    What are the major differences between them, and how can I decide which one will be best for a given deployment?

    • Admin
      Admin about 12 years
      If you are supporting mod_php, then you are doing prefork.
    • Admin
      Admin about 12 years
      @Zoredache: ? she never mentioned PHP, and even if she had, mod_php would only rule out event. Or are you still clinging to a remark made by RL 8 years ago? Last bug logged in PHP related to threaded apache was in 2005.
    • Admin
      Admin about 12 years
      Sorry - got to vote to close this - is far too broad a questionto answer here.
    • Admin
      Admin about 12 years
      @symcbean Re: PHP and Threads - PHP's core is threadsafe these days but lots of other stuff you'll find people compiling in isn't. I've been bitten as recently as last year, so it's very much a "test (extensively) before relying on it in production" situation still...
    • Admin
      Admin about 12 years
      Depending on the OS you're using you may not even have all those options available with a standard install.
  • symcbean
    symcbean about 12 years
    -1: IME, worker only reduces the size of the httpd footprint by in the region of 15% (IIRC Linux reports COW in RSS which makes pre-fork look as if it using much more memory than it does). There's negligible difference between the kernel footprint for a process and an NPTL thread. It's a long way from earth-shattering. I don't understand why you think that waiting for and allocating a thread is more efficient in scheduling terms than waiting for / scheduling a (pre-forked) process. Nor what bearing you think SSL has on the whole she-bang.
  • ravi yarlagadda
    ravi yarlagadda about 12 years
    @symcbean So you're saying that 15% RAM usage isn't significant? That's fine, but my opinion would be otherwise. Concurrency performance claims are not my own. See here. And the SSL difference is spelled out plainly in the documentation for the event MPM: The improved connection handling does not yet work for certain connection filters, in particular SSL. For SSL connections, this MPM will fall back to the behaviour of the worker MPM and reserve one worker thread per connection.
  • Kelly Elton
    Kelly Elton almost 12 years
    @ShaneMadden ` and while it's really still not up to par with the likes of nginx or lighttpd in terms of resource usage or scale` I've had apache floor both of those systems.
  • DASKAjA
    DASKAjA almost 11 years
    @ShaneMadden in regard to the problem with SSL and the event MPM: Do you know if nginx handles this significantly better than apache?
  • BioHazard
    BioHazard over 8 years
    It seems that if you compile apache 2.4 without knowing about mpm modules it comes with module named event mpm module and it works with mod_php7 (right now I m researching mpm because apache2.4 is exceeding mysql connection limit while apache 2.2 with same mysql server is not)
  • JustAMartin
    JustAMartin over 8 years
    I wonder, where to find compiled Apache for Windows with mpm_prefork mode. Currently I have some issues with getenv/putenv variables in PHP -they get messed up because of single-process but I'd like to have each request in a separate process.
  • aaa90210
    aaa90210 about 8 years
    "gluing a given connection to a given thread until the connection closes" -- more like gluing a given thread to the connection. It's the fact the thread can't do anything else until the connection closes which is the problem.
  • David Okwii
    David Okwii over 7 years
    Hello, so if am using FastCGI and php-fpm, which MPM do I use?
  • pepoluan
    pepoluan about 7 years
    @DavidOkwii mpm_event is the mod du jour. But on Apache 2.4.24 or newer. Older than that, use mpm_worker.
  • Peter Thomassen
    Peter Thomassen almost 7 years
    The limitation of the event MPM when using SSL connections does no longer appear to be true. The manual httpd.apache.org/docs/2.4/mod/event.html now says: "These improvements are valid for both HTTP/HTTPS connections." Thus, on Apache 2.4, event now appears to be always advisable, while worker is still there from 2.2 times.
  • Geremia
    Geremia over 6 years
    Why is worker best for SSL?
  • bokan
    bokan over 5 years
    Even if we use SSL ? I use apache as a proxy and SSL enabler on a non SSL website.
  • Yura
    Yura over 5 years
    @bokan looks like yes, this is the best, but anyway proxying is limited for SSL
  • Rick
    Rick about 5 years
    Wow~ The blog post is way better than the accepted answer, and the gifs are wonderful ! Thankssss. You saved my day.