您好,登錄后才能下訂單哦!
最近管點閑事浪費了不少時間,感謝網友 libinwalan
的留言提醒。及時糾正路線,繼續跟大家一起學習Spring Cloud Alibaba。
Nacos作為注冊中心和配置中心的基礎教程,到這里先告一段落,后續與其他結合的內容等講到的時候再一起拿出來說,不然內容會有點跳躍。接下來我們就來一起學習一下Spring Cloud Alibaba下的另外一個重要組件:Sentinel。
Sentinel是什么
Sentinel的官方標題是:分布式系統的流量防衛兵。從名字上來看,很容易就能猜到它是用來作服務穩定性保障的。對于服務穩定性保障組件,如果熟悉Spring Cloud的用戶,第一反應應該就是Hystrix。但是比較可惜的是Netflix已經宣布對Hystrix停止更新。那么,在未來我們還有什么更好的選擇呢?除了Spring Cloud官方推薦的resilience4j之外,目前Spring Cloud Alibaba下整合的Sentinel也是用戶可以重點考察和選型的目標。
Sentinel的功能和細節比較多,一篇內容很難介紹完整。所以下面我會分多篇來一一介紹Sentinel的重要功能。本文就先從限流入手,說說如何把Sentinel整合到Spring Cloud應用中,以及如何使用Sentinel Dashboard來配置限流規則。通過這個簡單的例子,先將這一套基礎配置搭建起來。
使用Sentinel實現接口限流
Sentinel的使用分為兩部分:
下面我們就分兩部分來看看,如何使用Sentienl來實現接口限流。
部署Sentinel Dashboard
本文采用的spring cloud alibaba版本是0.2.1,可以查看依賴發現當前版本使用的是sentinel 1.4.0。為了順利完成本文的內容,建議挑選同版本的sentinel dashboard來使用是最穩妥的。
下載地址: sentinel-dashboard-1.4.0.jar
其他版本: Sentinel/releases
同以往的Spring Cloud教程一樣,這里也不推薦大家跨版本使用,不然可能會出現各種各樣的問題。
通過命令啟動:
java -jar sentinel-dashboard-1.4.0.jar
sentinel-dashboard不像Nacos的服務端那樣提供了外置的配置文件,比較容易修改參數。不過不要緊,由于sentinel-dashboard是一個標準的spring boot應用,所以如果要自定義端口號等內容的話,可以通過在啟動命令中增加參數來調整,比如: -Dserver.port=8888
。
默認情況下,sentinel-dashboard以8080端口啟動,所以可以通過訪問: localhost:8080
來驗證是否已經啟動成功,如果一切順利的話,可以看到如下頁面:
整合Sentinel
第一步:在Spring Cloud應用的 pom.xml
中引入Spring Cloud Alibaba的Sentinel模塊:
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.2</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>
第二步:在Spring Cloud應用中通過 spring.cloud.sentinel.transport.dashboard
參數配置sentinel dashboard的訪問地址,比如:
spring.application.name=alibaba-sentinel-rate-limiting server.port=8001 # sentinel dashboard spring.cloud.sentinel.transport.dashboard=localhost:8080
第三步:創建應用主類,并提供一個rest接口,比如:
@SpringBootApplication public class TestApplication { public static void main(String[] args) { SpringApplication.run(TestApplication.class, args); } @Slf4j @RestController static class TestController { @GetMapping("/hello") public String hello() { return "didispace.com"; } } }
第四步:啟動應用,然后通過postman或者curl訪問幾下 localhost:8001/hello
接口。
$ curl localhost:8001/hello didispace.com
此時,在上一節啟動的Sentinel Dashboard中就可以當前我們啟動的 alibaba-sentinel-rate-limiting
這個服務以及接口調用的實時監控了。具體如下圖所示:
配置限流規則
在完成了上面的兩節之后,我們在 alibaba-sentinel-rate-limiting
服務下,點擊 簇點鏈路
菜單,可以看到如下界面:
其中 /hello
接口,就是我們上一節中實現并調用過的接口。通過點擊 流控
按鈕,來為該接口設置限流規則,比如:
這里做一個最簡單的配置:
綜合起來的配置效果就是,該接口的限流策略是每秒最多允許2個請求進入。
點擊 新增
按鈕之后,可以看到如下界面:
其實就是左側菜單中 流控規則
的界面,這里可以看到當前設置的所有限流策略。
驗證限流規則
在完成了上面所有內容之后,我們可以嘗試一下快速的調用這個接口,看看是否會觸發限流控制,比如:
$ curl localhost:8001/hello didispace.com $ curl localhost:8001/hello didispace.com $ curl localhost:8001/hello Blocked by Sentinel (flow limiting)
可以看到,快速的調用兩次 /hello
接口之后,第三次調用被限流了。
代碼示例
本文介紹內容的客戶端代碼,示例讀者可以通過查看下面倉庫中的 alibaba-sentinel-rate-limiting
項目:
Github:https://github.com/dyc87112/SpringCloud-Learning/
Gitee: https://gitee.com/didispace/SpringCloud-Learning/
參考資料
下面是Sentinel的倉庫地址與官方文檔,讀者也可以自己查閱文檔學習:
Github
Sentinel官方文檔
Spring Cloud Alibaba Sentinel文檔
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。