sentinel配置相关配置后无法持久化,服务重启之后就没了,所以整合nacos,在nacos服务持久化,sentinel实时与nacos通信获取相关配置。
使用上一章节Feign消费者服务实现整合。
版本信息:
nacos:1.4.1
Sentinel 控制台 1.7.2
spring-boot:2.3.3.RELEASE
spring.cloud.version:Hoxton.SR8
spring.cloud.alibaba.version:2.2.3.RELEASE
1、项目POM.xml 引入
<!--sentinel配置数据源nacos-->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
</dependency>
2、bootstrap.yml追加Nacos数据源配置:
整个文件内容为:
server:
port: 8083
spring:
profiles:
active: dev
application:
name: tt-sc-feign-consumer
cloud:
nacos:
username: nacos
password: nacos
config:
server-addr: 192.168.10.x:8848
file-extension: yml
discovery:
server-addr: 192.168.10.x:8848
#sentinel看板相关配置
sentinel:
transport:
dashboard: 192.168.10.x:8080
#SpringBoot项目与控制台做交互的端口,默认8719
port: 8723
eager: true
#添加Nacos数据源配置
datasource:
#名字自定义即可
ds1:
nacos:
server-addr: 192.168.10.x:8848
username: nacos
password: nacos
#请求频率较高
namespace: public
dataId: tt-sc-feign-consume-sentinel
groupId: DEFAULT_GROUP
data-type: json
rule-type: flow
# ds2:
# nacos:
# server-addr: 192.168.10.107:8848
# username: nacos
# password: nacos
# namespace: public
# dataId: tt-public
# groupId: DEFAULT_GROUP
# data-type: json
# rule-type: flow
3、Nacos配置:
[
{
"resource": "/user/getUserSentinel",
"limitApp": "default",
"grade": 1,
"count": 2,
"strategy": 0,
"controlBehavior": 0,
"clusterMode": false
}
]
4、启动feingnconsumer服务:
控制台输出获取nacos的配置
5、sentinel控制台:
获取到nacos的配置信息
文章来源:https://www.toymoban.com/news/detail-716849.html
7、问题
sentinel若获取不到nacos配置,检查配置文件是否存在问题,若无其他问题大概率原因就是版本不匹配。
文章来源地址https://www.toymoban.com/news/detail-716849.html
到了这里,关于Spring Cloud Sentinel整合Nacos实现配置持久化的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!