Update May 2013: We no longer recommend fcgid ever since Ubuntu Server 12.04 was released. This is because that version has PHP-FPM, which provides every benefit that fcgid has, with the added advantage of a shared opcode cache for all processes. We will be writing a full article on PHP-FPM with Drupal in the near future (soon to appear at High Performance Drupal with Apache MPM Worker Threaded Server and PHP-FPM).

Most sites that serve large Drupal instances use Apache with mod_php. Although this is often the easiest and fastest option, it may not be the ideal situation in some cases. This article explains fcgid, a way to run PHP other than mod_php, how to get it configured, and what are the advantages and disadvantages of it.

Apache's mod_php

Apache's mod_php is the most widely used mode for PHP with Apache. mod_php itself is the entire PHP interpreter embedded in each Apache process that gets spawned. This provides performance and stability benefits, e.g.

  • No need to call an external process (e.g. CGI).
  • No need to communicate with another process via sockets (e.g. Fast CGI).
  • The APC cache is shared by all Apache processes.

It also has some disadvantages

  • The memory footprint per Apache process is large, specially when sites indulge in contributed modules.
  • If Apache is serving static content, e.g. images and CSS files, it still has to spawn large processes because of the embedded PHP interpreter.

CGI

CGI (Common Gateway Interface) is the legacy way of runing applications on the web from the mid 1990s or so. It was too inefficient for anything but small sites. CGI spawns a new process for every incoming request to execute a PHP script, a very resource intensive and inefficient way of doing things. No wonder it faded away over time as web applications became more complex.

FastCGI

FastCGI was introduced to avoid some of the issues with running languages, including PHP, inside the Apache process, as well as avoiding the inefficiency of CGI.

A FastCGI application is executed outside of the web server (Apache or other wise), and waits for requests from the web server using a socket. The web server and the FastCGI application can even be on separate physical machines and communicate over the network.

Because the web server adn the application processes are separate better isolation is possible.

In reality, running PHP as mod_fastcgi with Apache has proved to be problematic. Mainly with stability. Even on Drupal.org we tried it for a while, but switched back to mod_php after some time.

mod_fcgid

mod_fcgid was introduced to be binary compatible with FastCGI, but with better control over spawning processes. The benefits of process isolation are still there.

Installing fcgid

The article assumes you are using Ubuntu/Debian. For Red Hat or Centos, use the equivalent packages and yum to achieve the same results.

First we install the required Apache components, with Apache threaded server (MPM Worker), to save memory.

aptitude install apache2-mpm-worker libapache2-mod-fcgid

Then we enable the Apache fcgid module.

a2enmod fcgid 

And install PHP CGI, and the a few other PHP components, if they are not already on your system.

aptitude install php5-cgi php5-curl php5-gd php5-mysql

Configuring fcgid

To configure fcgid, you have to do two things:

1. Create a new file in /etc/apache2/conf.d/php-fcgid.conf and put the following in it:


  AddHandler fcgid-script .fcgi .php
  # Where to look for the php.ini file?
  DefaultInitEnv PHPRC        "/etc/php5/cgi"
  # Maximum requests a process handles before it is terminated
  MaxRequestsPerProcess       1000
  # Maximum number of PHP processes
  MaxProcessCount             10
  # Number of seconds of idle time before a process is terminated
  IPCCommTimeout              240
  IdleTimeout                 240
  #Or use this if you use the file above
  FCGIWrapper /usr/bin/php-cgi .php



  ServerLimit           500
  StartServers            3
  MinSpareThreads         3
  MaxSpareThreads        10
  ThreadsPerChild        10
  MaxClients            300
  MaxRequestsPerChild  1000

For a large site with a server with more memory and CPUs we can use this:


  AddHandler fcgid-script .fcgi .php
  # Where to look for the php.ini file?
  DefaultInitEnv PHPRC  "/etc/php5/cgi"
  # Where is the PHP executable
  FCGIWrapper /usr/bin/php-cgi .php
  # Maximum requests a process handles before it is terminated
  MaxRequestsPerProcess 1500
  # Maximum number of PHP processes.
  MaxProcessCount       45
  # Number of seconds of idle time before a process is terminated
  IPCCommTimeout        240
  IdleTimeout           240


# Large site

  ServerLimit          2048
  ThreadLimit           100
  StartServers           10
  MinSpareThreads        30
  MaxSpareThreads       100
  ThreadsPerChild        64
  MaxClients           2048
  MaxRequestsPerChild  5000

2. Add ExecCGI to the Options line in the vhosts you want to use PHP and or fcgid on, for example. 

Order Allow,Deny
Allow From All
Allow Override All
Options MultiViews Indexes Includes FollowSymLinks ExecCGI

Now you should restart Apache, and fcgid should be active.

Memory consumption

The first thing you observe is that the memory size of the fcgi process is considerably larger (40MB) than when PHP is running as a mod_php within Apache (31MB). However, when using fcgi, Apache (pre-fork) is only 3.3 to 2.4 MB per process so you can have more of them to serve static files. The savings are even more if you use the threaded server. For example, an Apache process on a large site would be 20 to 25 MB, and the total number needed for thousands of threads would be 10 to 15 processes total. You also normally have less CGI processes in total than Apache.


For example:

Apache pre-fork
fcgi 15 processes * (40 MB - 21 MB shared) + 21 MB shared + (20 Apache procs * 6 MB) = 426 MB
mod_php 26 processes * (26 MB - 13 MB shared) + 13 MB shared = 351 MB

Apache threaded MPM Worker
fcgi 15 processes * (40 MB - 21 MB shared) + 21 MB shared + (10 Apache procs * 25 MB) = 290 MB
mod_php 26 processes * (26 MB - 13 MB shared) + 13 MB shared = 351 MB

The exact figures will vary for your site, depending on how you configured Apache and what modules you have enabled on your Drupal site.

Maximum number of processes

Setting the upper limit for the number php-cgi processes is possible but tricky. Normally MaxProcessCount should be the parameter to set to prevent creation of PHP processes above the number set for that parameter. I had to dig in the mod_fcgid source to find that parameter.

Make sure that you set this figure to a reasonable one. Setting it too low will cause an error to be logged in your web servers error log, for example:

[Sun Jul 25 17:06:23 2010] [notice] mod_fcgid: /home/example.com/www/index.php total process count 25 >= 25, skip the spawn request

On a 512MB VPS for example, a value of 7 to 10 seems to be adequate. For an 8GB dedicated server, a value of 45 or even higher will do. The exact figures will depend on how many modules you have, and how memory they consume.

Also, make sure that you do not set PHP_FCGI_CHILDREN at all. What happens is that fcgid uses it as a multiplier, not an upper maximum, and PHP will kept on breeding like rabbits, and the server will thrash and swap very quickly.

Performance benchmarking

We conducted performance benchmarks comparing mod_php and mod_fcgid. The conclusion is that mod_php is a bit faster than fcgid, but not by much.

Our benchmarks how the following at different concurrency levels:

With 4 concurrent users
fcgid
Transactions:                    826 hits
Response time:                  0.58 secs
Transaction rate:               6.90 trans/sec
Successful transactions:         826
Longest transaction:            2.13
Shortest transaction:           0.26
Apache mod_php
Transactions:                    853 hits
Response time:                  0.56 secs
Transaction rate:               7.12 trans/sec
Successful transactions:         853
Longest transaction:            0.95
Shortest transaction:           0.26
With 15 concurrent users:
fcgid
Transactions:                    674 hits
Elapsed time:                 120.35 secs
Response time:                  2.65 secs
Transaction rate:               5.60 trans/sec
Concurrency:                   14.83
Successful transactions:         674
Longest transaction:            7.28
Shortest transaction:           2.23
Apache mod_php
Transactions:                    748 hits
Elapsed time:                 120.42 secs
Response time:                  2.40 secs
Transaction rate:               6.21 trans/sec
Concurrency:                   14.90
Successful transactions:         748
Longest transaction:            4.19
Shortest transaction:           1.80 

Hunter Scott Newman  confirmed the benchmarks independently, and sent us the following results. Note that he is using the threded Apache server with fcgid.

Apache Worker + fcgid
4 users
Requests per second:    391.59 [#/sec] (mean)
Time per request:       10.215 [ms] (mean)
Time per request:       2.554 [ms] (mean, across all concurrent requests)
10 users
Requests per second:    585.91 [#/sec] (mean)
Time per request:       17.067 [ms] (mean)
Time per request:       1.707 [ms] (mean, across all concurrent requests)
50 users
Requests per second:    647.78 [#/sec] (mean)
Time per request:       77.187 [ms] (mean)
Time per request:       1.544 [ms] (mean, across all concurrent requests)
Apache Prefork + mod_php
4 users
Requests per second:    445.88 [#/sec] (mean)
Time per request:       8.971 [ms] (mean)
Time per request:       2.243 [ms] (mean, across all concurrent requests)
10 users
Requests per second:    655.13 [#/sec] (mean)
Time per request:       15.264 [ms] (mean)
Time per request:       1.526 [ms] (mean, across all concurrent requests)
50 users
Requests per second:    670.00 [#/sec] (mean)
Time per request:       74.627 [ms] (mean)
Time per request:       1.493 [ms] (mean, across all concurrent requests) 

Benefits and advantages

There are several advantages for using fcgid. Performance is not one of them, but the penalty may be well worth it for the following advantages:

  • Less memory consumption. Apache processes that serve static files are very small (3MB or less). So we can have more of those in memory.
  • Less network connections active, since there are less PHP process
  • Less database connections active, since there are less PHP processes. This is a very important point, since MySQL performance drops as the number of connections increase.

Case study: Large site with fcgid

In order to show what fcgid can help with, consider the following graphs. See the before and after comparison.

Memory usage by day, before and after.

Memory usage fcgid - day

The same was true over a week too.

Memory usage fcgid - by week

And the number of MySQL threads went down dramatically, because only PHP processes will connect to it, and not every Apache process.

fcgid MySQL threads

And also the number of network connections inside the server.

fcgid - Network connections

And just to make our lives easier, we wrote a monitoring script that will plot the number of php-cgi processes on a graph. We can know what is going on and what was going on too.

Munin php-cgi monitor

Caveats and precautions

Not everything is rosy though. There has to be some drawback.

APC still stores the op-code caches for Drupal and its modules. It has to do the parsing more often though, unlike on mod_php.

Because of that, you may on occasions see errors such as "Fatal error: Allowed memory size of nnnnnn bytes exhausted (tried to allocate nnnn bytes)". Reloading the page causes it to load normally.

Although we have not dug too deep into it, we have found is that APC is not shared among the processes. And because the php-cgi processes are killed and new ones spawned, the persistence of APC's user/data cache cannot be relied upon. This is not important for most users, but if you are using things like the Drupal cache router module or the performance logging module, this will impact you.

Conclusion

If pure speed is what you are after, then stay with mod_php.

However, for better resource usage and efficiency, consider moving to fcgid.

Resources

Here are some other links on fcgid. Note that some of the configurations mentioned recommend the use the PHP_FCGI_CHILDREN and other settings that proved disastrous. They also do not mention the MaxProcessCount parameter which we found from the source code.

Update: Article updated to use Apache threaded server (MPM Worker) instead of the pre-fork server. This provides lots of memory savings.

Comments

Sun, 2009/03/08 - 22:31

For the sake of completeness, we have found a few wrinkles occasionally and would like people to watch out for them and give feedback as well:

1) APC will not be in memory all the time. We have not verified whether it would be shared between instances or is a per instance, although a quick investigation suggests it is shared. This means that PHP scripts have to be parsed, tokenized and re-cached more often that with mod_php. In practice this it has little negative effect on performance, but interferes with using APC as a persistent cache (e.g. performance.module summary logging, cache router, ...etc.)

2) On at least one test site, if the site does not receive requests for some time (the timeout value for fcgid?), then the first request coming in complains about insufficient memory (and says it exceeded 16MB, although PHP is configured for 128MB). Hitting F5 makes it work.

3) Long running processes get killed after the timeout expires. This can affect cron, regardless of the set_time_limit() there.

Overall, the immense memory savings outweigh all the above though.

Thu, 2010/01/21 - 16:37

The article "FastCGI with a PHP APC Opcode Cache" at http://www.brandonturner.net/blog/2009/07/fastcgi_with_php_opcode_cache/ describes using the 3rd-party mod_fastcgi module in place of mod_fcgi. Doing so allows you to avoid the memory overhead incurred when using a PHP opcode cacher with mod_fcgi.

Article excerpt:

"Opcode caches throw a wrench in this however, because of their inability to share the cache across FastCGI processes. Hopefully one day this will be remedied. Luckily, in the meantime, PHP is capable of playing “process manager” and a single PHP process can spawn several children to handle requests. This way the parent PHP process can instantiate the opcode cache and its children can share it. You’ll see this later when we set the PHP_FCGI_CHILDREN environment variable.

"Both mod_fcgid and mod_fastcgi can be told to limit the number of PHP processes to 1 per user. The PHP process can then be told how many children to spawn. Unfortunately mod_fcgid will only send one request per child process. The fact that PHP spawns its own children is ignored by mod_fcgid. If we use mod_fcgid with our setup, we can only handle one concurrent PHP request. This is not good. A long running request could easily block multiple smaller requests.

"mod_fastcgi will send multiple simultaneous requests to a single PHP process if the PHP process has children that can handle it. This is the reason we must use mod_fastcgi to achieve our goal of one cache per user."

Sat, 2010/02/06 - 16:28

The issue here is stability and reliability. We found mod_fastcgi to be unreliable and stable. We found that fcgid much safer to use. At least this is true on Ubuntu 8.04 LTS Server Edition.

You set a maximum for the number of processes by putting:

MaxProcessCount 35

And the server is protected from overflowing memory and thrashing due to excessive swapping. A condition that every system administrator dreads and should plan to guard against it happening to their systems.

With the configuration in the article you linked to of -maxClassProcesses 1 and a high number of PHP_FCGI_CHILDREN, the only benefit is that APC is shared across all children, but there is no safety mechanism to guard against a high number of runaway PHP processes.

Add to that the instability that we saw with mod_fastcgi, and using fcgid was the logical choice for us.

Sat, 2010/11/27 - 01:18

I am a guy who was mis-leaded by this stupid article before.

There is nothing to compare between mod_fastcgi & mod_fcgid.
mod_fastcgid can work with php, and mod_fcgid cannot.

ok... you can use stupid way to work with php, but that is not php5.3.3.

Don't waste user's time!!

Sat, 2010/11/27 - 09:41

mod_fcgid works for sure. This very site is running it.

There is a big difference between mod_fcgid and mod_fastcgid. The former manages the processes from outside PHP, and keeps their number in check, and is very stable. It was written specifically to overcome certain drawbacks of the latter.

We run it for dozens of clients with both PHP 5.2 (Ubuntu 8.04) and PHP 5.3 (Ubuntu 10.04), with no issues, and very good scalability. One site gets over 3 million page views per day.

Don't let your misunderstanding stand in the way of your prejudice though ...

Sun, 2009/04/05 - 06:07

Have you tested xcache with this configuration? Are there any problems? What do you think ...
I see you have created a monitor script (munin?) to plot the php-cgi processes. Can we have access to this script?
Thanks

Sun, 2009/04/05 - 12:41

APC has proven to be the most stable accelerator for newer versions of PHP. eAccelerator and Xcache experience segfaults with PHP 5.2.x sporadically.

Here is the script to allow Munin to plot how many php-cgi-processes are in use. Name it php_processes and put it in /etc/munin/plugins.

#!/bin/sh
#
# Plugin to monitor the number of PHP processes on the machine.
#
# Copyright Khalid Baheyeldin 2009 https://2bits.com
#
# Parameters:
#
#   config   (required)
#   autoconf (optional - used by munin-config)
#
# Magick markers (optional - used by munin-config and som installation
# scripts):
#%# family=auto
#%# capabilities=autoconf

if [ "$1" = "autoconf" ]; then
  echo yes
  exit 0
fi

if [ "$1" = "config" ]; then
  echo 'graph_title Number of php-cgi processes'
  echo 'graph_args --base 1000 -l 0 '
  echo 'graph_vlabel number of php-cgi processes'
  echo 'graph_category apache'
  echo 'graph_info This graph shows the number of php-cgi processes in the system.'
  echo 'php_processes.label php-cgi'
  echo 'php_processes.draw LINE2'
  echo 'php_processes.info The current number of php-cgi processes.'
  exit 0
fi

echo -n "php_processes.value "
find /proc -maxdepth 1 -name '[1-9]*' -exec grep php-cgi {}/cmdline \; |
grep -v grep | wc -l | sed 's/\t +//' | sed 's/ *//'

Mon, 2009/04/06 - 17:51

Thanks for this information.

Everything is working as expected, but I notice that the php processes are attached to apache child, so when the process dies, php-cgi will die too and APC/XCache compiled code will be lost.

Is there any workaround?

Mon, 2009/04/06 - 23:31

I don' think so.

I think the APC shared memory is shared among all the php-cgi processes, so if one exits the cache is still there for the others.

Yes, if the last one dies, then the entire APC cache is destroyed, and will be created anew when a new PHP request comes in.

Install the apc.php that came with the APC package and point your browser to it and you will see that APC is active.

Pages

Is your Drupal or Backdrop CMS site slow?
Is it suffering from server resources shortages?
Is it experiencing outages?
Contact us for Drupal or Backdrop CMS Performance Optimization and Tuning Consulting