上一篇我們介紹了如何通過改造Sentinel Dashboard來實作修改規則之後自動同步到Apollo。下面通過這篇,詳細介紹當使用Nacos作為配置中心之後,如何實作Sentinel Dashboard中修改規則同步到Nacos。關于下面改造的原理和分析可以見上一篇 《Sentinel Dashboard中修改規則同步到Apollo》 的頭兩節内容,這裡不重複介紹了。
https://blog.didispace.com/spring-cloud-alibaba-sentinel-2-4/#%E4%BB%A3%E7%A0%81%E5%AE%9E%E7%8E%B0 代碼實作
下面直接來看看如何實作的具體改造步驟,這裡參考了
Sentinel Dashboard
源碼中關于Nacos實作的測試用例。但是由于考慮到與Spring Cloud Alibaba的結合使用,略作修改。
第一步:修改
pom.xml
中的sentinel-datasource-nacos的依賴,将
<scope>test</scope>
注釋掉,這樣才能在主程式中使用。
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
<!--<scope>test</scope>-->
</dependency>
第二步:找到
resources/app/scripts/directives/sidebar/sidebar.html
中的這段代碼:
<li ui-sref-active="active">
<a ui-sref="dashboard.flowV1({app: entry.app})">
<i class="glyphicon glyphicon-filter"></i> 流控規則
</a>
</li>
修改為:
<li ui-sref-active="active">
<a ui-sref="dashboard.flow({app: entry.app})">
<i class="glyphicon glyphicon-filter"></i> 流控規則
</a>
</li>
第三步:在
com.alibaba.csp.sentinel.dashboard.rule
包下建立一個nacos包,用來編寫針對Nacos的擴充實作。
第四步:建立Nacos的配置類,具體代碼如下:
@Configuration
public class NacosConfig {
@Bean
public Converter<List<FlowRuleEntity>, String> flowRuleEntityEncoder() {
return JSON::toJSONString;
}
@Bean
public Converter<String, List<FlowRuleEntity>> flowRuleEntityDecoder() {
return s -> JSON.parseArray(s, FlowRuleEntity.class);
}
@Bean
public ConfigService nacosConfigService() throws Exception {
Properties properties = new Properties();
properties.put(PropertyKeyConst.SERVER_ADDR, "localhost");
return ConfigFactory.createConfigService(properties);
}
}
如果用到了namespace隔離環境,可以在
nacosConfigService
方法中再加入配置,比如:
properties.put(PropertyKeyConst.NAMESPACE, "130e71fa-97fe-467d-ad77-967456f2c16d");
第五步:實作Nacos的配置拉取。
@Component("flowRuleNacosProvider")
public class FlowRuleNacosProvider implements DynamicRuleProvider<List<FlowRuleEntity>> {
@Autowired
private ConfigService configService;
@Autowired
private Converter<String, List<FlowRuleEntity>> converter;
public static final String FLOW_DATA_ID_POSTFIX = "-sentinel";
public static final String GROUP_ID = "DEFAULT_GROUP";
@Override
public List<FlowRuleEntity> getRules(String appName) throws Exception {
String rules = configService.getConfig(appName + FLOW_DATA_ID_POSTFIX, GROUP_ID, 3000);
if (StringUtil.isEmpty(rules)) {
return new ArrayList<>();
}
return converter.convert(rules);
}
}
-
方法中的getRules
參數是Sentinel中的服務名稱。appName
-
方法是從Nacos中擷取配置資訊的具體操作。其中,DataId和GroupId分别對應用戶端使用時候的對應配置。比如這裡的例子對應了之前我們在 《Sentinel使用Nacos存儲規則》 一文中的配置,具體如下:configService.getConfig
spring.cloud.sentinel.datasource.ds.nacos.groupId=DEFAULT_GROUP
spring.cloud.sentinel.datasource.ds.nacos.dataId=${spring.application.name}-sentinel
注意:兩邊的DataId和GroupId必須對應上。
第六步:實作Nacos的配置推送。
@Component("flowRuleNacosPublisher")
public class FlowRuleNacosPublisher implements DynamicRulePublisher<List<FlowRuleEntity>> {
@Autowired
private ConfigService configService;
@Autowired
private Converter<List<FlowRuleEntity>, String> converter;
public static final String FLOW_DATA_ID_POSTFIX = "-sentinel";
public static final String GROUP_ID = "DEFAULT_GROUP";
@Override
public void publish(String app, List<FlowRuleEntity> rules) throws Exception {
AssertUtil.notEmpty(app, "app name cannot be empty");
if (rules == null) {
return;
}
configService.publishConfig(app + FLOW_DATA_ID_POSTFIX, GROUP_ID, converter.convert(rules));
}
}
- 這裡的大部分内容與上一步中的實作一緻。主要就是Nacos中存儲配置的DataId和GroupId不要弄錯。
第七步:修改
com.alibaba.csp.sentinel.dashboard.controller.v2.FlowControllerV2
中
DynamicRuleProvider
和
DynamicRulePublisher
注入的Bean,改為上面我們編寫的針對Apollo的實作:
@Autowired
@Qualifier("flowRuleNacosProvider")
private DynamicRuleProvider<List<FlowRuleEntity>> ruleProvider;
@Autowired
@Qualifier("flowRuleNacosPublisher")
private DynamicRulePublisher<List<FlowRuleEntity>> rulePublisher;
最後,讀者可以使用本文改造後的sentinel-dashboard聯合之前
一文的例子來驗證本文内容。
https://blog.didispace.com/spring-cloud-alibaba-sentinel-2-4/#%E4%BB%A3%E7%A0%81%E7%A4%BA%E4%BE%8B 代碼示例
本文介紹内容的用戶端代碼,示例讀者可以通過檢視下面倉庫中的
alibaba-sentinel-dashboard-nacos
項目:
- Github: https://github.com/dyc87112/SpringCloud-Learning/
- Gitee: https://gitee.com/didispace/SpringCloud-Learning/
如果您對這些感興趣,歡迎star、follow、收藏、轉發給予支援!
https://blog.didispace.com/spring-cloud-alibaba-sentinel-2-4/#%E7%B3%BB%E5%88%97%E5%9B%9E%E9%A1%BE 系列回顧
- 《Spring Cloud Alibaba基礎教程:使用Nacos實作服務注冊與發現》
- 《Spring Cloud Alibaba基礎教程:支援的幾種服務消費方式》
- 《Spring Cloud Alibaba基礎教程:使用Nacos作為配置中心》
- 《Spring Cloud Alibaba基礎教程:Nacos配置的加載規則詳解》
- 《Spring Cloud Alibaba基礎教程:Nacos配置的多環境管理》
- 《Spring Cloud Alibaba基礎教程:Nacos配置的多檔案加載與共享配置》
- 《Spring Cloud Alibaba基礎教程:Nacos的資料持久化》
- 《Spring Cloud Alibaba基礎教程:Nacos的叢集部署》
- 《Spring Cloud Alibaba基礎教程:使用Sentinel實作接口限流》
- 《Spring Cloud Alibaba基礎教程:Sentinel使用Nacos存儲規則》
- 《Spring Cloud Alibaba基礎教程:Sentinel使用Apollo存儲規則》
- 《Spring Cloud Alibaba基礎教程:Sentinel Dashboard中修改規則同步到Apollo》