這篇文章主要介紹“Spring Boot怎么提升服務吞吐量”,在日常操作中,相信很多人在Spring Boot怎么提升服務吞吐量問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring Boot怎么提升服務吞吐量”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
創(chuàng)新互聯(lián)成立與2013年,先為筠連等服務建站,筠連等地企業(yè),進行企業(yè)商務咨詢服務。為筠連企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。
生產(chǎn)環(huán)境偶爾會有一些慢請求導致系統(tǒng)性能下降,吞吐量下降,下面介紹幾種優(yōu)化建議。
電子商務類型網(wǎng)站大多都是短請求,一般響應時間都在100ms,這時可以將web容器從tomcat替換為undertow,下面介紹下步驟:
1、增加pom配置
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-web</artifactid> <exclusions> <exclusion> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-tomcat</artifactid> </exclusion> </exclusions> </dependency> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-undertow</artifactid> </dependency>
2、增加相關配置
server: undertow: direct-buffers: true io-threads: 4 worker-threads: 160
重新啟動可以在控制臺看到容器已經(jīng)切換為undertow了。
推薦閱讀:吊打 Tomcat ,Undertow 性能很炸??!
將部分熱點數(shù)據(jù)或者靜態(tài)數(shù)據(jù)放到本地緩存或者redis中,如果有需要可以定時更新緩存數(shù)據(jù)
在代碼過程中我們很多代碼都不需要等返回結果,也就是部分代碼是可以并行執(zhí)行,這個時候可以使用異步,最簡單的方案是使用springboot提供的@Async注解,當然也可以通過線程池來實現(xiàn),下面簡單介紹下異步步驟。
1、pom依賴 一般springboot引入web相關依賴就行
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-web</artifactid> </dependency>
2、在啟動類中增加@EnableAsync注解
@EnableAsync @SpringBootApplicationpublic class AppApplication { public static void main(String[] args){ SpringApplication.run(AppApplication.class, args); } }
3、需要時在指定方法中增加@Async注解,如果是需要等待返回值,則demo如下
@Async public Future<string> doReturn(int i){ try { // 這個方法需要調用500毫秒 Thread.sleep(500); } catch (InterruptedException e) { e.printStackTrace(); } // 消息匯總 return new AsyncResult<>("異步調用"); }
4、如果有線程變量或者logback中的mdc,可以增加傳遞
import org.slf4j.MDC; import org.springframework.context.annotation.Configuration; import org.springframework.core.task.TaskDecorator; import org.springframework.scheduling.annotation.AsyncConfigurerSupport; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import java.util.Map; import java.util.concurrent.Executor; /** * @Description: */ @EnableAsync @Configuration public class AsyncConfig extends AsyncConfigurerSupport { @Override public Executor getAsyncExecutor() { ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); executor.setTaskDecorator(new MdcTaskDecorator()); executor.initialize(); return executor; } } class MdcTaskDecorator implements TaskDecorator { @Override public Runnable decorate(Runnable runnable) { Map<string, string> contextMap = MDC.getCopyOfContextMap(); return () -> { try { MDC.setContextMap(contextMap); runnable.run(); } finally { MDC.clear(); } }; } }
5、有時候異步需要增加阻塞
import lombok.extern.slf4j.Slf4j; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import java.util.concurrent.Executor; import java.util.concurrent.ThreadPoolExecutor; @Configuration @Slf4j public class TaskExecutorConfig { @Bean("localDbThreadPoolTaskExecutor") public Executor threadPoolTaskExecutor() { ThreadPoolTaskExecutor taskExecutor = new ThreadPoolTaskExecutor(); taskExecutor.setCorePoolSize(5); taskExecutor.setMaxPoolSize(200); taskExecutor.setQueueCapacity(200); taskExecutor.setKeepAliveSeconds(100); taskExecutor.setThreadNamePrefix("LocalDbTaskThreadPool"); taskExecutor.setRejectedExecutionHandler((Runnable r, ThreadPoolExecutor executor) -> { if (!executor.isShutdown()) { try { Thread.sleep(300); executor.getQueue().put(r); } catch (InterruptedException e) { log.error(e.toString(), e); Thread.currentThread().interrupt(); } } } ); taskExecutor.initialize(); return taskExecutor; } }
可以將比較耗時或者不同的業(yè)務拆分出來提供單節(jié)點的吞吐量
有很多場景對數(shù)據(jù)實時性要求不那么強的,或者對業(yè)務進行業(yè)務容錯處理時可以將消息發(fā)送到kafka,然后延時消費。
舉個例子,根據(jù)條件查詢指定用戶發(fā)送推送消息,這里可以時按時、按天、按月等等,這時就
到此,關于“Spring Boot怎么提升服務吞吐量”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)頁題目:SpringBoot怎么提升服務吞吐量
本文地址:http://jinyejixie.com/article48/ggiphp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內鏈、App開發(fā)、移動網(wǎng)站建設、外貿網(wǎng)站建設、品牌網(wǎng)站設計、關鍵詞優(yōu)化
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)