<kbd id="afajh"><form id="afajh"></form></kbd>
<strong id="afajh"><dl id="afajh"></dl></strong>
    <del id="afajh"><form id="afajh"></form></del>
        1. <th id="afajh"><progress id="afajh"></progress></th>
          <b id="afajh"><abbr id="afajh"></abbr></b>
          <th id="afajh"><progress id="afajh"></progress></th>

          Sentinel-Go 集成 Nacos 實(shí)現(xiàn)外部動態(tài)數(shù)據(jù)源

          共 3991字,需瀏覽 8分鐘

           ·

          2020-10-01 08:09


          作者 | 張斌斌

          導(dǎo)讀:2020?年,Sentinel 推出 Go 原生版本?Sentinel-Golang,在云原生領(lǐng)域繼續(xù)突破。本文將從實(shí)際出發(fā)結(jié)合案例說明在 Sentinel-Golang?中如何集成?Nacos,使其作為外部動態(tài)數(shù)據(jù)源,將流控規(guī)則存儲在?nacos 中,并且實(shí)現(xiàn)動態(tài)實(shí)時(shí)更新規(guī)則。


          本文主要分為兩個(gè)部分:

          1. 將 sentinel 流控規(guī)則定義在代碼內(nèi)部實(shí)現(xiàn)限流效果;
          2. 將 sentinel 流控規(guī)則定義在 nacos 配置中心,實(shí)現(xiàn)限流效果以及在 nacos 中動態(tài)更新規(guī)則,實(shí)現(xiàn)動態(tài)流控。

          下面將詳細(xì)介紹一下相關(guān)的背景知識。


          Sentinel


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

          Sentinel 具有以下特征:

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

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

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

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


          Sentinel 的歷史


          • 2012 年,Sentinel 誕生,主要功能為入口流量控制;

          • 2013-2017 年,Sentinel 在阿里巴巴集團(tuán)內(nèi)部迅速發(fā)展,成為基礎(chǔ)技術(shù)模塊,覆蓋了所有的核心場景,Sentinel 也因此積累了大量的流量歸整場景以及生產(chǎn)實(shí)踐;

          • 2018 年,Sentinel 開源,并持續(xù)演進(jìn);

          • 2019 年,Sentinel 在多語言擴(kuò)展的方向上逐步探索,陸續(xù)推出 C++ 原生版本、Envoy 集群流量控制支持;

          • 2020 年,Sentinel 推出 Go 原生版本,期待在云原生領(lǐng)域繼續(xù)突破,地址:https://github.com/alibaba/sentinel-golang


          Nacos


          Nacos 是一個(gè)更易于構(gòu)建云原生應(yīng)用的動態(tài)服務(wù)發(fā)現(xiàn)、配置管理和服務(wù)管理的平臺,Nacos 脫胎于阿里巴巴內(nèi)部的 ConfigServer 和 Diamond,是它們的開源實(shí)現(xiàn)。經(jīng)歷過雙十一流量峰值和阿里巴巴經(jīng)濟(jì)體超大規(guī)模容量的考驗(yàn),沉淀了阿里巴巴軟負(fù)載團(tuán)隊(duì)在這個(gè)領(lǐng)域十年的經(jīng)驗(yàn),在穩(wěn)定性和功能性上都有很好的保障。

          Sentinel-Go?集成?Nacos?動態(tài)數(shù)據(jù)源架構(gòu)

          目前 Sentinel 內(nèi)部的限流、熔斷等策略都是基于規(guī)則來實(shí)現(xiàn)的,提供動態(tài)數(shù)據(jù)源擴(kuò)展的目的,就是希望將規(guī)則數(shù)據(jù)的加載以及更新操作通過一些配置中心中間件(比如 nacos,etcd,conful 等等)來實(shí)現(xiàn)動態(tài)更新。


          Sentinel-Go 限流 Demo


          未集成 nacos 時(shí),規(guī)則定義在代碼內(nèi)部,沒有使用外部數(shù)據(jù)源。

          1. 安裝


          go get github.com/alibaba/sentinel-golang

          2. Demo 樣例


          使用 Sentinel 主要分為以下幾步:

          1. 對 Sentinel 進(jìn)行相關(guān)配置并進(jìn)行初始化
          2. 埋點(diǎn)(定義資源)
          3. 配置規(guī)則

          package main
          import ( "fmt" "log" "math/rand" "time"
          sentinel "github.com/alibaba/sentinel-golang/api" "github.com/alibaba/sentinel-golang/core/base" "github.com/alibaba/sentinel-golang/core/flow" "github.com/alibaba/sentinel-golang/util")
          func main() { // We should initialize Sentinel first. err := sentinel.InitDefault() if err != nil { log.Fatalf("Unexpected error: %+v", err) }
          _, err = flow.LoadRules([]*flow.FlowRule{ { Resource: "some-test", MetricType: flow.QPS, Count: 10, ControlBehavior: flow.Reject, }, }) if err != nil { log.Fatalf("Unexpected error: %+v", err) return }
          ch := make(chan struct{})
          for i := 0; i < 10; i++ { go func() { for { e, b := sentinel.Entry("some-test", sentinel.WithTrafficType(base.Inbound)) if b != nil { // Blocked. We could get the block reason from the BlockError. time.Sleep(time.Duration(rand.Uint64()%10) * time.Millisecond) } else { // Passed, wrap the logic here. fmt.Println(util.CurrentTimeMillis(), "passed") time.Sleep(time.Duration(rand.Uint64()%10) * time.Millisecond)
          // Be sure the entry is exited finally. e.Exit() }
          } }() } <-ch}

          官方 example:https://github.com/alibaba/sentinel-golang/tree/master/example


          Sentinel-Go 集成 Nacos


          Sentinel-Go 集成 Nacos 實(shí)現(xiàn)外部動態(tài)數(shù)據(jù)源功能。

          1. 部署?Nacos


          1)版本選擇


          您可以在 Nacos 的release notes博客中找到每個(gè)版本支持的功能的介紹,當(dāng)前推薦的穩(wěn)定版本為 1.3.1。

          2)預(yù)備環(huán)境準(zhǔn)備


          Nacos 依賴Java 環(huán)境來運(yùn)行。如果您是從代碼開始構(gòu)建并運(yùn)行 Nacos,還需要為此配置Maven 環(huán)境,請確保是在以下版本環(huán)境中安裝使用:

          • 64 bit OS,支持 Linux/Unix/Mac/Windows,推薦選用 Linux/Unix/Mac;
          • 64 bit JDK 1.8+;下載 &配置
          • Maven 3.2.x+;下載 &配置。

          3)下載源碼或者安裝包


          你可以通過源碼和發(fā)行包兩種方式來獲取 Nacos。

          從 Github 上下載源碼方式:

          git clone https://github.com/alibaba/nacos.gitcd nacos/mvn -Prelease-nacos -Dmaven.test.skip=true clean install -U  ls -al distribution/target/// change the $version to your actual pathcd distribution/target/nacos-server-$version/nacos/bin

          下載編譯后壓縮包方式,您可以從最新穩(wěn)定版本下載?nacos-server-$version.zip?包。

          unzip nacos-server-$version.zip 或者 tar -xvf nacos-server-$version.tar.gz  cd nacos/bin

          4)啟動服務(wù)器


          • Linux/Unix/Mac


          啟動命令(standalone 代表著單機(jī)模式運(yùn)行,非集群模式):
          sh startup.sh -m standalone

          如果您使用的是 ubuntu 系統(tǒng),或者運(yùn)行腳本報(bào)錯(cuò)提示[[符號找不到,可嘗試如下運(yùn)行:
          bash startup.sh -m standalone

          • Windows


          啟動命令:
          cmd startup.cmd

          或者雙擊 startup.cmd 運(yùn)行文件。

          部署成功訪問 http://127.0.0.1:8848/nacos ?
          用戶名/密碼:nacos/nacos

          2. Sentinel 限流配置到 Nacos


          1. 登錄到 nacos web;
          2. 在配置管理中,新建配置;
          3. 輸入 dataId,group(dataId,group 創(chuàng)建時(shí)可以自定義,本文創(chuàng)建的 dataId=flow,group=sentinel-go);
          4. 將數(shù)據(jù)源樣例粘貼到配置內(nèi)容中。


          1)Nacos 外部數(shù)據(jù)源樣例


          此樣例是流量控制的 Demo 配置。當(dāng)流量并發(fā)數(shù)大于 100 直接拒絕。

          配置內(nèi)容說明可參考:https://github.com/alibaba/sentinel-golang/wiki/ 流量控制。

          [    {        "resource": "some-test",        "metricType": 1,        "count": 100.0,        "controlBehavior":0    }]

          創(chuàng)建完成后,在 nacos 配置列表中可以看到對應(yīng)的限流配置。


          3. Nacos 數(shù)據(jù)源集成


          1)創(chuàng)建項(xiàng)目


          • 版本sentinel-golang 版本使用 0.6.0;nacos-sdk-go 使用 1.0.0;

          • go.mod

          module sentinel-go-nacos-example
          go 1.13
          require ( github.com/alibaba/sentinel-golang v0.6.0 github.com/nacos-group/nacos-sdk-go v1.0.0)

          • main.go


          package main
          import ( "fmt" "math/rand" "sync/atomic" "time"
          sentinel "github.com/alibaba/sentinel-golang/api" "github.com/alibaba/sentinel-golang/core/base" "github.com/alibaba/sentinel-golang/ext/datasource/nacos" "github.com/alibaba/sentinel-golang/util" "github.com/nacos-group/nacos-sdk-go/clients"
          "github.com/alibaba/sentinel-golang/ext/datasource" "github.com/nacos-group/nacos-sdk-go/common/constant")
          type Counter struct { pass *int64 block *int64 total *int64}
          func main() { //流量計(jì)數(shù)器,為了流控打印日志更直觀,和集成nacos數(shù)據(jù)源無關(guān)。 counter := Counter{pass: new(int64), block: new(int64), total: new(int64)}
          //nacos server地址 sc := []constant.ServerConfig{ { ContextPath: "/nacos", Port: 8848, IpAddr: "127.0.0.1", }, } //nacos client 相關(guān)參數(shù)配置,具體配置可參考https://github.com/nacos-group/nacos-sdk-go cc := constant.ClientConfig{ TimeoutMs: 5000, } //生成nacos config client(配置中心客戶端) client, err := clients.CreateConfigClient(map[string]interface{}{ "serverConfigs": sc, "clientConfig": cc, }) if err != nil { fmt.Printf("Fail to create client, err: %+v", err) return } //注冊流控規(guī)則Handler h := datasource.NewFlowRulesHandler(datasource.FlowRuleJsonArrayParser) //創(chuàng)建NacosDataSource數(shù)據(jù)源 //sentinel-go 對應(yīng)在nacos中創(chuàng)建配置文件的group //flow 對應(yīng)在nacos中創(chuàng)建配置文件的dataId nds, err := nacos.NewNacosDataSource(client, "sentinel-go", "flow", h) if err != nil { fmt.Printf("Fail to create nacos data source client, err: %+v", err) return } //nacos數(shù)據(jù)源初始化 err = nds.Initialize() if err != nil { fmt.Printf("Fail to initialize nacos data source client, err: %+v", err) return } //啟動統(tǒng)計(jì) go timerTask(&counter)
          //模擬流量 ch := make(chan struct{}) for i := 0; i < 10; i++ { go func() { for { atomic.AddInt64(counter.total, 1) //some-test 對應(yīng)在nacos 流控配置文件中的resource e, b := sentinel.Entry("some-test", sentinel.WithTrafficType(base.Inbound)) if b != nil { atomic.AddInt64(counter.block, 1) // Blocked. We could get the block reason from the BlockError. time.Sleep(time.Duration(rand.Uint64()%10) * time.Millisecond) } else { atomic.AddInt64(counter.pass, 1) time.Sleep(time.Duration(rand.Uint64()%10) * time.Millisecond)
          // Be sure the entry is exited finally. e.Exit() }
          } }() } <-ch}
          //statistic printfunc timerTask(counter *Counter) { fmt.Println("begin to statistic!!!") var ( oldTotal, oldPass, oldBlock int64 ) for { time.Sleep(1 * time.Second) globalTotal := atomic.LoadInt64(counter.total) oneSecondTotal := globalTotal - oldTotal oldTotal = globalTotal
          globalPass := atomic.LoadInt64(counter.pass) oneSecondPass := globalPass - oldPass oldPass = globalPass
          globalBlock := atomic.LoadInt64(counter.block) oneSecondBlock := globalBlock - oldBlock oldBlock = globalBlock fmt.Println(util.CurrentTimeMillis()/1000, "total:", oneSecondTotal, " pass:", oneSecondPass, " block:", oneSecondBlock) }}


          2)運(yùn)行結(jié)果



          3)動態(tài)更新限流配置


          在項(xiàng)目啟動過程中,在 nacos 中修改流控配置參數(shù)。將 count 從 100->400。


          可以看到打印了重新 loadRule 的日志,流量控制動態(tài)的由 100->400。



          總結(jié)


          在 sentinel-go 中使用 nacos 作為外部動態(tài)數(shù)據(jù)源,只需要將原來聲明 Rule 以及加載 Rule 的部分 變成從 nacos 數(shù)據(jù)源讀取。

          在本文中只介紹了流量控制的集成,熔斷、warmup、熱點(diǎn)參數(shù)的集成也是相同的,只要按需修改配置的內(nèi)容即可。

          配置內(nèi)容參考地址:https://github.com/alibaba/sentinel-golang/wiki

          關(guān)鍵代碼:

            h := datasource.NewFlowRulesHandler(datasource.FlowRulesJsonConverter)  nds, err := nacos.NewNacosDataSource(client, "sentinel-go", "flow", h)  if err != nil {    fmt.Printf("Fail to create nacos data source client, err: %+v", err)    return  }  err = nds.Initialize()  if err != nil {    fmt.Printf("Fail to initialize nacos data source client, err: %+v", err)    return  }


          相關(guān)鏈接:


          • Demo 地址:https://github.com/alibaba/sentinel-golang/tree/master/example/nacos

          • Sentinel-golang:https://github.com/alibaba/sentinel-golang

          • Nacos:https://nacos.io/zh-cn/index.html

          • Nacos-SDK-Go 項(xiàng)目地址:https://github.com/nacos-group/nacos-sdk-go

          作者簡介


          張斌斌? Github 賬號:sanxun0325, Nacos Commiter,Sentinel-Golang Contributor,現(xiàn)任職 OpenJaw 微服務(wù)團(tuán)隊(duì)。目前主要負(fù)責(zé) Nacos,Sentinel-Golang 社區(qū)相關(guān)項(xiàng)目的開發(fā)工作,以及 Nacos 在 Golang 微服務(wù)生態(tài)中的推廣集成工作。



          推薦閱讀


          福利

          我為大家整理了一份從入門到進(jìn)階的Go學(xué)習(xí)資料禮包(下圖只是部分),同時(shí)還包含學(xué)習(xí)建議:入門看什么,進(jìn)階看什么。

          關(guān)注公眾號 「polarisxu」,回復(fù)?ebook?獲取;還可以回復(fù)「進(jìn)群」,和數(shù)萬 Gopher 交流學(xué)習(xí)。




          瀏覽 86
          點(diǎn)贊
          評論
          收藏
          分享

          手機(jī)掃一掃分享

          分享
          舉報(bào)
          評論
          圖片
          表情
          推薦
          點(diǎn)贊
          評論
          收藏
          分享

          手機(jī)掃一掃分享

          分享
          舉報(bào)
          <kbd id="afajh"><form id="afajh"></form></kbd>
          <strong id="afajh"><dl id="afajh"></dl></strong>
            <del id="afajh"><form id="afajh"></form></del>
                1. <th id="afajh"><progress id="afajh"></progress></th>
                  <b id="afajh"><abbr id="afajh"></abbr></b>
                  <th id="afajh"><progress id="afajh"></progress></th>
                  东北操逼网| 亚洲中文字幕2025 | 国内毛片毛片毛片 | 欧美天天射 | 免费日批网站 |