- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我测试了 Java Spring 框架的性能,具有 Spring Boot + SSL 等功能来开发 REST API。
我发现如果我在 Spring 框架中添加 SSL 功能,它会消耗太多 CPU。但是,我删除了 SSL 功能,这个问题就不会发生了。
我通过发送当前 20 个 HTTP 请求/秒或 100 个请求/秒来测试 REST 应用程序来进行压力测试,应用程序将始终消耗近 200% 的 CPU。
我已经将应用程序服务从 Spring 更改为 Tomcat。结果是一样的。
Test Environment
- Sender : Loading Test Generator Ubuntu, Dual Core, EC2 on AWS.
- Receiver: Spring-Boot + SSL, Ubuntu, Dual Core, EC2 on AWS.
以下是接收服务器上的测试程序。
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Hello world!
*
*/
@SpringBootApplication
//@EnableAutoConfiguration
public class App
{
public static void main( String[] args )
{
SpringApplication.run(App.class, args);
}
}
以下是发送方服务器围攻中的Loading Test Generator命令。
//Current 1 request
siege -b -c6 -t60S https://receiver Server IP:8443/
//Current 100 request
siege -b -c100 -t60S https://receiver Server IP:8443/
以下信息是我在接收服务器上的测试结果。
Current Requests/sec Usage of CPU1 Usage of CPU2 Succ
1 40% 40% 100%
2 80% 80% 100%
3 95% 95% 100%
6 100% 100% 100%
100 100% 100% 100%
600 100% 100% 100%
似乎Spring的最大性能是3个请求/秒,而CPU的使用率低于100%。尽管 spring 应用程序可以处理所有请求,但它非常消耗 CPU。
请下载如下非常简单的代码并试一试。 https://github.com/dpomaresp/Spring-boot-with-ssl
你能帮我澄清一下这个问题吗?为什么会出现这个奇怪的问题?是Spring框架的问题吗?
非常感谢您在此问题上提供的帮助。
埃里克
最佳答案
我遇到了同样的问题。降级 tomcat 对我有用。参见 http://tomcat.10.x6.nabble.com/High-CPU-Consumption-with-Tomcat-8-5-4-NIO-and-SSL-td5054445.html
关于java - Spring 启动 + SSL : Consuming Too much CPU,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39388847/
我是一名优秀的程序员,十分优秀!