【Web-Apache】Worker MPM探索

Author:小怪兽Nikki 微博:@再见了小怪兽

去除http.conf中Include conf/extra/httpd-mpm.conf前的#,以使httpd-mpm.conf中的配置生效。

#Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf

一、Apache的默认情况

<pre>

<IfModule mpm_worker_module>

StartServers             3

MinSpareThreads         75

MaxSpareThreads        250

ThreadsPerChild         25

MaxRequestWorkers      400

MaxConnectionsPerChild   0

</IfModule>

</pre>

由此可见,Apache在启动时,按照默认StartServers启动3个子进程,并且由于已经符合最小空闲进程,故不再变化。

h2. 2、startServers*ThreadsPerChild < MinSpareThreads,MinSpareTreads为ThreadsPerChild的整数倍:

<pre>
<IfModule mpm_worker_module>
    StartServers             3
    MinSpareThreads         100
    MaxSpareThreads        250
    ThreadsPerChild         25
    MaxRequestWorkers      400
    MaxConnectionsPerChild   0
</IfModule>
</pre>

[[email protected] extra]# ps -ef|grep httpd
root     43900     1  0 03:37 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   43903 43900  0 03:37 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   43904 43900  0 03:37 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   43911 43900  0 03:37 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   44087 43900  0 03:37 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
root     45907 20322  0 03:37 pts/0    00:00:00 grep httpd

!http://redmine.intra.weibo.com/attachments/download/4957/%E6%97%A0%E6%A0%87%E9%A2%983.png!

由于3个初始的子进程共提供75个线程,故不满足100个最小空闲线程数的要求,所以apache新启动一个子进程来提供额外的线程.

h2. 3、startServers*ThreadsPerChild < MinSpareThreads,MinSpareTreads为ThreadsPerChild的非整数倍:

<pre>
<IfModule mpm_worker_module>
    StartServers             3
    MinSpareThreads         90
    MaxSpareThreads        250
    ThreadsPerChild         25
    MaxRequestWorkers      400
    MaxConnectionsPerChild   0
</IfModule>
</pre>

[[email protected] extra]# ps -ef|grep httpd
root     38933     1  0 03:46 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   38937 38933  0 03:46 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   38938 38933  0 03:46 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   38942 38933  0 03:46 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   39112 38933  0 03:46 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start

[[email protected] bin]# sh jingjingtest/test.sh
38937:26
38938:26
38942:26
38937:26
38938:26
38942:26
39112:26

由此可见apache在启动3个子进程后又启动一个子进程,但是并没有给新的子进程新建90-25*3=15个线程,而是也生成26个线程(其中一个为监控线程),新子进程的线程数为:ThreadsPerChild个。

h2. 4、startServers*ThreadsPerChild > MinSpareThreads

<pre>
<IfModule mpm_worker_module>
    StartServers             3
    MinSpareThreads         10
    MaxSpareThreads        250
    ThreadsPerChild         25
    MaxRequestWorkers      400
    MaxConnectionsPerChild   0
</IfModule>
</pre>

[[email protected] extra]# ps -ef|grep httpd
root     21985     1  0 03:53 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   21987 21985  0 03:53 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   21988 21985  0 03:53 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
daemon   21992 21985  0 03:53 ?        00:00:00 /data2/irunner9001/lamp/apache//bin/httpd -k start
root     23846 20322  0 03:53 pts/0    00:00:00 grep httpd

[[email protected] bin]# sh jingjingtest/test.sh
21987:26
21988:26
21992:26
21987:26
21988:26
21992:26
21987:26
21988:26
21992:26
21987:26
21988:26
21992:26

由此可见,当初始启动的线程数已经满足最小空闲线程,而没有超过最大空闲线程,则不会再清除线程。

h2. 5、有请求时,已有线程数-请求数 < 最小空闲线程:

<pre>
<IfModule mpm_worker_module>
    StartServers             3
    MinSpareThreads         75
    MaxSpareThreads        250
    ThreadsPerChild         25
    MaxRequestWorkers      400
    MaxConnectionsPerChild   0
</IfModule>
</pre>

发送请求:
> ab -n 10000 -c 10  http://10.210.228.50:9001/

各子进程线程情况:
---
19202:26
19203:26
19210:26
---
19202:26
19203:26
19210:26
---
19202:26
19203:26
19210:26
20082:26
---
19202:26
19203:26
19210:26
20082:26
---
19202:26
19203:26
19210:26
20082:26
---
19202:26
19203:26
19210:26
20082:26
---
19202:26
19203:26
19210:26
20082:26
---
19202:26
19203:26
19210:26
20082:26
---
19202:26
19203:26
19210:26
20082:26

由此可以看出,初始有3个子进程,共有3*25=75个线程,当有10个请求到来,存在空闲线程不足minSpareThread个,则新启动一个子进程。

时间: 2024-12-25 03:56:34

【Web-Apache】Worker MPM探索的相关文章

使用Apache worker MPM 来提高passenger 性能

看到了http://blog.phusion.nl/2013/03/12/tuning-phusion-passengers-concurrency-settings/的推荐,打算具体测试一下使用worker MPM对于passenger的性能提升. 实验设定:实验对象:    自己用Rails写的web service 实验工具: 自己用scala写的基于http://gatling.io/的性能测试代码 两个实验组 Prefork MPM(Default) -- Apache 默认的当前MP

apache的mpm工作模式

查看Apache工作模式的命令是: [[email protected] httpd-2.2.32]# /usr/local/apache2/bin/apachectl -M [[email protected] ~]# /usr/local/apache2/bin/apachectl -M Loaded Modules: core_module (static) authn_file_module (static) authn_default_module (static) authz_hos

apache worker性能调优

worker的工作原理及配置  相对于prefork,worker是2.0 版中全新的支持多线程和多进程混合模型的MPM.由于使用线程来处理,所以可以处理相对海量的请求,而系统资源的开销要小于基于进程的服务器.但是,worker也使用了多进程,每个进程又生成多个线程,以获得基于进程服务器的稳定性.这种MPM的工作方式将是Apache 2.0的发展趋势.  在configure -with-mpm=worker后,进行make编译.make install安装.在缺省生成的httpd.conf中有

apache中mpm分析

1.什么是MPM? Multi-Processing Module (MPM) implements a hybrid multi-process multi-threaded server.(多进程.多线程) 2.有多少种MPM? 大致有:prefork MPM.worker MPM.BeOS MPM.NetWare MPM.OS/2 MPM.WinNT MPM. 3.怎么知道apache当前用的是哪个MPM? linux及windows下都可以使用命令:"httpd -l " 进行

Apache worker/prefork模式说明及优化配置

  --with-mpm=worker 编译时可以指定 默认是perfork模式查看模式[[email protected] ~]# httpd -V | grep "Server MPM"Server MPM: Workerprefork模式(默认): 主进程 子进程 1 子进程 2 子进程 3   使用的是多个子进程,而每个进程只有一个线程,每个进程在某个确定的时间只能维持一个连接.工作原理:  控制进程最初建立若干个子进程,为了不在请求到来时再生成子进程,所以要根据需求不断的创建

一套代码小程序&amp;Web&amp;Native运行的探索05——snabbdom

接上文:一套代码小程序&Web&Native运行的探索04——数据更新 对应Git代码地址请见:https://github.com/yexiaochai/wxdemo/tree/master/mvvm 参考: https://github.com/fastCreator/MVVM(极度参考,十分感谢该作者,直接看Vue会比较吃力的,但是看完这个作者的代码便会轻易很多,可惜这个作者没有对应博客说明,不然就爽了) https://www.tangshuang.net/3756.html ht

一套代码小程序&amp;Web&amp;Native运行的探索06——组件系统

接上文:一套代码小程序&Web&Native运行的探索05——snabbdom 对应Git代码地址请见:https://github.com/yexiaochai/wxdemo/tree/master/mvvm 参考: https://github.com/fastCreator/MVVM(极度参考,十分感谢该作者,直接看Vue会比较吃力的,但是看完这个作者的代码便会轻易很多,可惜这个作者没有对应博客说明,不然就爽了) https://www.tangshuang.net/3756.htm

apache的MPM机制-prefork

apache是基于模块化设计的. 关于基础的服务,也采用了模块化的设计,但是这个模块是具有排他性的,同一时间只能有一个得到调用. MPM模块(multi processing module) 多处理模块,是一个基础模块.原来在Unix系列操作系统上运行.之后移植到其他平台上去的时候,选用了基于本地操作系统的模块. 在Unix系列上,根据是否支持线程,又产生了prefor, worker和event三种模块. prefork模块没有使用线程,是最基础的. 对于一个httpd服务器来说,为了提供好对

Windows Azure Cloud Service (12) PaaS之Web Role, Worker Role, Azure Storage Queue(下)

<Windows Azure Platform 系列文章目录> 本章DEMO部分源代码,请在这里下载. 在上一章中,笔者介绍了我们可以使用Azure PaaS的Web Role和Worker Role来处理复杂的业务逻辑 -Web Role可以快速响应前端的业务请求,并将输入保存到Azure Storage Queue中 -Worker Role将数据从Queue中读取,可以在后端处理复杂的业务逻辑 -可以看到,Azure Storage Queue是前端业务逻辑和后端业务处理的桥梁 该架构图