记录自己的临时思考和碎碎念…
Spring Boot 程序 Tomcat 是内嵌在程序里面的,我们可以通过下面配置对 Tomcat 进行参数调优,提高系统吞吐量。
12345678910111213141516171819
server: port: 8113 tomcat: uri-encoding: utf-8 # 单核心CPU默认200线程,线上是4核心 max-threads: 800 # 等待队列 accept-count: 1000 # 最大连接数 默认的是 8192 max-connections: 20000 # 最小的 空闲队列数:默认10 min-spare-threads: 100spring: application: name: service-a servlet: multipart: max-request-size: 50MB max-file-size: 50MB