最近管點閒事浪費了很多時間,感謝網友
libinwalan
的留言提醒。及時糾正路線,繼續跟你們一塊兒學習Spring Cloud Alibaba。java
Nacos做爲註冊中心和配置中心的基礎教程,到這裏先告一段落,後續與其餘結合的內容等講到的時候再一塊兒拿出來講,否則內容會有點跳躍。接下來咱們就來一塊兒學習一下Spring Cloud Alibaba下的另一個重要組件:Sentinel。git
Sentinel的官方標題是:分佈式系統的流量防衛兵。從名字上來看,很容易就能猜到它是用來做服務穩定性保障的。對於服務穩定性保障組件,若是熟悉Spring Cloud的用戶,第一反應應該就是Hystrix。可是比較惋惜的是Netflix已經宣佈對Hystrix中止更新。那麼,在將來咱們還有什麼更好的選擇呢?除了Spring Cloud官方推薦的resilience4j以外,目前Spring Cloud Alibaba下整合的Sentinel也是用戶能夠重點考察和選型的目標。github
Sentinel的功能和細節比較多,一篇內容很難介紹完整。因此下面我會分多篇來一一介紹Sentinel的重要功能。本文就先從限流入手,說說如何把Sentinel整合到Spring Cloud應用中,以及如何使用Sentinel Dashboard來配置限流規則。經過這個簡單的例子,先將這一套基礎配置搭建起來。web
Sentinel的使用分爲兩部分:spring
下面咱們就分兩部分來看看,如何使用Sentienl來實現接口限流。bash
本文采用的spring cloud alibaba版本是0.2.1,能夠查看依賴發現當前版本使用的是sentinel 1.4.0。爲了順利完成本文的內容,咱們能夠挑選同版本的sentinel dashboard來使用是最穩妥的。app
下載地址:https://github.com/alibaba/Sentinel/releases/download/1.4.0/sentinel-dashboard-1.4.0.jar 其餘版本:https://github.com/alibaba/Sentinel/releasescurl
同以往的Spring Cloud教程同樣,這裏也不推薦你們跨版本使用,否則可能會出現各類各樣的問題。分佈式
經過命令啓動:spring-boot
java -jar sentinel-dashboard-1.4.0.jar
sentinel-dashboard不像Nacos的服務端那樣提供了外置的配置文件,比較容易修改參數。不過沒關係,因爲sentinel-dashboard是一個標準的spring boot應用,因此若是要自定義端口號等內容的話,能夠經過在啓動命令中增長參數來調整,好比:-Dserver.port=8888
。
默認狀況下,sentinel-dashboard以8080端口啓動,因此能夠經過訪問:localhost:8080
來驗證是否已經啓動成功,若是一切順利的話,能夠看到以下頁面:
第一步:在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
項目:
若是您對這些感興趣,歡迎star、follow、收藏、轉發給予支持!
下面是Sentinel的倉庫地址與官方文檔,讀者也能夠本身查閱文檔學習: