Python 卡在100个请求uWSGI

Python 卡在100个请求uWSGI,python,django,nginx,uwsgi,httperf,Python,Django,Nginx,Uwsgi,Httperf,在nginx上按预期发出1000个请求 httperf ... --rate=20 --send-buffer=4096 --recv-buffer=16384 --num-conns=100 --num-calls=10 Total:连接100请求1000回复1000测试持续时间5.719秒 连接速率:17.5连接/秒(57.2毫秒/连接,这是更符合逻辑的答案: 侦听队列大小在uWSGI启动日志中报告 但由于您尚未报告您的uWSGI配置,因此无法给您正确的提示。只需在您的uWSGI配置中使

在nginx上按预期发出1000个请求

httperf ... --rate=20 --send-buffer=4096 --recv-buffer=16384 --num-conns=100 --num-calls=10
Total:连接100请求1000回复1000测试持续时间5.719秒

连接速率:17.5连接/秒(57.2毫秒/连接,这是更符合逻辑的答案:

侦听队列大小在uWSGI启动日志中报告


但由于您尚未报告您的uWSGI配置,因此无法给您正确的提示。

只需在您的uWSGI配置中使用
1024
指令。

没有配置本身,我只是安装了它并通过命令行运行它。它确实报告套接字上的100个连接限制,但当我设置-l 500时,我得到了相同的限制结果。您提供的链接提到调整操作系统队列限制-这是正确的方法吗?我认为100对于16核Nehalem来说并不多。我想您的“无配置”这意味着您仅使用一个进程运行。那么套接字最多只能管理101/102个并发连接。是的,您必须调整内核以增加套接字积压,但您也必须处理进程/线程的数量,并最终超时。关于100/16内核的比率,您可能需要阅读此文章以了解套接字bac的内容klog是什么,以及它是如何工作的。感谢链接。我后来确实发现,在没有nginx的情况下运行它不会提供那么多性能。正确设置后,它可以用Django处理2000req/s(好吧,我可以测量的大部分)@Dmitry我想看看你的配置,看看我的配置有什么可以改进的!如果可以的话?tcp\u max\u syn\u backlog是1024 somaxconn是2048
Total: connections 100 requests 1000 replies 1000 test-duration 5.719 s

Connection rate: 17.5 conn/s (57.2 ms/conn, <=24 concurrent connections)
Connection time [ms]: min 699.0 avg 861.3 max 1157.5 median 840.5 stddev 119.5
Connection time [ms]: connect 56.9
Connection length [replies/conn]: 10.000

Request rate: 174.8 req/s (5.7 ms/req)
Request size [B]: 67.0

Reply rate [replies/s]: min 182.0 avg 182.0 max 182.0 stddev 0.0 (1 samples)
Reply time [ms]: response 80.4 transfer 0.0
Reply size [B]: header 284.0 content 177.0 footer 0.0 (total 461.0)
Reply status: 1xx=0 2xx=1000 3xx=0 4xx=0 5xx=0

CPU time [s]: user 1.42 system 4.30 (user 24.9% system 75.1% total 100.0%)
Net I/O: 90.2 KB/s (0.7*10^6 bps)

Errors: total 0 client-timo 0 socket-timo 0 connrefused 0 connreset 0
Errors: fd-unavail 0 addrunavail 0 ftab-full 0 other 0
Total: connections 100 requests 200 replies 100 test-duration 5.111 s

Connection rate: 19.6 conn/s (51.1 ms/conn, <=5 concurrent connections)
Connection time [ms]: min 69.5 avg 128.4 max 226.8 median 126.5 stddev 27.9
Connection time [ms]: connect 51.4
Connection length [replies/conn]: 1.000

Request rate: 39.1 req/s (25.6 ms/req)
Request size [B]: 67.0

Reply rate [replies/s]: min 19.8 avg 19.8 max 19.8 stddev 0.0 (1 samples)
Reply time [ms]: response 68.8 transfer 8.2
Reply size [B]: header 44.0 content 2053.0 footer 0.0 (total 2097.0)
Reply status: 1xx=0 2xx=100 3xx=0 4xx=0 5xx=0

CPU time [s]: user 1.87 system 3.24 (user 36.6% system 63.4% total 100.0%)
Net I/O: 42.6 KB/s (0.3*10^6 bps)

Errors: total 100 client-timo 0 socket-timo 0 connrefused 0 connreset 100
Errors: fd-unavail 0 addrunavail 0 ftab-full 0 other 0