赞
踩
Sentinel 支持对 SpringCloud Gateway、Zuul等主流网关进行限流。
从1.6.0版本开始,Sentinel提供了SpringCloud Gateway的适配模块,可以提供两种资源维度的限流:
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-spring-cloud-gateway-adapter</artifactId>
</dependency>
基于Sentinel的Gateway限流是通过其提供的Filter来完成的,使用时只需注入对应的SentinelGatewayFilter
实例以及SentinelGatewayBlockExceptionHandler
实例即可。
@Configuration
public class GatewayConfiguration {
private final List<ViewResolver> viewResolvers;
private final ServerCodecConfigurer serverCodecConfigurer;
public GatewayConfiguration(ObjectProvider<List<ViewResolver>> viewResolversProvider, ServerCodecConfigurer serverCodecConfigurer) {
this.viewResolvers = viewResolversProvider.getIfAvailable(Collections::emptyList);
this.serverCodecConfigurer = serverCodecConfigurer;
}
//初始化一个限流的过滤器
@Bean
@Order(Ordered.HIGHEST_PRECEDENCE)
public GlobalFilter sentinelGatewayFilter() {
return new SentinelGatewayFilter();
}
//配置初始化的限流参数
@PostConstruct
public void initGatewayRules() {
Set<GatewayFlowRule> rules = new HashSet<>();
rules.add(new GatewayFlowRule("shop-product")//资源名称,对应路由id
.setCount(1)//限流阀值
.setIntervalSec(1)//统计时间窗口,单位是秒,默认是1秒
);
GatewayRuleManager.loadRules(rules);
}
//配置限流异常处理器
@Bean
@Order(Ordered.HIGHEST_PRECEDENCE)
public SentinelGatewayBlockExceptionHandler sentinelGatewayBlockExceptionHandler() {
return new SentinelGatewayBlockExceptionHandler(viewResolvers, serverCodecConfigurer);
}
//自定义限流异常页面
@PostConstruct
public void initBlockHandlers() {
BlockRequestHandler blockRequestHandler = new BlockRequestHandler() {
@Override
public Mono<ServerResponse> handleRequest(ServerWebExchange serverWebExchange, Throwable throwable) {
Map map= new HashMap<>();
map.put("code", 0);
map.put("message", "接口被限流了");
return ServerResponse
.status(HttpStatus.OK)
.contentType(MediaType.APPLICATION_JSON_UTF8)
.body(BodyInserters.fromObject(map));
}
} ;
GatewayCallbackManager.setBlockHandler(blockRequestHandler);
}
}
其中,GatewayFlowRule 网关限流规则中提供了如下属性:
(RESOURCE_MODE_ROUTE_ID)
还是用户在Sentinel 中定义的API分组(RESOURCE_MODE_CUSTOM_API_NAME)
,默认route。在一秒钟内多次访问http://localhost:7000/product/product/1?token=1232
就可以看到限流启作用了。
自定义API分组是一种更细粒度的限流规则定义
//配置初始化的限流参数
@PostConstruct
public void initGatewayRules() {
Set<GatewayFlowRule> rules = new HashSet<>();
rules.add(new GatewayFlowRule("shop_product_api").setCount(1).setIntervalSec(1));
rules.add(new GatewayFlowRule("shop_order_api").setCount(1).setIntervalSec(1));
GatewayRuleManager.loadRules(rules);
}
//自定义API分组
@PostConstruct
private void initCustomizedApis(){
Set<ApiDefinition> definitions = new HashSet<>();
//定义小组1
ApiDefinition api1 = new ApiDefinition("shop_product_api")
.setPredicateItems(new HashSet<ApiPredicateItem>(){{
//以/product/product/api1开头的请求
add(new ApiPathPredicateItem().setPattern("/product/product/**")
.setMatchStrategy(SentinelGatewayConstants.URL_MATCH_STRATEGY_PREFIX));
}});
//定义小组2
ApiDefinition api2 = new ApiDefinition("shop_order_api")
.setPredicateItems(new HashSet<ApiPredicateItem>(){{
//完全匹配/order/order2/message
add(new ApiPathPredicateItem().setPattern("/order/order2/message"));
}});
definitions.add(api1);
definitions.add(api2);
GatewayApiDefinitionManager.loadApiDefinitions(definitions);
}
在一秒钟内多次访问http://localhost:7000/product/product/1?token=1232
也可以看到限流启作用了。
到这儿,Gateway 服务网关限流的内容就已经介绍完了。下一篇将为大家带来链路追踪Sleuth相关的文章,敬请期待吧!
后续的文章,我们将继续完善我们的微服务系统,集成更多的Alibaba组件。想要了解更多JAVA后端知识,请点击文末名片与我交流吧。留下您的一键三连,让我们在这个寒冷的东西互相温暖吧!
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。