当前位置: 代码迷 >> 高性能WEB开发 >> apache+tomcat+JK 集群 并发,该如何处理
  详细解决方案

apache+tomcat+JK 集群 并发,该如何处理

热度:609   发布时间:2013-09-07 14:12:44.0
apache+tomcat+JK 集群 并发
 问题:并发一直上不去。求大神指点。

测试机环境:Red hat6.3 IBM 8G 内存 4核处理器

主要配置清单:

httpd-mpm.conf

<IfModule mpm_prefork_module>
    ServerLimit      4000
    StartServers      128
    MinSpareServers   128
    MaxSpareServers   256
    MaxClients       4000
    MaxRequestsPerChild   0
</IfModule>

<IfModule mpm_worker_module>
    StartServers          5
    ServerLimit          20
    ThreadLimit         200
    MaxClients         4000
    MinSpareThreads      25
    MaxSpareThreads     250
    ThreadsPerChild     200
    MaxRequestsPerChild   0
</IfModule>

<IfModule mpm_beos_module>
    StartThreads            10
    MaxClients              50
    MaxRequestsPerThread 10000
</IfModule>

<IfModule mpm_netware_module>
    ThreadStackSize      65536
    StartThreads           250
    MinSpareThreads         25
    MaxSpareThreads        250
    MaxThreads            1000
    MaxRequestsPerChild      0
    MaxMemFree             100
</IfModule>

<IfModule mpm_mpmt_os2_module>
    StartServers           2
    MinSpareThreads        5
    MaxSpareThreads       10
    MaxRequestsPerChild    0
  相关解决方案