当前位置:网站首页>[microservices SCG] gateway integration Sentinel
[microservices SCG] gateway integration Sentinel
2022-07-07 23:14:00 【Bulst】
sentinel service 1.6.0 The above versions can support the integration gateway for unified flow control
It also provides flow restriction of two resource dimensions :
- route dimension : That is, the routing entries configured in the configuration file , The resource name is the corresponding routeId, This is a coarse-grained current limiting , Generally, it limits the flow of a micro service .
Customize API dimension : Users can take advantage of Sentinel Provided API From defining something API grouping , This is a fine-grained current limiting , For a certain kind of uri Carry out matching current limiting , Can span multiple microservices .
sentinel Integrate gateway rely on
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-spring-cloud-gateway-adapter</artifactId>
</dependency>
Because the heartbeat is sent first appType, The front page will not display the console of the gateway, so we need to configure it before sending the heartbeat appType.
To configure JVM Launch parameters
Can be in IDEA in , perhaps java -jar Configure startup parameters-Dcsp.sentinel.app.type=1
The startup class directly sets system parameters
public static void main(String[] args) { System.setProperty("csp.sentinel.app.type", "1"); SpringApplication.run(GatewayApplication.class); }
sentinel Integrate gateway The configuration file
spring:
cloud: # To configure SpringCloudGateway The routing
sentinel:
transport:
dashboard: ip:port #sentinel The request address of the console
datasource:
ds1:
nacos:
server-addr: ip:port
data-id: ${
spring.application.name}-${
spring.profiles.active}-sentinel-gw-flow
group-id: DEFAULT_GROUP
data-type: json
rule-type: gw-flow // Flow control rules
ds2:
nacos:
server-addr: ip:port
data-id: ${
spring.application.name}-${
spring.profiles.active}-sentinel-gw-api-group
group-id: DEFAULT_GROUP
data-type: json
rule-type: gw-api-group //api type
eager: true # Immediately load
log:
dir: /data/sentinel/gateway // Log storage directory
Customize api Group
[
{
"apiName": "itsmApiFlow",
"predicateItems": [
{
"pattern": "/service-request/detail/getInitInfo"
},
{
"pattern": "/service-request/pool/**",
"matchStrategy": 1
}
]
}
]
- api Type and flow control rules
[
{
"resource": "service-asset",
"resourceMode": 0,
"count": 100,
"intervalSec": 1
},
{
"resource": "itsmApiFlow",
"resourceMode": 1,
"count": 100,
"intervalSec": 1
}
]
The difference between gateway service and other services
In the display of the page, there is an obvious difference between the Internet off service and other services
Rules and customization of gateway flow restriction API The entity and management logic of :
- GatewayFlowRule: Gateway current limiting rules , in the light of API Gateway The flow restriction rules of scenario customization , It can be different route Or custom API Group for current limiting , Support for parameters in the request 、Header、 source IP And so on .
- ApiDefinition: User defined API Define groups , It can be seen as some URL Matching combination . For example, we can define a API It's called my_api, request path The model is /foo/** and /baz/** All belong to my_api This API Group below . When limiting current, you can customize API Group dimension to limit current .
Among them, the gateway current limiting rules GatewayFlowRule The fields of are explained as follows :
- resource: Resource name , It can be... In the gateway route Name or user-defined API Group name .
- resourceMode: The rule is for API Gateway Of route(RESOURCE_MODE_ROUTE_ID) It's the user Sentinel As defined in API grouping (RESOURCE_MODE_CUSTOM_API_NAME), The default is route.
- grade: Limitation index dimension , Same as the current limiting rule grade Field .
- count: Current limiting threshold
- intervalSec: Statistics time window , The unit is seconds , The default is 1 second .
- controlBehavior: Flow shaping control effect , Same as the current limiting rule controlBehavior Field , At present, it supports fast failure and uniform queuing , The default is to fail fast .
- burst: Number of additional requests allowed in response to a burst request .
- maxQueueingTimeoutMs: Maximum queuing time in uniform queuing mode , In milliseconds , Only in uniform queuing mode .
- paramItem: Parameter current limiting configuration . If you do not provide , It means that current limiting is not carried out for parameters , The gateway rules will be converted into normal flow control rules ; Otherwise, it will be converted into hot spot rule . Fields in :
- parseStrategy: Strategy to extract parameters from the request , Extraction sources are currently supported IP(PARAM_PARSE_STRATEGY_CLIENT_IP)、Host(PARAM_PARSE_STRATEGY_HOST)、 arbitrarily Header(PARAM_PARSE_STRATEGY_HEADER) And arbitrary URL Parameters (PARAM_PARSE_STRATEGY_URL_PARAM) Four patterns .
- fieldName: If the extraction strategy is chosen Header Mode or URL Parameter mode , You need to specify the corresponding header Name or URL Parameter name .
- pattern: Matching pattern of parameter values , Only the request attribute values matching this pattern will be included in statistics and flow control ; If it is blank, all values of the request attribute will be counted .(1.6.2 Version starting support )
- matchStrategy: Matching strategy for parameter values , At present, accurate matching is supported (PARAM_MATCH_STRATEGY_EXACT)、 The substring matching (PARAM_MATCH_STRATEGY_CONTAINS) And regular match (PARAM_MATCH_STRATEGY_REGEX).(1.6.2 Version starting support )
The user can go through GatewayRuleManager.loadRules(rules) Manually load gateway rules , Or through GatewayRuleManager.register2Property(property) Register dynamic rule source dynamic push ( Recommend ways ).
Customized some API grouping :
private void initCustomizedApis() {
Set<ApiDefinition> definitions = new HashSet<>();
ApiDefinition api1 = new ApiDefinition("some_customized_api")
.setPredicateItems(new HashSet<ApiPredicateItem>() {
{
add(new ApiPathPredicateItem().setPattern("/product/baz"));
add(new ApiPathPredicateItem().setPattern("/product/foo/**")
.setMatchStrategy(SentinelGatewayConstants.PARAM_MATCH_STRATEGY_PREFIX));
}});
ApiDefinition api2 = new ApiDefinition("another_customized_api")
.setPredicateItems(new HashSet<ApiPredicateItem>() {
{
add(new ApiPathPredicateItem().setPattern("/ahas"));
}});
definitions.add(api1);
definitions.add(api2);
GatewayApiDefinitionManager.loadApiDefinitions(definitions);
}
Be careful :
- Sentinel The default granularity of gateway flow control is route Dimension and customization API Grouping dimension , Not supported by default URL Particle size . If through Spring Cloud Alibaba Access , Please put spring.cloud.sentinel.filter.enabled The configuration item is set to false( If you see it on the gateway flow control console URL resources , This is not configured false).
- If you use Spring Cloud Alibaba Sentinel Data source module , Note that the data source type of gateway flow control rules is gw-flow, If the gateway flow control rule data source is specified as flow Do not take effect .
边栏推荐
- 微信论坛交流小程序系统毕业设计毕设(5)任务书
- One question per day - pat grade B 1002 questions
- Locate to the bottom [easy to understand]
- Txt file virus
- Network security - information query of operating system
- ArcGIS:矢量要素相同字段属性融合的两种方法
- opencv scalar传入三个参数只能显示黑白灰问题解决
- Network security sqlmap and DVWA explosion
- About idea cannot find or load the main class
- PMP项目管理考试过关口诀-1
猜你喜欢
微信论坛交流小程序系统毕业设计毕设(1)开发概要
消息队列与快递柜之间妙不可言的关系
肠道里的微生物和皮肤上的一样吗?
How to operate DTC community?
The wonderful relationship between message queue and express cabinet
安踏DTC | 安踏转型,构建不只有FILA的增长飞轮
Comparison of various development methods of applets - cross end? Low code? Native? Or cloud development?
Database daily question --- day 22: last login
【刷题记录】3. 无重复字符的最长子串
Innovation today | five key elements for enterprises to promote innovation
随机推荐
Bea-3xxxxx error code
Network security - information query of operating system
Gee (III): calculate the correlation coefficient between two bands and the corresponding p value
Wechat forum exchange applet system graduation design (3) background function
Wechat forum exchange applet system graduation design (2) applet function
USB(十五)2022-04-14
Guessing game (read data from file)
UE4_UE5蓝图command节点的使用(开启关闭屏幕响应-log-发布全屏显示)
30讲 线性代数 第五讲 特征值与特征向量
OC variable parameter transfer
U盘拷贝东西时,报错卷错误,请运行chkdsk
oc 可变參数传递
Inftnews | the wide application of NFT technology and its existing problems
Wechat forum exchange applet system graduation design completion (7) Interim inspection report
USB(十四)2022-04-12
V20变频器手自动切换(就地远程切换)的具体方法示例
高级程序员必知必会,一文详解MySQL主从同步原理,推荐收藏
微信论坛交流小程序系统毕业设计毕设(7)中期检查报告
十三、系统优化
三菱PLC slmp(mc)协议