更新json文件_Alibaba Sentinel 规则持久化拉模式手把手教程【基于文件】

点击上方"IT牧场",选择"设为星标"技术干货每日送达!

本文实现基于拉模式的Alibaba Sentinel规则持久化。

一、拉模式架构

2ef26d319ad93f38948e3f435a706c67.png

TIPS

图片来自官方。

引用自 https://github.com/alibaba/Sentinel/wiki/在生产环境中使用-Sentinel

二、原理简述

•FileRefreshableDataSource 定时从指定文件中读取规则JSON文件图中的本地文件,如果发现文件发生变化,就更新规则缓存。•FileWritableDataSource 接收控制台规则推送,并根据配置,修改规则JSON文件图中的本地文件。

三、编写

修改Spring Cloud Alibaba微服务。

3.1 加依赖

  com.alibaba.csp  sentinel-datasource-extension

3.2 写代码

/** * 拉模式规则持久化 * * @author itmuch.com */public class FileDataSourceInit implements InitFunc {    @Override    public void init() throws Exception {        // TIPS: 如果你对这个路径不喜欢,可修改为你喜欢的路径        String ruleDir = System.getProperty("user.home") + "/sentinel/rules";        String flowRulePath = ruleDir + "/flow-rule.json";        String degradeRulePath = ruleDir + "/degrade-rule.json";        String systemRulePath = ruleDir + "/system-rule.json";        String authorityRulePath = ruleDir + "/authority-rule.json";        String paramFlowRulePath = ruleDir + "/param-flow-rule.json";        this.mkdirIfNotExits(ruleDir);        this.createFileIfNotExits(flowRulePath);        this.createFileIfNotExits(degradeRulePath);        this.createFileIfNotExits(systemRulePath);        this.createFileIfNotExits(authorityRulePath);        this.createFileIfNotExits(paramFlowRulePath);        // 流控规则        ReadableDataSource> flowRuleRDS = new FileRefreshableDataSource<>(            flowRulePath,            flowRuleListParser        );        // 将可读数据源注册至FlowRuleManager        // 这样当规则文件发生变化时,就会更新规则到内存        FlowRuleManager.register2Property(flowRuleRDS.getProperty());        WritableDataSource> flowRuleWDS = new FileWritableDataSource<>(            flowRulePath,            this::encodeJson        );        // 将可写数据源注册至transport模块的WritableDataSourceRegistry中        // 这样收到控制台推送的规则时,Sentinel会先更新到内存,然后将规则写入到文件中        WritableDataSourceRegistry.registerFlowDataSource(flowRuleWDS);        // 降级规则        ReadableDataSource> degradeRuleRDS = new FileRefreshableDataSource<>(            degradeRulePath,            degradeRuleListParser        );        DegradeRuleManager.register2Property(degradeRuleRDS.getProperty());        WritableDataSource> degradeRuleWDS = new FileWritableDataSource<>(            degradeRulePath,            this::encodeJson        );        WritableDataSourceRegistry.registerDegradeDataSource(degradeRuleWDS);        // 系统规则        ReadableDataSource> systemRuleRDS = new FileRefreshableDataSource<>(            systemRulePath,            systemRuleListParser        );        SystemRuleManager.register2Property(systemRuleRDS.getProperty());        WritableDataSource> systemRuleWDS = new FileWritableDataSource<>(            systemRulePath,            this::encodeJson        );        WritableDataSourceRegistry.registerSystemDataSource(systemRuleWDS);        // 授权规则        ReadableDataSource> authorityRuleRDS = new FileRefreshableDataSource<>(            flowRulePath,            authorityRuleListParser        );        AuthorityRuleManager.register2Property(authorityRuleRDS.getProperty());        WritableDataSource> authorityRuleWDS = new FileWritableDataSource<>(            authorityRulePath,            this::encodeJson        );        WritableDataSourceRegistry.registerAuthorityDataSource(authorityRuleWDS);        // 热点参数规则        ReadableDataSource> paramFlowRuleRDS = new FileRefreshableDataSource<>(            paramFlowRulePath,            paramFlowRuleListParser        );        ParamFlowRuleManager.register2Property(paramFlowRuleRDS.getProperty());        WritableDataSource> paramFlowRuleWDS = new FileWritableDataSource<>(            paramFlowRulePath,            this::encodeJson        );        ModifyParamFlowRulesCommandHandler.setWritableDataSource(paramFlowRuleWDS);    }    private Converter> flowRuleListParser = source -> JSON.parseObject(        source,        new TypeReference>() {        }    );    private Converter> degradeRuleListParser = source -> JSON.parseObject(        source,        new TypeReference>() {        }    );    private Converter> systemRuleListParser = source -> JSON.parseObject(        source,        new TypeReference>() {        }    );    private Converter> authorityRuleListParser = source -> JSON.parseObject(        source,        new TypeReference>() {        }    );    private Converter> paramFlowRuleListParser = source -> JSON.parseObject(        source,        new TypeReference>() {        }    );    private void mkdirIfNotExits(String filePath) throws IOException {        File file = new File(filePath);        if (!file.exists()) {            file.mkdirs();        }    }    private void createFileIfNotExits(String filePath) throws IOException {        File file = new File(filePath);        if (!file.exists()) {            file.createNewFile();        }    }    private  String encodeJson(T t) {        return JSON.toJSONString(t);    }}

3.3 配置

在项目的 resources/META-INF/services 目录下创建文件,名为 com.alibaba.csp.sentinel.init.InitFunc ,内容为:

# 改成上面FileDataSourceInit的包名类名全路径即可。com.itmuch.contentcenter.FileDataSourceInit

四、优缺点分析

4.1 优点

•简单易懂•没有多余依赖(比如配置中心、缓存等)

4.2 缺点

•由于规则是用 FileRefreshableDataSource 定时更新的,所以规则更新会有延迟。如果FileRefreshableDataSource定时时间过大,可能长时间延迟;如果FileRefreshableDataSource过小,又会影响性能;•规则存储在本地文件,如果有一天需要迁移微服务,那么需要把规则文件一起迁移,否则规则会丢失。

五、你可能会有的疑问

Spring Cloud Alibaba不是提供了如下配置了吗?为什么要全部自己写呢?

spring.cloud.sentinel.datasource.ds1.file.file=classpath: degraderule.jsonspring.cloud.sentinel.datasource.ds1.file.rule-type=flow#spring.cloud.sentinel.datasource.ds1.file.file=classpath: flowrule.json#spring.cloud.sentinel.datasource.ds1.file.data-type=custom#spring.cloud.sentinel.datasource.ds1.file.converter-class=com.alibaba.cloud.examples.JsonFlowRuleListConverter#spring.cloud.sentinel.datasource.ds1.file.rule-type=flow

关于这个问题,可以看我提的Issue:https://github.com/alibaba/spring-cloud-alibaba/issues/756

六、参考文档

https://github.com/alibaba/Sentinel/wiki/在生产环境中使用-Sentinel#pull模式

干货分享

最近将个人学习笔记整理成册,使用PDF分享。关注我,回复如下代码,即可获得百度盘地址,无套路领取!

•001:《Java并发与高并发解决方案》学习笔记;•002:《深入JVM内核——原理、诊断与优化》学习笔记;•003:《Java面试宝典》•004:《Docker开源书》•005:《Kubernetes开源书》•006:《DDD速成(领域驱动设计速成)》•007:全部•008:加技术讨论群

往期精彩

•你真的了解 lambda 吗(纠错篇)?•如何在 IDEA 使用Debug 图文教程•除了负载均衡,Nginx还可以做限流、缓存、黑白名单……•漫漫优化路,总会错几步!记一次接口优化!•秒杀系统 架构分析 与 实战•优化你的Spring Boot


想知道更多?长按/扫码关注我吧↓↓↓3b3565f52835dffa7e3d17dc5c6234f1.png>>>技术讨论群<<<喜欢就点个"在看"呗^_^

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值