赞
踩
Cloud全家桶中有个很重要的组件就是网关,在1.x版本中都是采用Zuul网关;但在2.x版本中,zuul的升级就是一直跳票,SpringCloud最后自己研发了一个网关代替Zuul。那就是 SpringCloud Gateway ,gateway是zuul 1.x版本的替代。
Gateway是在Spring生态系统之上架构的API网关服务,基于Spring 5,Spring Boot2 和Project Reactor技术。Gateway旨在提供一种简单而有效的方式来对API进行路由,以及提供一些强大的过滤器功能,例如:熔断、限流、重试等。
SpringCloud Gateway作为Spring cloud生态系统中的网关,目标是代替 Zuul,在SpringCloud2.0以上版本中,没有对新版本的Zuul 2.0以上实现最新高性能版本进行集成,仍然还是使用的Zuul 1.x非Reactor模式的老版本。而为了提升网关的性能,SpringCloud Gateway是基于WebFlux框架实现的,而WebFlux框架底层则使用了高性能的Reactor模式通信框架Netty,【说穿了就是 SpringCloud Gateway是异步非阻塞式】。其实打个比方:gateway相当于医院大厅的挂号台,对病人进行引流
(1)传统反向代理
在传统部署架构中,反向代理,大多是用于多个系统模块间的聚合,实现负载均衡,外网向内网的转发。通过修改配置文件的方式来进行增加或删除节点,并重启服务才可生效。通常来说,反向代理服务器只具备负载均衡、转发基本功能,若要需要其他功能,需要增加扩展或提供脚本来实现。
(2)API Gateway
在API Gateway部署模式中,API Gateway可以看作特殊的反向代理,是对反向代理服务器功能的扩充,同时API Gateway仅局限于服务API层面,对API做进一步的管理,保护。API Gateway不仅提供了负载均衡,转发功能,还提供了灰度发布,统一认证,熔断,消息转换,访问日志等丰富的功能。
(3)如何选择
倘若我们实际运用中,不需要服务发现,服务动态扩容,服务熔断,统一认证,消息转换等一系列API Gateway功能,我们完全可以使用反向代理服务器来部署微服务架构,当然如果这样做,如遇到增加或减少服务节点时,需要修改反向代理服务器配置,重启服务才可以生效。而当我们可能不仅仅需要负载均衡,内外网转发,还需要其他功能,又同时想实现一些各服务都需要的通用的功能时,这时候就改考虑API Gateway了。
相关资料推荐: https://blog.csdn.net/wangmx1993328/article/details/104340965 https://zhuanlan.zhihu.com/p/371985627 https://blog.csdn.net/weixin_34580074/article/details/113073334 |
通过APIGateway对访问进行统一鉴权,不需要每个应用单独对调用方进行鉴权,应用可以专注业务。
在高并发的系统中,往往需要在系统中做限流,一方面是为了防止大量的请求使服务器过载,导致服务不可用,另一方面是为了防止网络攻击。常见的限流方式,比如Hystrix适用线程池隔离,超过线程池的负载,走熔断的逻辑。在一般应用服务器中,比如tomcat容器也是通过限制它的线程数来控制并发的;也有通过时间窗口的平均速度来控制流量。常见的限流纬度有比如通过Ip来限流、通过uri来限流、通过用户访问频次来限流。一般限流都是在网关这一层做,比如Nginx、Openresty、kong、zuul、Spring Cloud Gateway等;也可以在应用层通过Aop这种方式去做限流。
GateWay限流是采用的令牌桶的方式进行限流的,需要配合redis来使用,他有以下几种限流方式:1.根据URI限流;2.根据参数限流;3.根据IP限流;
Gateway默认使用org.springframework.cloud.gateway.filter.ratelimit.RedisRateLimiter 限流器。 现在,如通过模拟Http请求,则会收到以下响应。它包括一些特定的header,其前缀为x-ratelimit。
x-ratelimit-burst-capacity:最大令牌值,
x-ratelimit-replenish-rate:填充的速率值,
x-ratelimit-remaining:剩下可请求数。
可以用家里的保险丝来理解熔断. 如果电流大了, 保险丝就会断掉, 以避免电器烧毁. 网关的熔断同理, 如果不断掉, 大量的请求会堆积在某个服务, 前端用户长时期得不到反馈. 断掉之后, 用户立即得到"xx服务不可用, 请稍候再试" 的提示. 他可以先去干点别的....
Amazon API Gateway 开发人员可以使用 AWS X-Ray、AWS CloudTrail 和 Amazon CloudWatch 来跟踪、记录和监控 API 执行和管理操作。
1、首先客户端发送请求过来的时候,会通过GateWay Handler Mapping去对请求进行路由route的映射;
2、如果映射到了,就会再调用网关处理程序GateWay Web Handler进行处理;
3、那么Handler就会通过这个route的一系列Filter对该请求进行pre处理,处理完成以后最终路由到一个具体的服务上去;
4、当请求从该服务返回的时候,又会通过这一系列Filter对请求进行post处理,再从handler到Mapping进行返回给该客户端。
这里只是一般情况下,当然根据微服务的不同需要配置不同的pom文件
- <dependencies>
- <!--新增gateway-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-gateway</artifactId>
- </dependency>
- <!--引入commons包-->
- <dependency>
- <groupId>com.make.com.make.springcloud</groupId>
- <artifactId>cloud-api-commons</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <scope>runtime</scope>
- <optional>true</optional>
- </dependency>
-
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- server:
- port: 9527
- spring:
- application:
- name: cloud-gateway
-
- eureka:
- instance:
- hostname: cloud-getway-service
- client:
- fetch-registry: true
- register-with-eureka: true
- service-url:
- # defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
- defaultZone: http://eureka7001.com:7001/eureka
server: port: 9527 spring: application: name: cloud-gateway cloud: gateway: routes: - id: payment_routh #路由的ID,没有固定规则但要求唯一,建议配合服务名 uri: http://localhost:8001 #匹配后提供服务的路由地址 predicates: - Path=/payment/get/** #断言,路径相匹配的进行路由 - id: payment_routh2 uri: http://localhost:8001 predicates: - Path=/get/lb/** #断言,路径相匹配的进行路由
- spring:
- application:
- name: cloud-gateway
- cloud:
- gateway:
- default-filters:
- - name: CircuitBreaker
- args:
- name: myCircuitBreaker #熔断的名字,可以随便命名
- fallbackUri: forward:/fallback # 如果触发了熔断,自动跳转到这个URI里面,在任务一个controller里面有这个URI即可。
- statusCodes:
- - 500
- - "NOT_FOUND"
(1)After Route Predicate
匹配某个时间段之后的uri请求
- spring:
- cloud:
- gateway:
- routes:
- - id: after_route
- uri: https://example.org
- predicates:
- - After=2017-01-20T17:42:47.789-07:00[America/Denver]
(2)Before Route Predicat
匹配某个时间段之前的断言
- spring:
- cloud:
- gateway:
- routes:
- - id: before_route
- uri: https://example.org
- predicates:
- - Before=2017-01-20T17:42:47.789-07:00[America/Denver]
(3)Between Route Predicate
匹配两个时间段之内的uri其你去
- spring:
- cloud:
- gateway:
- routes:
- - id: between_route
- uri: https://example.org
- predicates:
- - Between=2017-01-20T17:42:47.789-07:00[America/Denver], 2017-01-21T17:42:47.789-07:00[America/Denver]
(4)Cookie Route Predicate
cookie 名称和正则表达式。此谓词匹配具有给定名称且其值与正则表达式匹配的 cookie。以下示例配置 cookie 路由谓词工厂
并且Cookie是username=zhangshuai才能访问
- spring:
- cloud:
- gateway:
- routes:
- - id: cookie_route
- uri: https://example.org
- predicates:
- - Cookie=username,zhangshuai
此路由匹配具有名称为chocolate
与ch.p
正则表达式匹配的cookie的请求。
(5)Header Route Predicate
两个参数:一个是属性名称和一个正则表达式,这个属性值和正则表达式匹配则执行;
请求头中要有X-Request-Id属性并且值为整数的正则表达式
- spring:
- cloud:
- gateway:
- routes:
- - id: header_route
- uri: https://example.org
- predicates:
- - Header=X-Request-Id, \d+
如果请求的标头名称X-Request-Id
与\d+
正则表达式匹配(即,它的值为一位或多位数字),则此路由匹配。
(6)Host Route Predicate
配置主机路由匹配
- spring:
- cloud:
- gateway:
- routes:
- - id: host_route
- uri: https://example.org
- predicates:
- - Host=**.somehost.org,**.anotherhost.org
(7)Method Route Predicate
匹配请求的方法类型
- spring:
- cloud:
- gateway:
- routes:
- - id: method_route
- uri: https://example.org
- predicates:
- - Method=GET,POST
(8)Path Route Predicate
- spring:
- cloud:
- gateway:
- routes:
- - id: host_route
- uri: https://example.org
- predicates:
- - Path=/red/{segment},/blue/{segment}
(9)Query Route Predicate
请求参数名为red,值要正整数才能路由
- spring:
- cloud:
- gateway:
- routes:
- - id: query_route
- uri: https://example.org
- predicates:
- - Query=red, \d+
(10)Weight Route Predicate
该路由会将约 80% 的流量转发到weighthigh.org,将约 20% 的流量转发到weightlow.org
- spring:
- application:
- name: cloud-gateway
- cloud:
- gateway:
- # 服务跨域配置
- globalcors:
- cors-configurations:
- '[/**]':
- allowedOrigins: "*"
- allowedHeaders: "*"
- allowedMethods: "*"
server: port: 9527 spring: application: name: cloud-gateway cloud: gateway: discovery: locator: enabled: true #开启从注册中心动态创建路由的功能,利用微服务名进行路由 # 配置静态路由 routes: - id: payment_routh #payment_routh #路由的ID,没有固定规则但要求唯一,简易配合服务名 uri: lb://cloud-provider-service #匹配后提供服务的路由地址 #uri: http://localhost:8001 #匹配后提供服务的路由地址 predicates: - Path=/payment/get/** #断言,路径相匹配的进行路由 - id: payment_routh2 #payment_routh #路由的ID,没有固定规则但要求唯一,简易配合服务名 uri: lb://cloud-provider-service #匹配后提供服务的路由地址 #uri: http://localhost:8001 #匹配后提供服务的路由地址 predicates: - Path=/payment/lb/** #断言,路径相匹配的进行路由 #- After=2020-03-15T15:35:07.412+08:00[GMT+08:00] #- Cookie=username,zzyy #- Header=X-Request-Id, \d+ #请求头要有X-Request-Id属性并且值为整数的正则表达式 #- Host=**.atguigu.com #- Method=GET #- Query=username, \d+ #要有参数名username并且值还要啥整数才能路由 eureka: instance: hostname: cloud-gateway-service client: register-with-eureka: true fetch-registry: true service-url: defaultZone: http://eureka7001.com:7001/eureka
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。