本文主要是介绍Sentinel 流控-关联模式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
关联模式
A关联B, 当B流控后,A 的流控规则也生效了
条件
- A 设置高级流控规则,关联 B资源
- B 设置普通流控规则(独立规则)
实例
接口编写
package com.learning.springcloud.order.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
@RequestMapping("/guanlian")
public class GuanLianController {@RequestMapping("/A")public Object A() { return "hi, A;"; }@RequestMapping("/B")public Object B() { return "hi, B;"; }}
设置流控规则
- /guanlian/A
- /guanlian/B
效果
- B接口正常时, A也正常
- B通过postman循环访问,造成B接口被流控
关联模式:A关联B, 当B流控后,A 的流控规则也生效了
这篇关于Sentinel 流控-关联模式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!