原创 吴就业 124 0 2020-07-15
本文为博主原创文章,未经博主允许不得转载。
本文链接:https://wujiuye.com/article/0dd3a4169242445896ed76dc790ce5da
作者:吴就业
链接:https://wujiuye.com/article/0dd3a4169242445896ed76dc790ce5da
来源:吴就业的网络日记
本文为博主原创文章,未经博主允许不得转载。
本篇文章写于2020年07月15日,从公众号|掘金|CSDN手工同步过来(博客搬家),本篇为原创文章。
Sentinel源码分析可以看笔者出版的书:《实战Alibaba Sentinel》
Sentinel
无论是实现限流还是熔断降级,其实都是通过适配模块去实现拦截方法的执行,在方法执行之前调用所有ProcessorSlot
的entry
方法,在方法执行之后所有ProcessorSlot
的exit
方法,使用责任链模式调用。由StatisticSlot
这个ProcessorSlot
统计请求信息,由DegradeSlot
检查当前请求是否需要熔断,由FlowSlot
检查当前请求是否需要限流。
StatisticSlot
的entry
方法将资源当前时间窗口的Bucket
的请求数自增1
,如果需要限流或熔断,则将Bucket
的限流总数自增1
;exit
方法负责更新Bucket
的成功总数或者异常总数、总耗时、最大耗时,以及将并发使用的线程总数减1
。
Sentinel
提供各种适配模块让我们更方便的使用Sentinel
,这些适配模块只不过是帮我们完成调用ProcessorSlot
的entry
方法以及调用ProcessorSlot
的exit
方法。在前面学习使用Sentinel
与OpenFeign
整合实现熔断降级时,我们使用spring-cloud-start-alibaba-sentinel
,由它实现Sentinel
与OpenFeign
整合。
当Sentinel
与OpenFeign
、Ribbon
整合时,客户端向服务端发起一次请求的过程如下图所示。
@FeignClient
注解注释的接口的方法时,由Sentinel
提供的SentinelInvocationHandler
方法调用拦截器拦截方法的执行,根据调用的方法的url
生成资源名称,然后调用Sentinel
的SphU
的entry
方法(完成所有ProcessorSlot
的entry
方法的调用),判断当前发起的请求是否需要限流或者熔断降级;OpenFeign
的MethodHandler
处理;OpenFeign
从Ribbon
那里获取一个服务提供者节点;OpenFeign
使用HttpClient
发起http
请求;OpenFeign
请求成功或者异常(已经经过重试)时,调用Sentinel
的Entry
的exit
方法(完成所有ProcessorSlot
的exit
方法的调用)更新当前时间窗口的请求成功总数、异常总数等;可见,Sentinel
处在接口调用的最前端,因此Sentinel
的统计数据即不会受Ribbon
的重试影响也不会受OpenFeign
的重试影响。
Sentinel
通过自己提供InvocationHandler
替换OpenFeign
的InvocationHandler
实现请求拦截。SentinelInvocationHandler
源码调试如下图所示。
InvocationHandler
是OpenFeign
为接口生成的JDK动态代理类时所需要的,是接口的方法拦截处理器,Sentinel
通过替换OpenFeign
的InvocationHandler
拦截方法的执行,在OpenFeign
处理接口调用之前实现限流、熔断降级的逻辑,以及之后的接口调用成功或异常时的数据统计。那么,Sentinel
是如何将原本的FeignInvocationHandler
替换为SentinelInvocationHandler
的呢?
OpenFeign
是通过Feign.Builder
类创建接口的代理类的,所以Sentinel
直接将Feign.Builder
也替换成了SentinelFeign.Builder
,由SentinelFeignAutoConfiguration
自动配置类向Spring
的Bean
容器注入SentinelFeign
,代码如下。
@Configuration(proxyBeanMethods = false)
@ConditionalOnClass({ SphU.class, Feign.class })
public class SentinelFeignAutoConfiguration {
@Bean
@Scope("prototype")
@ConditionalOnMissingBean
@ConditionalOnProperty(name = "feign.sentinel.enabled")
public Feign.Builder feignSentinelBuilder() {
return SentinelFeign.builder();
}
}
SentinelFeign.Builder
继承Feign.Builder
并重写build
方法,只是替换了InvocationHandlerFactory
,所以OpenFeign
调用InvocationHandlerFactory
的create
方法创建的InvocationHandler
就变成了SentinelInvocationHandler
。SentinelFeign.Builder
的build
方法源码如下。
public final class SentinelFeign {
public static Builder builder() {
return new Builder();
}
public static final class Builder extends Feign.Builder
implements ApplicationContextAware {
// .....
@Override
public Feign build() {
super.invocationHandlerFactory(new InvocationHandlerFactory() {
@Override
public InvocationHandler create(Target target,
Map<Method, MethodHandler> dispatch) {
// 创建SentinelInvocationHandler
}
});
super.contract(new SentinelContractHolder(contract));
return super.build();
}
// .....
}
}
build
方法中的匿名内部类InvocationHandlerFactory
的create
方法代码很长,所以去掉了。
create
方法负责创建SentinelInvocationHandler
,通过反射从FeignClientFactoryBean
拿到@FeignClient
注解上配置的fallback
,当触发限流或熔断时,Sentinel
就能根据fallback
配置的类型从Bean
工厂取得Fallback
并调用。
声明:公众号、CSDN、掘金的曾用名:“Java艺术”,因此您可能看到一些早期的文章的图片有“Java艺术”的水印。
Instrumentation之所以难驾驭,在于需要了解Java类加载机制以及字节码,一不小心就能遇到各种陌生的Exception。笔者在实现Java探针时就踩过不少坑,其中一类就是类加载相关的问题,也是本篇所要跟大家分享的。
我们基于Spring Cloud Gateway开发内部微服务网关,并结合注册中心实现自动服务发现路由。就在最近将项目部署测试环境的Kubernetes集群上时,发现路由失败。
订阅
订阅新文章发布通知吧,不错过精彩内容!
输入邮箱,提交后我们会给您发送一封邮件,您需点击邮件中的链接完成订阅设置。