1. <strong id="7actg"></strong>
    2. <table id="7actg"></table>

    3. <address id="7actg"></address>
      <address id="7actg"></address>
      1. <object id="7actg"><tt id="7actg"></tt></object>

        輕松兩步,在 SpringBoot 服務上實現(xiàn)接口限流

        共 3606字,需瀏覽 8分鐘

         ·

        2020-11-11 04:15

        程序員的成長之路
        互聯(lián)網(wǎng)/程序員/技術(shù)/資料共享?
        關(guān)注


        閱讀本文大概需要 4.2 分鐘。

        來自:https://urlify.cn/YjY322

        Sentinel是阿里巴巴開源的限流器熔斷器,并且?guī)в锌梢暬僮鹘缑妗?/section>

        在日常開發(fā)中,限流功能時常被使用,用于對某些接口進行限流熔斷,譬如限制單位時間內(nèi)接口訪問次數(shù);或者按照某種規(guī)則進行限流,如限制ip的單位時間訪問次數(shù)等。

        之前我們已經(jīng)講過接口限流的工具類ratelimter可以實現(xiàn)令牌桶的限流,很明顯sentinel的功能更為全面和完善。

        來看一下sentinel的簡介:https://github.com/spring-cloud-incubator/spring-cloud-alibaba/wiki/Sentinel


        Sentinel 介紹


        隨著微服務的流行,服務和服務之間的穩(wěn)定性變得越來越重要。Sentinel 以流量為切入點,從流量控制、熔斷降級、系統(tǒng)負載保護等多個維度保護服務的穩(wěn)定性。

        Sentinel 具有以下特征:
        • 豐富的應用場景:Sentinel 承接了阿里巴巴近 10 年的雙十一大促流量的核心場景,例如秒殺(即突發(fā)流量控制在系統(tǒng)容量可以承受的范圍)、消息削峰填谷、實時熔斷下游不可用應用等。

        • 完備的實時監(jiān)控:Sentinel 同時提供實時的監(jiān)控功能。您可以在控制臺中看到接入應用的單臺機器秒級數(shù)據(jù),甚至 500 臺以下規(guī)模的集群的匯總運行情況。

        • 廣泛的開源生態(tài):Sentinel 提供開箱即用的與其它開源框架/庫的整合模塊,例如與 Spring Cloud、Dubbo、gRPC 的整合。您只需要引入相應的依賴并進行簡單的配置即可快速地接入 Sentinel。

        • 完善的 SPI 擴展點:Sentinel 提供簡單易用、完善的 SPI 擴展點。您可以通過實現(xiàn)擴展點,快速的定制邏輯。例如定制規(guī)則管理、適配數(shù)據(jù)源等。

        來簡單使用一下Sentinel。

        Sentinel包括服務端和客戶端,服務端有可視化界面,客戶端需引入jar后即可和服務端通信并完成限流功能。

        啟動服務端的jar


        https://github.com/alibaba/Sentinel/releases 在這個地址,下載release的jar,然后啟動即可。

        這個jar是個標準的Springboot應用,可以通過
        java -jar sentinel-dashboard-1.6.0.jar來啟動,這樣就是默認的設置,啟動在8080端口。也可以加上一些自定義配置來啟動

        java -Dserver.port=8080 -Dcsp.sentinel.dashboard.server=localhost:8080 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard.jar
        具體配置的解釋,可以到GitHub上看一下文檔。

        這里我們直接使用默認java -jar sentinel-dashboard-1.6.0.jar來啟動,之后訪問localhost:8080??梢钥吹浇缑妫?/section>


        輸入賬號密碼sentinel后進入主界面


        此時因為我們并沒有啟動客戶端,所以界面是空的。

        啟動客戶端


        新建一個Springboot項目,pom如下:
        <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0modelVersion>    <parent>        <groupId>org.springframework.bootgroupId>        <artifactId>spring-boot-starter-parentartifactId>        <version>2.0.5.RELEASEversion>        <relativePath/>     parent>        <groupId>com.maimeng.baobanqgroupId>    <artifactId>baobanserverartifactId>    <version>0.0.1-SNAPSHOTversion>    <packaging>jarpackaging>    <name>baobanservername>    <description>Demo project for Spring Bootdescription>     <properties>        <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>        <project.reporting.outputEncoding>UTF-8project.reporting.outputEncoding>        <java.version>1.8java.version>        <spring-cloud.version>Finchley.SR1spring-cloud.version>    properties>     <dependencies>               <dependency>            <groupId>org.springframework.bootgroupId>            <artifactId>spring-boot-starter-webartifactId>        dependency>                       <dependency>            <groupId>org.springframework.cloudgroupId>            <artifactId>spring-cloud-starter-alibaba-sentinelartifactId>        dependency>                       <dependency>            <groupId>org.springframework.bootgroupId>            <artifactId>spring-boot-starter-testartifactId>            <scope>testscope>        dependency>    dependencies>     <dependencyManagement>        <dependencies>            <dependency>                <groupId>org.springframework.cloudgroupId>                <artifactId>spring-cloud-dependenciesartifactId>                <version>${spring-cloud.version}version>                <type>pomtype>                <scope>importscope>            dependency>             <dependency>                <groupId>org.springframework.cloudgroupId>                <artifactId>spring-cloud-alibaba-dependenciesartifactId>                <version>0.2.2.RELEASEversion>                <type>pomtype>                <scope>importscope>            dependency>        dependencies>    dependencyManagement>     <build>        <plugins>            <plugin>                <groupId>org.springframework.bootgroupId>                <artifactId>spring-boot-maven-pluginartifactId>            plugin>        plugins>    build> project>
        需要注意引用的SpringCloud-alibaba的版本是0.2.2,當前的最新版,如果是Springboot2.x的項目,需要引0.2.x的。Springboot1.x的引0.1.x的。

        Sentinel的客戶端依賴也很簡單,spring-cloud-starter-alibaba-sentinel加這一個引用即可。

        之后在application.yml里添加server的地址配置:
        spring: application:   name: baobanserver cloud:  sentinel:    transport:      dashboard: localhost:8080    #eager: true
        另外由于8080端口已被占用,自行設置一個端口,如8888。

        做完這些,新建一個controller,

        @RestControllerpublic class TestController { @GetMapping(value = "/hello") public String hello() { return "Hello Sentinel"; }}
        就是一個普通的controller接口。

        之后啟動該項目。啟動后回到server的控制臺界面


        發(fā)現(xiàn)并沒有什么變化。然后我們調(diào)用一下hello接口。之后再次刷新server控制臺。


        界面已經(jīng)出現(xiàn)了我們的項目,并且有一堆規(guī)則。


        因為Sentinel采用延遲加載,只有在主動發(fā)起一次請求后,才會被攔截并發(fā)送給服務端。如果想關(guān)閉這個延遲,就在上面的yml里把eager的注釋放掉。

        然后在簇點鏈路里hello接口的流控那里設置限流規(guī)則,將單機閾值設為1.就代表一秒內(nèi)最多只能通過1次請求到達該hello接口。


        之后再次連續(xù)訪問hello接口。


        發(fā)現(xiàn)已經(jīng)被攔截了,限流已經(jīng)生效。

        這樣就完成了一次簡單的限流操作,并且能看到各接口的QPS的統(tǒng)計。
        推薦閱讀:

        推薦一個碼云 1w+ 星標的 Spring Cloud 微服務項目

        RabbitMQ 線上事故!慌的一批,腦袋一片空白

        5T技術(shù)資源大放送!包括但不限于:C/C++,Linux,Python,Java,PHP,人工智能,單片機,樹莓派,等等。在公眾號內(nèi)回復「2048」,即可免費獲?。?!

        微信掃描二維碼,關(guān)注我的公眾號

        朕已閱?

        瀏覽 63
        點贊
        評論
        收藏
        分享

        手機掃一掃分享

        分享
        舉報
        評論
        圖片
        表情
        推薦
        點贊
        評論
        收藏
        分享

        手機掃一掃分享

        分享
        舉報
        1. <strong id="7actg"></strong>
        2. <table id="7actg"></table>

        3. <address id="7actg"></address>
          <address id="7actg"></address>
          1. <object id="7actg"><tt id="7actg"></tt></object>
            伊人网在线视频观看 | 日本老太做爰视频免费 | 国产高清在线精品一区二区三区 | gayjapanesegv筋肉 | 国产骚女操逼网 | 国产一级毛片a | 日韩a在线观看 | 丁香五月天婷婷综合潮喷 | 大奶伊人 | 东京热一二三区 |