我正在websocket服务器上运行一个压力测试,以测量它可以同时服务多少客户端,以及取决于这个数字的多少。
我使用的服务器实现是pywebsocket,它是apache服务器的扩展。显然,这为每个新客户端创建了一个新线程。
问题是,我最多只能访问378个客户端,总是相同的数量(而且非常低),对于下一个,我会收到以下跟踪:
[2013-08-22 07:47:09,454] [ERROR] __main__.WebSocketServer: Exception in processing request from: ('::ffff:10.36.154.147', 41509, 0, 0)
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock
self.process_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 594, in process_request
t.start()
File "/usr/lib/python2.7/threading.py", line 495, in start
_start_new_thread(self.__bootstrap, ())
**error: can't start new thread**
我真的不知道这个限制可能来自哪里,它似乎很低,是进程的最大线程数,我刚刚设置为无限,或者是用户的最大进程数,现在也设置为无限。
我还检查了apache2的配置文件,这就是我在apache2.conf中所拥有的,应该足够了:
MaxKeepAliveRequests 0
KeepAliveTimeout 5
<IfModule mpm_prefork_module>
StartServers 50
ServerLimit 2000
MinSpareServers 50
MaxSpareServers 2000
MaxClients 2000
MaxRequestsPerChild 2000
</IfModule>
<IfModule mpm_worker_module>
StartServers 50
ServerLimit 2000
MinSpareThreads 50
MaxSpareThreads 2000
ThreadLimit 0
ThreadsPerChild 2000
MaxClients 2000
MaxRequestsPerChild 2000
</IfModule>
<IfModule mpm_event_module>
StartServers 50
ServerLimit 2000
MinSpareThreads 50
MaxSpareThreads 2000
ThreadLimit 0
ThreadsPerChild 2000
MaxClients 2000
MaxRequestsPerChild 2000
</IfModule>
服务器是一个带有ubuntu的Amazon EC2 t1.micro实例
还有什么原因会导致这种限制?
对于任何将创建多个线程的代码,请尝试将ulimit-s降低到比unlimite/default低得多的值,并确保/proc/sys/kernel/threads max不低于六位数。