当前位置:网站首页>[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=1The 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 .
边栏推荐
- ArcGIS:矢量要素相同字段属性融合的两种方法
- Online interview, how to better express yourself? In this way, the passing rate will be increased by 50%~
- Personal statement of testers from Shuangfei large factory: is education important for testers?
- Network security -burpsuit
- Brush question 4
- 2021-01-11
- 网络安全-burpsuit
- Bea-3xxxxx error code
- 微信论坛交流小程序系统毕业设计毕设(7)中期检查报告
- Interview questions: how to test app performance?
猜你喜欢

Wechat forum exchange applet system graduation design completion (1) development outline

微信论坛交流小程序系统毕业设计毕设(7)中期检查报告

iNFTnews | NFT技术的广泛应用及其存在的问题

What does the model number of asemi rectifier bridge kbpc1510 represent

Wechat forum exchange applet system graduation design (2) applet function

V20变频器手自动切换(就地远程切换)的具体方法示例

微信论坛交流小程序系统毕业设计毕设(3)后台功能

The wonderful relationship between message queue and express cabinet

开发那些事儿:Go加C.free释放内存,编译报错是什么原因?

二叉树(Binary Tree)
随机推荐
【刷题记录】3. 无重复字符的最长子串
微信论坛交流小程序系统毕业设计毕设(5)任务书
为什么市场需要低代码?
Innovation today | five key elements for enterprises to promote innovation
【微服务|SCG】gateway整合sentinel
高级程序员必知必会,一文详解MySQL主从同步原理,推荐收藏
Install a new version of idea. Double click it to open it
Quelles sont les similitudes et les différences entre les communautés intelligentes et les villes intelligentes?
Brush question 5
Network security - Eternal Blue
Adrnoid开发系列(二十五):使用AlertDialog创建各种类型的对话框
Gee (III): calculate the correlation coefficient between two bands and the corresponding p value
[network] Introduction to C language
QT graphicsview graphical view usage summary with flow chart development case prototype
Comparison of various development methods of applets - cross end? Low code? Native? Or cloud development?
Clean C disk
三菱PLC slmp(mc)协议
Interview questions: how to test app performance?
2022 words for yourself
UE4_UE5蓝图command节点的使用(开启关闭屏幕响应-log-发布全屏显示)