分布式流控系统 QQ: 527645454 (开发讨论群)
maven加pom依赖
io.github.dzh dimit-core io.github.dzh dimit-zk
初始化StoreSystem
String uri = “dimit-zk://dzh/dimit?host=127.0.0.1:2181&sleep=1000&retry=3”; DimitStoreSystem dss = DimitStores.newStoreSystem(URI.create(uri), null);
依次创建流控Conf,配置结构层次:
- DimitConf 定义一个流控器 - ChannelGroupConf 通道组配置 - ChannelConf 通道配置
注: 参考单位测试 dimit-demo/../TestZkStoreConfDemo
注:
初始化Dimiter,依据流控Conf创建对应的运行时数据
// init dimiter and runtime channels String uri = “dimit-zk://dzh/dimit?host=127.0.0.1:2181&sleep=1000&retry=3”; Dimiter dimiter = Dimiter.newDimiter(URI.create(uri), null, dimitConfId); ChannelGroupWrapper group = demo.initChannelGroup(channelGroupConfId); group.newChannel(ChannelConfId_1, ChannelType.SEND); group.newChannel(ChannelConfId_2, ChannelType.SEND);
// select List selected = group.select(TagA,TagB); V result = null; for(ChannelWrapper channel : selected) { try{ result = channel.call(new ChannelCallable{ // TODO request … }); // TODO parse result … break; }catch(RateLimiterException e){ LOG.info(e.getMessage(), e); }catch(InvalidChannelException e){ LOG.error(e.getMessage(), e); }catch(Exception e){ // or break LOG.error(e.getMessage(), e); } }
// program exit dimiter.close();
注: 参考单位测试 dimit-demo/../TestDimiterDemo
流量控制
Tag筛选
主备切换
质量分析
stat.enable=true
异常切换
Web管理
JDK1.7 or higher
maven 3
protobuf 3
servlet-api v3.1.0 TODO 使用wep4j