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

 Sentinel 流控-关联模式_第1张图片

  • /guanlian/B

 Sentinel 流控-关联模式_第2张图片

效果

  • B接口正常时, A也正常

Sentinel 流控-关联模式_第3张图片

  • B通过postman循环访问,造成B接口被流控

 Sentinel 流控-关联模式_第4张图片

Sentinel 流控-关联模式_第5张图片 

关联模式:A关联B, 当B流控后,A 的流控规则也生效了

你可能感兴趣的:(java,spring,cloud,流控关联模式)