zoukankan      html  css  js  c++  java
  • 微服务SpringCloud之GateWay熔断、限流、重试

    纯洁的微笑的Spring Cloud系列博客终于学完了,也对Spring Cloud有了初步的了解。

    修改请求路径的过滤器

    StripPrefix Filter 是一个请求路径截取的功能,我们可以利用这个功能来做特殊业务的转发。

           - id: StripPrefix
             uri: http://www.cnblogs.com
             predicates:
               - Path=/name/**
             filters:
               - StripPrefix=2

    StripPrefix是当请求路径匹配到/name/**会将包含name和后边的字符串接去掉转发, StripPrefix=2就代表截取路径的个数,当访问http://localhost:8081/name/aa/5ishare时会跳转到https://www.cnblogs.com/5ishare页面。

     PrefixPath Filter 的作用和 StripPrefix 正相反,是在 URL 路径前面添加一部分的前缀。

           - id: prefixpath_route
             uri: http://www.cnblogs.com
             predicates:
                - Method=GET
             filters:
                - PrefixPath=/5ishare

    在浏览器输入http://localhost:8081/p/11831586.html 时页面会跳转到 https://www.cnblogs.com/5ishare/p/11831586.html

     限速路由器

    限速在高并发场景中比较常用的手段之一,可以有效的保障服务的整体稳定性,Spring Cloud Gateway 提供了基于 Redis 的限流方案。所以我们首先需要添加对应的依赖包spring-boot-starter-data-redis-reactive。

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
        <version>2.0.4.RELEASE</version>
    </dependency>

    配置文件中需要添加 Redis 地址和限流的相关配置

    server:
      port: 8081
    eureka:
      client:
        service-url:
          defaultZone: http://localhost:8088/eureka/
    logging:
      level:
        org.springframework.cloud.gateway: debug
    spring:
      application:
        name: SpringCloudGatewayDemo
      redis:
        host: localhost
        password:
        port: 6379
      cloud:
        gateway:
          discovery:
            locator:
              enabled: true
          routes:
           - id: requestratelimiter_route
             uri: http://example.org
             filters:
              - name: RequestRateLimiter
                args:
                 redis-rate-limiter.replenishRate: 10
                 redis-rate-limiter.burstCapacity: 20
                  key-resolver:"#{@userKeyResolver}"
             predicates:
               - Method=GET
    View Code

    filter 名称必须是 RequestRateLimiter
    redis-rate-limiter.replenishRate:允许用户每秒处理多少个请求
    redis-rate-limiter.burstCapacity:令牌桶的容量,允许在一秒钟内完成的最大请求数
    key-resolver:使用 SpEL 按名称引用 bean

    项目中设置限流的策略,创建 Config 类。根据请求参数中的 user 字段来限流,也可以设置根据请求 IP 地址来限流,设置如下:

    package com.example.demo;
    
    import org.springframework.cloud.gateway.filter.ratelimit.KeyResolver;
    import org.springframework.context.annotation.Bean;
    
    import reactor.core.publisher.Mono;
    
    public class Config {
        @Bean
        public KeyResolver ipKeyResolver() {
            return exchange -> Mono.just(exchange.getRequest().getRemoteAddress().getHostName());
        }
    
    
        @Bean
        KeyResolver userKeyResolver() {
            return exchange -> Mono.just(exchange.getRequest().getQueryParams().getFirst("user"));
        }
    }
    View Code

    熔断路由器

    Spring Cloud Gateway 也可以利用 Hystrix 的熔断特性,在流量过大时进行服务降级,同样我们还是首先给项目添加上依赖。

    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
        <version>2.1.3.RELEASE</version>
    </dependency>
           - id: hystrix_route
             uri: lb://spring-cloud-producer
             predicates:
               - Path=/consumingserviceendpoint
             filters:
               - name: Hystrix
                 args:
                  name: fallbackcmd
                  fallbackUri: forward:/incaseoffailureusethis

    fallbackUri: forward:/incaseoffailureusethis配置了 fallback 时要会调的路径,当调用 Hystrix 的 fallback 被调用时,请求将转发到/incaseoffailureuset这个 URI。

    重试路由器

    RetryGatewayFilter 是 Spring Cloud Gateway 对请求重试提供的一个 GatewayFilter Factory

           - id: retry_test
             uri: lb://spring-cloud-producer
             predicates:
               - Path=/retry
             filters:
               - name: Retry
                 args:
                  retries: 3
                  statuses: BAD_GATEWAY

    retries:重试次数,默认值是 3 次
    statuses:HTTP 的状态返回码,取值请参考:org.springframework.http.HttpStatus
    methods:指定哪些方法的请求需要进行重试逻辑,默认值是 GET 方法,取值参考:org.springframework.http.HttpMethod
    series:一些列的状态码配置,取值参考:org.springframework.http.HttpStatus.Series。符合的某段状态码才会进行重试逻辑,默认值是 SERVER_ERROR,值是 5,也就是 5XX(5 开头的状态码),共有5 个值。

  • 相关阅读:
    python学习(20) 网络编程
    MySQL与mongodb数据库备份与恢复
    Java(一)——Ubuntu18.04下Java环境配置
    安全服务——CVE中CVSS相关指标介绍
    爬虫(十一)—— 请求库(三)pypeteer请求库
    爬虫(十)—— scrapy框架
    抓包工具Fiddler
    爬虫(九)—— 爬虫高性能
    爬虫(八)—— 存储库(三)MySQL存储库
    爬虫(七)—— 存储库(二)Redis存储库
  • 原文地址:https://www.cnblogs.com/5ishare/p/11878762.html
Copyright © 2011-2022 走看看