溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Sentinel Dashboard集成Zookeeper持久化的方式

發(fā)布時間:2021-09-04 18:30:34 來源:億速云 閱讀:260 作者:chen 欄目:大數(shù)據(jù)

這篇文章主要講解了“Sentinel Dashboard集成Zookeeper持久化的方式”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Sentinel Dashboard集成Zookeeper持久化的方式”吧!

集成方式

拷貝test模塊對應(yīng)文件到main對應(yīng)位置,刪除引入test scope

Sentinel Dashboard集成Zookeeper持久化的方式

FlowControllerV2修改ruleProvider、rulePublisher 的@Qualifier為拷貝過來的FlowRuleZookeeperProvider、FlowRuleZookeeperPublisher

@Autowired
@Qualifier("flowRuleZookeeperProvider")
private DynamicRuleProvider<List<FlowRuleEntity>> ruleProvider;
@Autowired
@Qualifier("flowRuleZookeeperPublisher")
private DynamicRulePublisher<List<FlowRuleEntity>> rulePublisher;

靜態(tài)文件配置修改

Sentinel Dashboard集成Zookeeper持久化的方式

至此,打包后可以直接在控制臺修改規(guī)則寫入到zk

上面修改只針對FlowControllerV2改動,網(wǎng)關(guān)流控走的是GatewayFlowRuleController,對應(yīng)的entity不一樣,參考上面改造新增GatewayFlowRuleZookeeperProvider、GatewayFlowRuleZookeeperPublisher,修改GatewayFlowRuleController持久化方式,

list.json 查詢直接查詢zk數(shù)據(jù)

//            List<GatewayFlowRuleEntity> rules = sentinelApiClient.fetchGatewayFlowRules(app, ip, port).get();
            List<GatewayFlowRuleEntity> rules = ruleProvider.getRules(app);

new.json、save.json、delete.json 內(nèi)存存儲后同步持久化zk

entity = repository.save(entity);
publishRules(entity.getApp());
/**
 * zk 推送規(guī)則
 * @param app
 * @throws Exception
 */
private void publishRules(/*@NonNull*/ String app) throws Exception {
    List<GatewayFlowRuleEntity> rules = repository.findAllByApp(app);
    rulePublisher.publish(app, rules);
}

感謝各位的閱讀,以上就是“Sentinel Dashboard集成Zookeeper持久化的方式”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Sentinel Dashboard集成Zookeeper持久化的方式這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI