gpt4 book ai didi

tomcat - Tomcat 8 的最大并发连接数

转载 作者:行者123 更新时间:2023-11-28 22:18:15 24 4
gpt4 key购买 nike

我有 2 个服务器 AWS EC2,每个服务器是:CPU=2 RAM=15GB。

我使用域名http

我将 AWS ELB 用于 2 个服务器。

我在 2 个服务器上使用 tomcat 8。

我使用 AB 进行测试连接但请求失败。

ab -n 4000 -c 4000 -k -H "Accept-Encoding: gzip, deflate" http://mywebsite.com

我想问问我的服务器有多少并发连接请求?

最佳答案

默认为 10000

这里是tomcat 8的源码,可以自己设置。

    private int maxConnections = 10000;
public void setMaxConnections(int maxCon) {
this.maxConnections = maxCon;
LimitLatch latch = this.connectionLimitLatch;
if (latch != null) {
// Update the latch that enforces this
if (maxCon == -1) {
releaseConnectionLatch();
} else {
latch.setLimit(maxCon);
}
} else if (maxCon > 0) {
initializeConnectionLatch();
}
}

关于tomcat - Tomcat 8 的最大并发连接数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35028998/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com