规则持久化
基于Nacos配置中心实现推送
引入依赖
XML
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
</dependency>
流控配置文件
java
[
{
"resource":"/order/flow",
"controlBehavior":0,
"count":10.0,
"grade":1,
"limitApp":"default",
"strategy":0
}
]
流控文件相关配置
java
server:
port: 8061
spring:
application:
name: order-sentinel
cloud:
sentinel:
transport:
dashboard: 127.0.0.1:8080
web-context-unify: false # 默认请求链路进行收敛
datasource:
flow-rule:
nacos:
server-addr: 127.0.0.1:8847
username: nacos
password: nacos
data-id: order-sentinel-flow-rule
group-id: SENTINEL_GROUP
rule-type: flow
重启服务、看效果
- 流控规则 已经存在了
访问效果
弊端
- Sentinel 上修改阈值后 无法同步到 nacos
- 需手动修改nacos中的配置保持 和 Sentinel 中的一致