Apache:通过 Googlebot 连接,单个进程占用所有服务器内存

Apache:通过 Googlebot 连接,单个进程占用所有服务器内存

下列的https://serverfault.com/questions/418735/unbelievable-issue-a-single-apache-process-takes-4-gb-of-memory我将其作为新问题发布,因为我能够确定当连接的客户端是 Googlebot 时就会发生这种情况。

我说的“它”是指一个 Apache 进程就占用了 5 GB 的内存?!

有人知道这可能是什么原因造成的吗?

非常感谢您的帮助!

我发现另一个问题有完全相同的问题但没有答案: https://serverfault.com/questions/161478/apache-process-assuming-use-all-memory-on-the-server

我们的环境使用 PHP 和 postgresql:

# httpd -V
Server version: Apache/2.2.3
Server built:   Jun  6 2012 10:00:42
Server's Module Magic Number: 20051115:3
Server loaded:  APR 1.2.7, APR-Util 1.2.7
Compiled using: APR 1.2.7, APR-Util 1.2.7
Architecture:   64-bit
Server MPM:     Prefork
  threaded:     no
    forked:     yes (variable process count)
Server compiled with....
 -D APACHE_MPM_DIR="server/mpm/prefork"
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=128
 -D HTTPD_ROOT="/etc/httpd"
 -D SUEXEC_BIN="/usr/sbin/suexec"
 -D DEFAULT_PIDLOG="run/httpd.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_LOCKFILE="logs/accept.lock"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="conf/mime.types"
 -D SERVER_CONFIG_FILE="conf/httpd.conf"

答案1

最后我们找到了解决方案,但不是通过查看日志!

完全不可能通过任何可能的解决方案来了解问题的原因。即使使用核心转储或 strace,也无法成功进行理性分析!

直到现在,即使问题已经解决,我仍然无法理解问题的真正来源和/或如何理解或分析它。因此,很难保证我们的解决方案确实是解决方案!

据我所知,解决方案似乎是每个子进程的最大请求数关于 MaxRequestsPerChild 的 ServerFault 帖子

相关内容