【发布时间】:2025-05-13 19:30:01
【问题描述】:
我的应用程序在 LAMP 服务器上运行时遇到了一些麻烦。 我会解释这个场景,下面我会告诉我我的配置和一些 AB 结果。
我正在运行一个使用 Laravel 4.2 开发的应用程序。 这是一个问答游戏,在某个时间我们有一个小组测验,每组 4 位用户。 当他们到达这个阶段时,有很多ajax请求(为了检查正确的时间,因为JS计时器不精确我每3秒向数据库请求一次并将当前时间保存在数据库中),每2秒我检查一次答案在每个组的聊天室中(所有内容都存储在 MySQL 数据库中)
我的服务器在同时处理 200、300 个用户之前运行良好,但是当达到 400、500 个用户时,服务器开始变得非常缓慢,直到一切都变成一场噩梦,没有人可以再玩了。
ajax 请求是简单的 php 文件,其中包含选择和插入查询,没有嵌套循环、连接和其他可能减慢应用程序的东西。
以下是一些信息: 服务器配置: -RAMNode 上的 SSD VPS。 -8GB 内存 - 40GB 固态硬盘 - 4 个 vCores
服务信息: Ubuntu 服务器 14.4 阿帕奇 2.4.7 PHP 5.5.9 MySQL 5.5.47 Laravel 4.2
我没有在此服务器上运行任何其他服务。 内存使用高峰(600人同时玩团战):1.5GB 处理器使用率:22%。
AB 结果:
root@server01:~# ab -r -n 27000 -c 900 -k -H "Accept-Encoding: gzip, deflate" http://repensegame.com.br/shout_benchmark.php
This is ApacheBench, Version 2.3 <$Revision: 1528965 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking repensegame.com.br (be patient)
Completed 2700 requests
Completed 5400 requests
Completed 8100 requests
Completed 10800 requests
Completed 13500 requests
Completed 16200 requests
Completed 18900 requests
Completed 21600 requests
Completed 24300 requests
Completed 27000 requests
Finished 27000 requests
Server Software: Apache/2.4.7
Server Hostname: repensegame.com.br
Server Port: 80
Document Path: /shout_benchmark.php
Document Length: 687 bytes
Concurrency Level: 900
Time taken for tests: 157.934 seconds
Complete requests: 27000
Failed requests: 10265
(Connect: 0, Receive: 296, Length: 9673, Exceptions: 296)
Keep-Alive requests: 0
Total transferred: 24637886 bytes
HTML transferred: 18335742 bytes
Requests per second: 170.96 [#/sec] (mean)
Time per request: 5264.454 [ms] (mean)
Time per request: 5.849 [ms] (mean, across all concurrent requests)
Transfer rate: 152.35 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 113 942.5 0 15004
Processing: 63 2302 11425.2 581 121540
Waiting: 0 1300 6014.9 579 102647
Total: 91 2415 11791.8 583 122541
Percentage of the requests served within a certain time (ms)
50% 583
66% 600
75% 611
80% 621
90% 684
95% 1554
98% 60434
99% 64164
100% 122541 (longest request)
root@server01:~# free -m
total used free shared buffers cached
Mem: 8192 1518 6673 72 0 1318
-/+ buffers/cache: 200 7991
Swap: 256 0 256
root@server01:~#
httpd.conf:
<IfModule mpm_worker_module>
StartServers 10
MinSpareServers 8
MaxSpareServers 128
MaxClients 2048
ServerLimit 8000
</IfModule>
<Directory />
Options FollowSymLinks
AllowOverride All
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User- Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional sites-enabled/*.conf
ExtendedStatus On
虚拟主机配置:
<VirtualHost *>
DocumentRoot /var/www/html/public
ServerName repensegame.com.br
<Directory /var/www/html/public>
allow from all
Options None
Require all granted
</Directory>
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from localhost
</Location>
ServerAlias *.repensegame.com.br
</VirtualHost>
我没有检测到任何慢查询。
就是这样。 对不起墙上的文字。
提前谢谢大家。
【问题讨论】:
-
你用ab点击主页不会带来任何有用的结果。您需要访问的是用户访问的实际页面。无论如何,你知道 500 个并发用户是相当多的。这可能是您的硬件可以处理的最大用户数。
标签: php mysql ajax apache performance