| Apache-GTopLimit documentation | view source | Contained in the Apache-GTopLimit distribution. |
Apache::GTopLimit - Limit Apache httpd processes
This module allows you to kill off Apache httpd processes if they grow too large or have too little of shared memory. You can choose to set up the process size limiter to check the process size on every request:
# in your startup.pl:
# ___________________
use Apache::GTopLimit;
# Control the life based on memory size
# in KB, so this is ~10MB
$Apache::GTopLimit::MAX_PROCESS_SIZE = 10000;
# Control the life based on Shared memory size
# in KB, so this is ~4MB
$Apache::GTopLimit::MIN_PROCESS_SHARED_SIZE = 4000;
# Control the life based on UnShared memory size
# in KB, so this is ~6MB
$Apache::GTopLimit::MAX_PROCESS_UNSHARED_SIZE = 6000;
# in your httpd.conf:
# ___________________
# debug mode must be set before the module is loaded
PerlSetVar Apache::GTopLimit::DEBUG 1
# register handler
PerlFixupHandler Apache::GTopLimit
# you can set this up as any Perl*Handler that handles
# part of the request, even the LogHandler will do.
Or you can just check those requests that are likely to get big or unshared. This way of checking is also easier for those who are mostly just running Apache::Registry scripts:
# in your handler/CGI script
use Apache::GTopLimit;
# Max Process Size in KB
Apache::GTopLimit->set_max_size(10000);
and/or
use Apache::GTopLimit;
# Min Shared process Size in KB
Apache::GTopLimit->set_min_shared_size(4000);
and/or
use Apache::GTopLimit;
# Min UnShared process Size in KB
Apache::GTopLimit->set_max_unshared_size(6000);
Since accessing the process info might add a little overhead, you may want to only check the process size every N times. To do so, put this in your startup.pl or CGI:
$Apache::GTopLimit::CHECK_EVERY_N_REQUESTS = 2;
This will only check the process size every other time the process size checker is called.
Note: The MAX_PROCESS_SIZE, MIN_PROCESS_SHARED_SIZE and
MAX_PROCESS_UNSHARED_SIZE are independent, and each will be checked
if only set. So if you set the first two -- the process can be killed
if it grows beyond the limit or its shared memory goes below the
limit. It's better not to mix MAX_PROCESS_UNSHARED_SIZE with the
first two.
This module will run on platforms supported by GTop.pm a Perl interface to libgtop (which in turn needs libgtop : See http://home-of-linux.org/gnome/libgtop/ ).
This module was written in response to questions on the mod_perl mailing list on how to tell the httpd process to exit if:
its memory size goes beyond a specified limit
its shared memory size goes below a specified limit
its unshared memory size goes beyond a specified limit
There are two big reasons your httpd children will grow. First, it could have a bug that causes the process to increase in size dramatically, until your system starts swapping. Second, your process just does stuff that requires a lot of memory (or leaks memory) , and the more different kinds of requests your server handles, the larger the httpd processes grow over time.
This module will not really help you with the first problem. For that you should probably look into Apache::Resource or some other means of setting a limit on the data size of your program. BSD-ish systems have setrlimit() which will croak your memory gobbling processes. However it is a little violent, terminating your process in mid-request.
This module attempts to solve the second situation where your process slowly grows over time. The idea is to check the memory usage after every request, and if it exceeds a threshold, exit gracefully.
By using this module, you should be able to discontinue using the Apache configuration directive MaxRequestsPerChild, although for some folks, using both in combination does the job. Personally, I just use the technique shown in this module and set my MaxRequestsPerChild value to 6000.
Stas Bekman <stas@stason.org>
An almost complete rewrite of Apache::SizeLimit toward using GTop
module (based on crossplatfom glibtop). The moment glibtop will be
ported on all the platforms Apache::SizeLimit runs at (I think only
Solaris is missing) Apache::SizeLimit will become absolete.
Doug Bagley wrote the original Apache::SizeLimit
See external file 'Changes'.
The Apache::GTopLimit module is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
| Apache-GTopLimit documentation | view source | Contained in the Apache-GTopLimit distribution. |