我尝试用拉模式实现规则的持久化,相关代码在这里: http://www.itmuch.com/spring-cloud-alibaba/sentinel-rules-persistence-pull-mode/
举个例子:
// 流控规则 ReadableDataSource<String, List> flowRuleRDS = new FileRefreshableDataSource<>( flowRulePath, flowRuleListParser ); FlowRuleManager.register2Property(flowRuleRDS.getProperty()); WritableDataSource<List> flowRuleWDS = new FileWritableDataSource<>( flowRulePath, this::encodeJson ); WritableDataSourceRegistry.registerFlowDataSource(flowRuleWDS);
但 com.alibaba.csp.sentinel.transport.util.WritableDataSourceRegistry 里面只支持
private static WritableDataSource<List<FlowRule>> flowDataSource = null;
private static WritableDataSource<List<AuthorityRule>> authorityDataSource = null;
private static WritableDataSource<List<DegradeRule>> degradeDataSource = null;
private static WritableDataSource<List<SystemRule>> systemSource = null;
没有ParamFlowRule等等其他规则。 所以,ParamFlowRule是不支持用拉模式持久化吗?
我找到了这个Issue,里面有一些讨论:https://github.com/alibaba/Sentinel/issues/414 但没有找到示例代码,能否帮忙解答:
1、是否支持拉模式持久化?
2、如果支持,是否能够帮忙提供一下示例代码?
原提问者GitHub用户eacdy
对于参数流控制,可以通过ModifyParamFlowRulesCommandHandler#setWritableDataSource方法注册WritableSource。
对于集群流控制(令牌服务器的规则),WritableDataSource不支持(也不推荐)它。
原回答者GitHub用户sczyh30
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。