我使用nginx + tornado作为我的网络搜索者。
当我使用ab进行压力测试时,服务器总是在大约37,000个请求后停止响应。如果我只使用nginx,那么测试就很好。
我的nginx.conf就像这样
上游龙卷风{
服务器127.0.0.1:8881;
服务器127.0.0.1:8882;
服务器127.0.0.1:8883;
服务器127.0.0.1:8884;
}
服务器{
听81;
#Allow文件上传
client_max_body_size 50M;
location / {
proxy_pass_header服务器;
proxy_set_header主机$ http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $ remote_addr;
proxy_set_header X-Scheme $ scheme;
proxy_pass http://tornado;
}
}
我在龙卷风服务器中使用空请求处理程序。
类Hello(tornado.web.RequestHandler):
@ tornado.web.asynchronous
@ tornado.web.gen.coroutine
def get(self):
self.write('你好,我是sickee,系统还行......')
self.finish()
我的服务器运行在centos 6.5和ulimit -n是65535, 我的ab测试命令是这样的:
ab -n 80000 -c 200 url或
ab -n 80000 -c 200 url / sid
如果我在nginx.conf中移动位置块,测试就可以了!
我的任何配置都是错的,或者龙卷风需要一些配置来支持高并发?
感谢