热点参数流控
- 热点流控 资源必须使用注解 @SentinelResource
编写接口 以及 热点参数流控处理器
/*** 热点流控 必须使用注解 @SentinelResource* @param id* @return*/
@RequestMapping("/getById/{id}")
@SentinelResource(value = "getById", blockHandler = "hotParamHandler")
public Object getById(@PathVariable("id") Integer id) {return "hi, order " + id;
}/** * 热点参数流控处理器 * * @param id * @param be * @return */
public Object hotParamHandler(@PathVariable("id") Integer id, BlockException be){return id + " -> 热点流控了";
}
设置热点规则
设置入口
设置热点规则
- 设置第几个参数,从0开始 以及 QPS的流控阈值 普通值阈值为10