speingclound sentinel限流之 热点参数

设计思路:

限流大致如下-https://blog.csdn.net/weixin_38612401/article/details/126174715

引入后,网关和各个微服务都在dashboard服务配置限流规则,细节自己看文档,网关和微服务及feign调用,都可以增加过滤器filter来处理限流后异常提示信息

 speingclound sentinel限流之 热点参数_第1张图片

关于热点数据,可以使用注解@RentinelResource来增加热点数据,也可以使用SphU.entry()来自己传入热点数据

https://blog.csdn.net/qq_38377525/article/details/123154502

SphU.entry()方式,可以在各个微服务加filter实现,每次调用接口先走filter限流热点参数,通过再调用到controller,具体实现见下面图,自己找吧

pom引入:

speingclound sentinel限流之 热点参数_第2张图片

网关与其他微服务pom一致

speingclound sentinel限流之 热点参数_第3张图片

speingclound sentinel限流之 热点参数_第4张图片speingclound sentinel限流之 热点参数_第5张图片speingclound sentinel限流之 热点参数_第6张图片speingclound sentinel限流之 热点参数_第7张图片speingclound sentinel限流之 热点参数_第8张图片speingclound sentinel限流之 热点参数_第9张图片

 

 

 

 

 

你可能感兴趣的:(java,java,sentinel,spring)