Sentinel整合Gateway

硬编码方式配置限流规则
  1. pom引入依赖
    <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>
    
  2. 添加配置
    spring.cloud.sentinel.transport.dashboard=localhost:8858
    spring.cloud.sentinel.transport.port=8749
    spring.cloud.sentinel.filter.enabled=false
    
  3. 编写启动类
    @EnableDiscoveryClient
    @SpringBootApplication
    public class SentinelGatewayApplication {public static void main(String[] args) {System.setProperty(SentinelConfig.APP_TYPE_PROP_KEY, "1");System.setProperty("csp.sentinel.dashboard.server","localhost:8858");System.setProperty(SentinelConfig.PROJECT_NAME_PROP_KEY,"hello-sentinel-gateway");// 以上参数需要配置SpringApplication.run(SentinelGatewayApplication.class, args) ;}
    }
    
  4. 编写限流规则
    @Configuration
    public class FlowRuleConfig {@PostConstructpublic void init(){// 加载限流分组规则this.initCustomizeRule();// 加载限流分组Api// 这个加载会报错this.initCustomizedApis();}/*** 加载限流规则*/private void initCustomizeRule(){log.info("------加载限流分组规则----------");Set<GatewayFlowRule> list = new HashSet<>() ;//1. 按照微服务routeId限流(针对整个微服务)GatewayFlowRule rule = new GatewayFlowRule("hello_nacos_client") ;rule.setResourceMode(SentinelGatewayConstants.RESOURCE_MODE_ROUTE_ID) ;rule.setGrade(RuleConstant.FLOW_GRADE_QPS) ;rule.setIntervalSec(60) ;rule.setCount(4) ;list.add(rule) ;//2. 按照api分组限流(针对api)GatewayFlowRule rule1 = new GatewayFlowRule("hello_nacos_client_1") ;// setResourceMode、setGrade 可以不设置rule1.setResourceMode(SentinelGatewayConstants.RESOURCE_MODE_CUSTOM_API_NAME) ;rule1.setGrade(RuleConstant.FLOW_GRADE_QPS) ;rule1.setIntervalSec(2) ;rule1.setCount(1) ;list.add(rule1) ;//GatewayFlowRule rule2 = new GatewayFlowRule("hello_nacos_client_2") ;// setResourceMode、setGrade 可以不设置rule2.setResourceMode(SentinelGatewayConstants.RESOURCE_MODE_CUSTOM_API_NAME) ;rule2.setGrade(RuleConstant.FLOW_GRADE_QPS) ;rule2.setIntervalSec(10) ;rule2.setCount(2) ;list.add(rule2) ;//GatewayRuleManager.loadRules(list) ;}private void initCustomizedApis() {Set<ApiDefinition> definitions = new HashSet<>();ApiDefinition api1 = new ApiDefinition("hello_nacos_client_1").setPredicateItems(new HashSet<>() {{add(new ApiPathPredicateItem().setPattern("/hello-nacos/hello/index"));}});ApiDefinition api2 = new ApiDefinition("hello_nacos_client_2").setPredicateItems(new HashSet<>() {{add(new ApiPathPredicateItem().setPattern("/hello-nacos/user/add"));add(new ApiPathPredicateItem().setPattern("/hello-nacos/user/**").setMatchStrategy(SentinelGatewayConstants.PARAM_MATCH_STRATEGY_PREFIX));}});definitions.add(api1);definitions.add(api2);GatewayApiDefinitionManager.loadApiDefinitions(definitions);}
    }
    
  5. 配置网关路由规则
    spring.cloud.gateway.enabled=true
    spring.cloud.gateway.discovery.locator.lower-case-service-id=true
    spring.cloud.gateway.routes[0].id=hello-nacos-client
    spring.cloud.gateway.routes[0].uri=lb://hello-nacos-client
    spring.cloud.gateway.routes[0].predicates[0]=Path=/hello-nacos/**
    spring.cloud.gateway.routes[0].filters[0]=StripPrefix=1
    
  6. 浏览器访问:http://localhost:8080/hello-nacos/hello/index
JSON文件配置限流规则
  1. 在【硬编码方式配置限流规则】的基础上去除FlowRuleConfig配置
  2. application.properties中添加配置
    # 配置限流规则    
    spring.cloud.sentinel.datasource.ds1.file.file=classpath:sentinel/gateway-flow-rule-sentinel.json
    spring.cloud.sentinel.datasource.ds1.file.dataType=json  
    spring.cloud.sentinel.datasource.ds1.file.rule-type=gw-flow
    # 配置API分组
    spring.cloud.sentinel.datasource.ds2.file.file=classpath:sentinel/gateway-flow-api-group-sentinel.json
    spring.cloud.sentinel.datasource.ds2.file.dataType=json  
    spring.cloud.sentinel.datasource.ds2.file.rule-type=gw-api-group
    
  3. 在resources目录下新建目录sentinel
  4. 在resource/sentinel目录中新建gateway-flow-rule-sentinel.json
    [{"resource": "hello_nacos_client_1","grade": 1,"resourceMode": 1,"intervalSec": 2,"count": 1},{"resource": "hello_nacos_client_2","grade": 1,"resourceMode": 1,"intervalSec": 10,"count": 2}
    ]
    
  5. 在resource/sentinel目录中新建gateway-flow-api-group-sentinel.json
    [{"apiName": "hello_nacos_client_1","predicateItems":[{"pattern": "/hello-nacos/hello/index"}]},{"apiName": "hello_nacos_client_2","predicateItems":[{"pattern": "/hello-nacos/user/add"},{"pattern": "/hello-nacos/user/*","matchStrategy": 1}]}
    ]
    
Nacos文件配置限流规则
  1. 在【硬编码方式配置限流规则】的基础上去除FlowRuleConfig配置
  2. pom添加依赖
    <dependency><groupId>com.alibaba.csp</groupId><artifactId>sentinel-datasource-nacos</artifactId>
    </dependency>
    
  3. application.properties中添加配置
    # 配置限流规则    
    spring.cloud.sentinel.datasource.ds1.nacos.dataId=gateway-flow-rule-sentinel.json
    spring.cloud.sentinel.datasource.ds1.nacos.groupId=DEFAULT_GROUP
    spring.cloud.sentinel.datasource.ds1.nacos.dataType=json
    spring.cloud.sentinel.datasource.ds1.nacos.rule-type=gw-flow
    # 配置API分组
    spring.cloud.sentinel.datasource.ds2.nacos.dataId=gateway-flow-api-group-sentinel.json
    spring.cloud.sentinel.datasource.ds2.nacos.groupId=DEFAULT_GROUP
    spring.cloud.sentinel.datasource.ds2.nacos.dataType=json
    spring.cloud.sentinel.datasource.ds2.nacos.rule-type=gw-api-group
    
  4. 在nacos控制台上新建gateway-flow-rule-sentinel.json与gateway-flow-api-group-sentinel.json文件并填充JSON内容
Dashboard 启动
  1. 执行启动命令
    java -Dcsp.sentinel.app.type=1 -Dcsp.sentinel.dashboard.server=localhost:8858 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard-1.8.6.jar
    
启动dashboard上查看不到网关服务 (使用spring-cloud-alibaba-sentinel-gateway启动则csp.sentinel.app.type=1非必须)
  1. 方式一:添加vm启动参数
    -Dcsp.sentinel.app.type=1 
    -Dcsp.sentinel.dashboard.server=localhost:8858
    -Dproject.name=hello-sentinel-gateway
    
  2. 方式二:启动类中添加参数
    System.setProperty(SentinelConfig.APP_TYPE_PROP_KEY, "1");
    System.setProperty("csp.sentinel.dashboard.server","localhost:8858");
    System.setProperty(SentinelConfig.PROJECT_NAME_PROP_KEY,"hello-sentinel-gateway");
    

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/86120.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2023华为杯数学建模竞赛E题

一、前言 颅内出血&#xff08;ICH&#xff09;是由多种原因引起的颅腔内出血性疾病&#xff0c;既包括自发性出血&#xff0c;又包括创伤导致的继发性出血&#xff0c;诊断与治疗涉及神经外科、神经内科、重症医学科、康复科等多个学科&#xff0c;是临床医师面临的重要挑战。…

Mac下使用vscode远程到服务器时解决opencv显示图像的问题

问题背景 当你使用vscode远程到服务器进行开发的时候&#xff0c;想要显示图像会出现报错&#xff0c;时因为服务器没有GUI支持&#xff0c;不能直接显示图像。我在使用Mac的时候遇到了这个问题&#xff0c;给出解决的方案&#xff0c;搭建相关环境。 X11 Forwarding 在mac下…

Python之网络编程

一、网络编程 互联网时代,现在基本上所有的程序都是网络程序,很少有单机版的程序了。 网络编程就是如何在程序中实现两台计算机的通信。 Python语言中,提供了大量的内置模块和第三方模块用于支持各种网络访问,而且Python语言在网络通信方面的优点特别突出,远远领先其他语…

videoPlayer的播放

就是videoPlayer需要赋给他一个RenderTexture这个RenderTexture可以设置宽高在这个texture里面进行播放的视频&#xff0c;宽高会自动进行等比例缩放。之所以遇到这个问题&#xff0c;是因为视频宽高也需要自适应&#xff0c;但是来不及做策划就说按照1080*1920来做&#xff0c…

RabbitMQ配置文件_修改RabbitMQ MQTT的1883端口

Centos离线安装RabbitMQ并开启MQTT Docker安装rabbitMQ RabbitMQ集群搭建和测试总结_亲测 Docker安装RabbitMQ集群_亲测成功 rabbitmq.conf 默认没有配置文件,可以手动创建: /etc/rabbitmq/rabbitmq.conf # # RabbitMQ broker section # ## Related doc guide: https://…

SAP SMTP邮件功能配置技术手册

一、参数文件配置 本文以配置linux上的S4应用服务器SMTP为例 1、Linux(Unix)系统 定义连接到SMTP服务器的端口参数: is/SMTP/virt_host_<x>值:*:25; 定义SAP应用服务器邮件功能的协议及端口参数: icm/server_port_<x>值:PROT=SMTP,PORT=25000,TIMEOUT=…

iOS17适配指南-新版

文章目录 一、iOS17适配点二、具体代码 一、iOS17适配点 UIView与UIViewController。可以设置数据为空时的占位视图&#xff0c;增加SymbolAnimations&#xff0c;通过addSymbolEffect()与removeSymbolEffect()方法&#xff0c;可以实现SF Symbols图标的添加与移除动画。UIPag…

KT142C语音芯片flash型用户如何更新固件的说明_V2

目录 一、简介 2.1 让芯片进入PC模式 2.2 双击提供的exe程序即可 一、简介 正常的情况下&#xff0c;用户肯定是不需要更新固件的&#xff0c;因为芯片出厂默认就烧录了对应的程序固件&#xff0c;但是有客户可能需要小修小改&#xff0c;或者订制一下某些功能&#xff0c…

【业务功能114】微服务-springcloud-springboot-Kubernetes集群-k8s集群-KubeSphere发布应用WordPress

KubeSphere应用发布WordPress 一、WordPress 简介 WordPress&#xff08;使用 PHP 语言编写&#xff09;是免费、开源的内容管理系统&#xff0c;用户可以使用 WordPress 搭建自己的网站,大多数博客网站都是基于它实现。完整的 WordPress 应用程序包括以下 Kubernetes 对象&a…

Linux设备驱动之Camera驱动

Linux设备驱动之Camera驱动 Camera&#xff0c;相机&#xff0c;平常手机使用较多&#xff0c;但是手机的相机怎么进行拍照的&#xff0c;硬件和软件&#xff0c;都是如何配合拍摄到图像的&#xff0c;下面大家一起来了解一下。 基础知识 在介绍具体Camera框架前&#xff0c…

Linux——进程

目录 一、基本概念 二、描述进程-PCB &#xff08;一&#xff09;task_struct-PCB的一种 &#xff08;二&#xff09;task_ struct内容分类 三、查看进程 &#xff08;一&#xff09;利用ps命令 &#xff08;二&#xff09; 通过 /proc 系统文件夹查看 &#xff08;三…

c 各种例子

1. struct{ int code; float cost; }item,*ptrst; ptrst&item; prtst->code3451 // ptrst->codeitem.code(*ptrst).code 结构与union 的运算符相同&#xff0c;不同的是union 在同一时间内只能存储成员中的一种&#xff0c;其他的成员不真实。 2. c的修饰符声…

停车场系统源码

源码下载地址&#xff08;小程序开源地址&#xff09;&#xff1a;停车场系统小程序&#xff0c;新能源电动车充电系统&#xff0c;智慧社区物业人脸门禁小程序: 【涵盖内容】&#xff1a;城市智慧停车系统&#xff0c;汽车新能源充电&#xff0c;两轮电动车充电&#xff0c;物…

zemaxMIF曲线图

调制传递函数&#xff08; Modulation Transfer Function&#xff0c;MTF &#xff09;是用来形容光学系统成像质量的重要指标。 通过对光学系统像空间进行傅里叶变换&#xff0c;可以得到一张分析图表&#xff0c;来描述像面上对比度和空间频率之间的对应关系。 对比度&…

C/C++统计满足条件的4位数个数 2023年5月电子学会青少年软件编程(C/C++)等级考试一级真题答案解析

目录 C/C统计满足条件的4位数个数 一、题目要求 1、编程实现 2、输入输出 二、解题思路 1、案例分析 三、程序代码 四、程序说明 五、运行结果 六、考点分析 C/C统计满足条件的4位数个数 2019年12月 C/C编程等级考试一级编程题 一、题目要求 1、编程实现 给定若干…

numpy 和 tensorflow 中的各种乘法(点乘和矩阵乘)

嗨喽&#xff0c;大家好呀~这里是爱看美女的茜茜呐 &#x1f447; &#x1f447; &#x1f447; 更多精彩机密、教程&#xff0c;尽在下方&#xff0c;赶紧点击了解吧~ python源码、视频教程、插件安装教程、资料我都准备好了&#xff0c;直接在文末名片自取就可 点乘和矩阵乘…

【深度学习实验】前馈神经网络(三):自定义多层感知机(激活函数logistic、线性层算Linear)

目录 一、实验介绍 二、实验环境 1. 配置虚拟环境 2. 库版本介绍 三、实验内容 0. 导入必要的工具包 1. 构建数据集 2. 激活函数logistic 3. 线性层算子 Linear 4. 两层的前馈神经网络MLP 5. 模型训练 一、实验介绍 本实验实现了一个简单的两层前馈神经网络 激活函数…

Linux 链表示例 LIST_INIT LIST_INSERT_HEAD

list(3) — Linux manual page 用Visual Studio 2022创建CMake项目 * CmakeLists.txt # CMakeList.txt : Top-level CMake project file, do global configuration # and include sub-projects here. # cmake_minimum_required (VERSION 3.12)project ("llist")# I…

【React】React概念、特点和Jsx基础语法

React是什么&#xff1f; React 是一个用于构建用户界面的 JavaScript 库。 是一个将数据渲染为 HTML 视图的开源 JS 库它遵循基于组件的方法&#xff0c;有助于构建可重用的 UI 组件它用于开发复杂的交互式的 web 和移动 UI React有什么特点 使用虚拟 DOM 而不是真正的 DO…

云原生Kubernetes:K8S存储卷

目录 一、理论 1.存储卷 2.emptyDir 存储卷 3.hostPath卷 4.NFS共享存储 5.PVC 和 PV 6.静态创建PV 7.动态创建PV 二、实验 1.emptyDir 存储卷 2.hostPath卷 3.NFS共享存储 4.静态创建PV 5.动态创建PV 三、问题 1.生成pod一直pending 2.shoumount -e未显示共享…