91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringCloudAlibaba Sentinel如何實現限流降級

發布時間:2021-11-24 15:21:02 來源:億速云 閱讀:167 作者:柒染 欄目:云計算

SpringCloudAlibaba Sentinel如何實現限流降級,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

大概有半個月沒有進行更新了,確實也在糾結一些SpringCloudAlibaba的使用場景問題。同時基于當前的業務與人員配置來考慮甚至有點想放棄微服務的方案了。
Sentinel的限流降級是必不可少的場景,其實也是基于當前的業務考慮是否需要Sentinel。
但是最終肯定是需要Sentinel的場景的,還是直接一步到位吧

 

Setinel的基本概念與使用場景

Setinel的介紹為「一個高可用的流量控制與防護組件」。流量控制與流量防護就可以看到這個組件的意義就是為了保障微服務的穩定性。Sentinel與原有SpringCloud家族的Hystrix的意義是一致的。
其實能夠實現該方案的場景很多,例如一開始提到的本來沒有準備使用Sentinel一個是因為業務的原因。另外一個就是我們本身的一些問題從而考慮使用一些更簡單的方案來實現。例如 「nginx」 等。


當然相對于nginx來說,Sentinel能夠實現的功能與靈活性更好一些。Sentinel的功能更多,所以我也會慢慢來開始Sentinel的使用介紹。首先我們使用Sentinel實現一個限流的功能。當然首先我們需要一套Sentinel的環境。

 
部署Sentinel Dashboard

Sentinel分為兩個部分,sentinel-core與sentinel-dashboard。
sentinel-core 部分能夠支持在本地引入sentinel-core進行限流規則的整合與配置。
sentinel-dashboard 則在core之上能夠支持在線的流控規則與熔斷規則的維護與調整等。
言歸正傳我們先部署一個Sentinel Dashboard。

  • 項目地址:https://github.com/alibaba/Sentinel
  • 下載地址: https://github.com/alibaba/Sentinel/releases    
    本次我們選擇當前的最新版 v1.7.2進行部署。Sentinel使用的SpringBoot進行的開發,所以直接下載jar包啟動即可使用。
java -jar sentinel-dashboard-1.7.2.jar
 

由于Sentinel-Dashboard是使用SpringBoot進行開發的,所以本身沒有太多的配置文件。默認的端口為8080。如果端口沖突可以使用 「--server.port」 進行修改綁定。啟動成功后使用瀏覽器訪問可以看到如下頁面:

SpringCloudAlibaba Sentinel如何實現限流降級  

訪問方式為: 「sentinel」/「sentinel」
「WARN:」 如果需要調整相關的參數可以參考github中的具體配置文件進行修改。配置如下:

#spring settings
spring.http.encoding.force=true
spring.http.encoding.charset=UTF-8
spring.http.encoding.enabled=true

#cookie name setting
server.servlet.session.cookie.name=sentinel_dashboard_cookie

#logging settings
logging.level.org.springframework.web=INFO
logging.file=${user.home}/logs/csp/sentinel-dashboard.log
logging.pattern.file= %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n
#logging.pattern.console= %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n

#auth settings
auth.filter.exclude-urls=/,/auth/login,/auth/logout,/registry/machine,/version
auth.filter.exclude-url-suffixes=htm,html,js,css,map,ico,ttf,woff,png
# If auth.enabled=false, Sentinel console disable login
auth.username=sentinel
auth.password=sentinel

# Inject the dashboard version. It's required to enable
# filtering in pom.xml for this resource file.
sentinel.dashboard.version=${project.version}
   
項目集成
  • 首先引入相關的依賴,引入     「spring-cloud-starter-alibaba-sentinel」模塊。    
    [     「groupId」再次提醒一下,com.alibaba.cloud為畢業版本]
<dependencies>
    <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>
 
  • 然后我們就可以把項目中的增加 sentinel-dashboard的相關配置
spring.cloud.sentinel.transport.dashboard=localhost:8080
 
  • 創建啟動類與增加Rest訪問接口    
        「SentinelFlowControlApplication.java」
@SpringBootApplication
public class SentinelFlowControlApplication {

    public static void main(String[] args) {
        SpringApplication.run(SentinelFlowControlApplication.class,args);
    }

}
 

「SentinelTestController.java」

@RestController
@RequestMapping(value = "sentinel")
public class SentinelTestController {

    @RequestMapping(value = "hello",method = RequestMethod.GET)
    public String hello(){
        return "CainGao";
    }

}
 
  • 訪問REST接口打開Sentinel-dashboard頁面SpringCloudAlibaba Sentinel如何實現限流降級可以看到我們每次訪問的都會在Dashboard中顯示出來,并且我們的服務也已經注冊到了sentinel中。

  • 增加流控規則
    現在我們可以直接在左側的 簇點鏈路 中查找到我們訪問的端口進行流控規則的設置。SpringCloudAlibaba Sentinel如何實現限流降級現在新增一個 QPS=1 的規則,其他使用默認SpringCloudAlibaba Sentinel如何實現限流降級

配置完成后我們當前的限流效果應該就是每秒只能有一條請求成功發送。其他請求將會直接失敗。

  • 直接快速訪問接口實現測試     SpringCloudAlibaba Sentinel如何實現限流降級

當前可以發現,當請求的QPS大于1時,也就是每秒發送的次數大于1就會直接返回 「Blocked by Sentinel」

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

民乐县| 高青县| 虎林市| 且末县| 内黄县| 烟台市| 青田县| 广平县| 新竹县| 西华县| 磴口县| 澄江县| 濮阳市| 北辰区| 吉首市| 平陆县| 胶州市| 长武县| 荥经县| 进贤县| 嘉鱼县| 海晏县| 牙克石市| 湘乡市| 遵义市| 门头沟区| 黄浦区| 封丘县| 闽侯县| 鄢陵县| 双城市| 林州市| 阿鲁科尔沁旗| 怀来县| 浦东新区| 盖州市| 错那县| 苍梧县| 苍山县| 临潭县| 南通市|