Sentinel-Go:2.Sentinel-Go的基本使用(二)流控规则持久化

1.教程

Sentinel-Go:1.Sentinel-Go的基本使用(一)流控规则中,已经创建好了module:sentinel-go-sample,我们继续以它为例来演示流控规则持久化

1.1 先在Nacos配置中心添加配置文件

  1. Nacos的安装部署,请参考:Nacos:1.Nacos的基本使用(一)服务注册与发现

  2. 添加配置文件

image

  1. 配置文件内容示例:
sentinel-go-sample-sentinel-flow
[
    {
        "resource": "testFlowRule",
        "tokenCalculateStrategy": 0,
        "controlBehavior": 0,
        "threshold": 2,
        "statIntervalInMs": 1000
    }
]

1.2 修改qps_limit_example.go

qps_limit_example.go
package main

import (
	"fmt"
	sentinel "github.com/alibaba/sentinel-golang/api"
	"github.com/alibaba/sentinel-golang/core/base"
	"github.com/alibaba/sentinel-golang/core/config"
	"github.com/alibaba/sentinel-golang/core/flow"
	"github.com/alibaba/sentinel-golang/ext/datasource"
	"github.com/alibaba/sentinel-golang/logging"
	"github.com/alibaba/sentinel-golang/pkg/datasource/nacos"
	"github.com/nacos-group/nacos-sdk-go/clients"
	"github.com/nacos-group/nacos-sdk-go/common/constant"
	"log"
	"net/http"
	"runtime"
	"strings"
)

const flowDataIdPostfix = "-sentinel-flow" // 流控规则配置文件后缀
const groupId = "DEFAULT_GROUP"            // 配置文件所属分组
const namespace = ""                       // 配置文件所属命名空间

const testFlowRuleUrl = "/flow"

// Nacos服务配置信息
var sc = []constant.ServerConfig{
	{
		ContextPath: "/nacos",
		Port:        8848,
		IpAddr:      "localhost",
		Scheme:      "http",
	},
}

// Nacos客户端配置信息
var cc = constant.ClientConfig{
	TimeoutMs: 5000,
}

func main() {
	initAll()
}

func initAll() {
	sentinelInit()
	 创建流控规则:资源名 sayHello 阈值 2 统计间隔 1000毫秒
	//createFlowRule("testFlowRule", 2, 1000)

	// 初始化Nacos,而非手动创建规则
	nacosInit()
	httpInit()
}

// 初始化http,并注册接口
func httpInit() {
	server := http.Server{
		Addr: "127.0.0.1:8003",
	}
	http.HandleFunc(testFlowRuleUrl, testFlowRule)
	server.ListenAndServe()
}

// 初始化Sentinel
func sentinelInit() {
	// We should initialize Sentinel first.
	conf := config.NewDefaultConfig()
	// for testing, logging output to console
	conf.Sentinel.Log.Logger = logging.NewConsoleLogger()
	err := sentinel.InitWithConfig(conf)
	if err != nil {
		log.Fatal(err)
	}
}

// 初始化Nacos
func nacosInit() {
	// 生成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
	}

	// 注册流控规则Handler
	h := datasource.NewFlowRulesHandler(datasource.FlowRuleJsonArrayParser)

	// 创建NacosDataSource数据源
	// groupId 对应在nacos中创建配置文件的group
	// dataId 对应在nacos中创建配置文件的dataId,一定要和Nacos配置中心中的配置文件名一致,否则无法匹配
	dataId := "sentinel-go-sample" + flowDataIdPostfix
	nds, err := nacos.NewNacosDataSource(client, groupId, dataId, h)
	if err != nil {
		fmt.Printf("Fail to create nacos data source client, err: %+v", err)
		return
	}

	//nacos数据源初始化
	err = nds.Initialize()
	if err != nil {
		fmt.Printf("Fail to initialize nacos data source client, err: %+v", err)
		return
	}
}

// 接口1:测试流控规则
func testFlowRule(w http.ResponseWriter, r *http.Request) {
	resourceName := runFuncName()
	// 埋点(流控规则方式)
	e, b := sentinel.Entry(resourceName, sentinel.WithTrafficType(base.Inbound))
	if b != nil {
		fmt.Fprintf(w, "限流!!!")
	} else {
		fmt.Fprintf(w, "测试流控规则~~~")
		e.Exit()
	}
}

// 创建流控规则(默认基于QPS)
// threshold 阈值
// interval 统计间隔(毫秒)
func createFlowRule(resourceName string, threshold float64, interval uint32) {
	_, err := flow.LoadRules([]*flow.Rule{
		{
			Resource:               resourceName,
			TokenCalculateStrategy: flow.Direct,
			ControlBehavior:        flow.Reject,
			Threshold:              threshold,
			StatIntervalInMs:       interval,
		},
	})
	if err != nil {
		log.Fatalf("Unexpected error: %+v", err)
		return
	}
}

// 获取正在运行的函数名
func runFuncName() string {
	pc := make([]uintptr, 1)
	runtime.Callers(2, pc)
	totalFuncName := runtime.FuncForPC(pc[0]).Name()
	names := strings.Split(totalFuncName, ".")
	return names[len(names)-1]
}

1.3 等待idea下载完成依赖库后,启动项目并访问

a. 访问http://localhost:8003/flow,查看接口是否正常工作

image

b. 1秒内连续访问,测试一下流控规则是否生效

image


本文示例源码:

GitHub:WangYe8613/sentinel-go-sample

[commit id:bd8e2ba8a7b3cd92d587c57007f7e509aff2973a]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值