码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Cloud Gateway 5 权重路由

时间:2020-06-16 15:05:15      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:在线   path   gateway   常见   routes   设置   一个   控制   使用场景   

Spring Cloud Gateway 权重路由

使用场景:需要多版本服务控制的时候,需要对服务进行权重路由,最常见的场景就是一个服务有两个版本V1,V2,在线上灰度的时候,需要忘光动态实时推送路由的权重信息,如95的流量到V1,5的流量到V2.

spring:
  cloud:
    gateway:
      routes:
      - id: service1_v1
        uri: http://localhost:8081/v1
        predicates:
        - Path=/test
        - Weight=service1, 95
      - id: service1_v2
        uri: http://localhost:8081/v2
        predicates:
        - Path=/test
        - Weight=service1, 5

Weight=service1, 5 是权重设置

Spring Cloud Gateway 5 权重路由

标签:在线   path   gateway   常见   routes   设置   一个   控制   使用场景   

原文地址:https://www.cnblogs.com/chenglc/p/13140670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!