1、替換 tomcat
首先,把 tomcat 換成 undertow,這個性能在 Jmeter 的壓測下,undertow 比 tomcat 高一倍
第一步,pom 修改去除tomcat
org.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-starter-tomcatorg.springframework.bootspring-boot-starter-undertow
第二步,配置
server:
undertow:
max-http-post-size: 0
# 設置IO線程數, 它主要執行非阻塞的任務,它們會負責多個連接, 默認設置每個CPU核心一個線程,數量和CPU 內核數目一樣即可
io-threads: 4
# 阻塞任務線程池, 當執行類似servlet請求阻塞操作, undertow會從這個線程池中取得線程,它的值設置取決于系統的負載 io-threads*8
worker-threads: 32
# 以下的配置會影響buffer,這些buffer會用于服務器連接的IO操作,有點類似netty的池化內存管理
# 每塊buffer的空間大小,越小的空間被利用越充分
buffer-size: 1024
# 每個區分配的buffer數量 , 所以pool的大小是buffer-size * buffers-per-region
# buffers-per-region: 1024 # 這個參數不需要寫了
# 是否分配的直接內存
direct-buffers: true
2、替換 HTTPClient
第一步,加依賴
io.github.openfeignfeign-httpclient
第二部,在 application.yml或者 bootstrap.yml 里面配置
# feign配置
feign:
hystrix:
# 在feign中開啟hystrix功能,默認情況下feign不開啟hystrix功能
enabled: true
## 配置httpclient線程池
httpclient:
enabled: true
okhttp:
enabled: false
第三步,配置 HTTPClient Bean
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.TimeUnit;
import org.apache.http.client.HttpClient;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.impl.client.DefaultConnectionKeepAliveStrategy;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class HttpPool {
@Bean
public HttpClient httpClient(){
System.out.println("===== Apache httpclient 初始化連接池開始===" );
// 生成默認請求配置
RequestConfig.Builder requestConfigBuilder = RequestConfig.custom();
// 超時時間
requestConfigBuilder.setSocketTimeout(5 * 1000);
// 連接時間
requestConfigBuilder.setConnectTimeout(5 * 1000);
RequestConfig defaultRequestConfig = requestConfigBuilder.build();
// 連接池配置
// 長連接保持30秒
final PoolingHttpClientConnectionManager pollingConnectionManager = new PoolingHttpClientConnectionManager(30, TimeUnit.MILLISECONDS);
// 總連接數
pollingConnectionManager.setMaxTotal(1000);
// 同路由的并發數
pollingConnectionManager.setDefaultMaxPerRoute(100);
// httpclient 配置
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
// 保持長連接配置,需要在頭添加Keep-Alive
httpClientBuilder.setKeepAliveStrategy(new DefaultConnectionKeepAliveStrategy());
httpClientBuilder.setConnectionManager(pollingConnectionManager);
httpClientBuilder.setDefaultRequestConfig(defaultRequestConfig);
HttpClient client = httpClientBuilder.build();
// 啟動定時器,定時回收過期的連接
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
System.out.println("=====closeIdleConnections===");
pollingConnectionManager.closeExpiredConnections();
pollingConnectionManager.closeIdleConnections(5, TimeUnit.SECONDS);
}
}, 10 * 1000, 5 * 1000);
System.out.println("===== Apache httpclient 初始化連接池完畢===");
return client;
}
}
3、配置 Hystrix
第一步,依賴
org.springframework.cloudspring-cloud-starter-hystrix
第二步,配置
# 配置hystrix的參數
hystrix:
threadpool:
# default: 默認參數,作用的所有的hystrix的客戶端,如果需要對某個具體的接口,可以寫接口+方法名稱
default:
coreSize: 500
command:
default:
fallback:
# 是否開啟回退方法
enabled: true
execution:
isolation:
thread:
timeoutInMilliseconds: 30000 #缺省為1000
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
Linux
+關注
關注
87文章
11296瀏覽量
209348 -
JAVA
+關注
關注
19文章
2966瀏覽量
104704 -
數據庫
+關注
關注
7文章
3794瀏覽量
64364 -
python
+關注
關注
56文章
4793瀏覽量
84631 -
性能優化
+關注
關注
0文章
18瀏覽量
7429
發布評論請先 登錄
相關推薦
如何用ACM簡化你的Spring Cloud微服務環境配置管理
摘要: 本文我們就如何使用阿里云ACM這樣的配置管理產品在Spring Cloud中替代Spring Cloud Config幫助簡化環境配置管理做一個簡單的示例,幫助你理解基于ACM
發表于 02-02 14:18
EDAS再升級!全面支持Spring Cloud應用
。服務器的不斷增加對于運維人員也是一個極大的挑戰。開發、測試、線上環境差異性,交付流程越來越復雜,新應用上線不僅效率低,而且風險高。為了優化Spring Cloud微服務體驗,就必須補充一個應用程序平臺
發表于 02-02 15:20
使用阿里云ACM簡化你的Spring Cloud微服務環境配置管理
摘要: 本文我們就如何使用阿里云ACM這樣的配置管理產品在Spring Cloud中替代Spring Cloud Config幫助簡化環境配置管理做一個簡單的示例,幫助你理解基于ACM
發表于 07-04 17:16
Dubbo Cloud Native 之路的實踐與思考
CNCF 架構體系Spring Cloud 架構體系Dubbo 架構體系Dubbo Cloud Native 準備Dubbo 注解驅動(Annotation-Driven
發表于 07-05 16:05
Spring Cloud Function基于Spring Boot的函數計算框架
./oschina_soft/spring-cloud-function.zip
發表于 05-13 10:16
?0次下載
RabbitRpc基于spring cloud的微服務rpc調用
./oschina_soft/gitee-spring-cloud-rabbitrpc.zip
發表于 06-14 09:51
?1次下載
Spring Cloud Gateway服務網關的部署與使用詳細教程
一、為什么需要服務網關: 1、什么是服務網關: 2、服務網關的基本功能: 3、流量網關與服務網關的區別: 二、服務網關的部署: 1、主流網關的對比與選型: 2、Spring Cloud
如何解決Spring Cloud下測試環境路由問題
Spring Cloud Tencent 微服務開發框架自六月底正式對外宣發后,受到了許多開發者非常火熱的關注。不到一個月時間, Github Star 數就已突破 2000,超過 1000 名
Spring Cloud Tencent發布最新匹配版本!
無論北極星還是 Spring Cloud Tencent 當前都在積極的修復 Bug、完善用戶體驗、迭代新功能。所以 Spring Cloud Tencent 也第一時間適配了
Spring Cloud 2022.0.0正式發布
由于 Spring 現在提供了他們自己實現的接口 HTTP 客戶端解決方案,因此從 2022.0.0 開始,Spring Cloud OpenFeign 已到達特性完成狀態。這意味著 Spri
Spring Cloud :打造可擴展的微服務網關
Spring Cloud Gateway是一個基于Spring Framework 5和Project Reactor的反應式編程模型的微服務網關。它提供了豐富的功能,包括動態路由、請求限流、集成安全性等,使其成為構建微服務架構
dubbo和spring cloud區別
Dubbo和Spring Cloud是兩個非常流行的微服務框架,各有自己的特點和優勢。在本文中,我們將詳細介紹Dubbo和Spring Cloud的區別。 1.架構設計: Dubbo是
評論