摘要:英文意思就是说提供一个回退机制当路由后面的服务发生故障时。注意注解能注册到服务上,是因为该注解包含了客户端的注解,该是一个复合注解。地址可以查看该微服务网关代理了多少微服务的。
SpringCloud(第 025 篇)Zuul 路由后面的微服务挂了后,Zuul 提供了一种回退机制来应对熔断处理
-
一、大致介绍1、在一些不稳定因素导致路由后面的微服务宕机或者无响应时,zuul 就会累计大量的请求,久而久之基本上所有的请求都会超时,但是请求链接数却不断的在增加,不断的占用资源池不能结束知道超时消耗殆尽导致zuul微服务死机,整体挂机消亡; 2、而 zuul 在这种情况下,提供一种很好的回退机制,针对大量请求时提供了友好的熔断机制,确保在路由微服务修复前,尽量将过多的请求快速响应返回,减轻zuul的压力; 3、在本章节,我们对上面发生的这种普遍现象做了一种简单的回退处理,有效降低微服务的压力,还可以友好的提示给前端用户,或者调用方;二、实现步骤 2.1 添加 maven 引用包
2.2 添加应用配置文件(springms-gateway-zuul-fallbacksrcmainresourcesapplication.yml)4.0.0 springms-gateway-zuul-fallback 1.0-SNAPSHOT jar com.springms.cloud springms-spring-cloud 1.0-SNAPSHOT org.springframework.cloud spring-cloud-starter-zuul org.springframework.cloud spring-cloud-starter-eureka
spring: application: name: springms-gateway-zuul-fallback server: port: 8200 eureka: datacenter: SpringCloud # 修改 http://localhost:8761 地址 Eureka 首页上面 System Status 的 Data center 显示信息 environment: Test # 修改 http://localhost:8761 地址 Eureka 首页上面 System Status 的 Environment 显示信息 client: service-url: defaultZone: http://admin:admin@localhost:8761/eureka healthcheck: # 健康检查 enabled: true instance: prefer-ip-address: true instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}} ##################################################################################################### zuul: ignoredServices: springms-consumer-movie-ribbon-with-hystrix routes: springms-provider-user: /user/** ##################################################################################################### ##################################################################################################### # 打印日志 logging: level: root: INFO com.springms: DEBUG ##################################################################################################### ##################################################################################################### ribbon: ConnectTimeout: 3000 ReadTimeout: 60000 ##################################################################################################### ##################################################################################################### # 解决第一次请求报超时异常的方案,因为 hystrix 的默认超时时间是 1 秒,因此请求超过该时间后,就会出现页面超时显示 : # # 这里就介绍大概三种方式来解决超时的问题,解决方案如下: # # 第一种方式:将 hystrix 的超时时间设置成 5000 毫秒 hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000 # # 或者: # 第二种方式:将 hystrix 的超时时间直接禁用掉,这样就没有超时的一说了,因为永远也不会超时了 # hystrix.command.default.execution.timeout.enabled: false # # 或者: # 第三种方式:索性禁用feign的hystrix支持 # feign.hystrix.enabled: false ## 索性禁用feign的hystrix支持 # 超时的issue:https://github.com/spring-cloud/spring-cloud-netflix/issues/768 # 超时的解决方案: http://stackoverflow.com/questions/27375557/hystrix-command-fails-with-timed-out-and-no-fallback-available # hystrix配置: https://github.com/Netflix/Hystrix/wiki/Configuration#execution.isolation.thread.timeoutInMilliseconds #####################################################################################################2.3 添加zuul回退处理类(springms-gateway-zuul-fallbacksrcmainjavacomspringmscloudfallbackCustomZuulFallbackHandler.java)
package com.springms.cloud.fallback; import org.springframework.cloud.netflix.zuul.filters.route.ZuulFallbackProvider; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.client.ClientHttpResponse; import org.springframework.stereotype.Component; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; /** * 自定义Zuul回退机制处理器。 * * Provides fallback when a failure occurs on a route 英文意思就是说提供一个回退机制当路由后面的服务发生故障时。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/27 * */ @Component public class CustomZuulFallbackHandler implements ZuulFallbackProvider { /** * 返回值表示需要针对此微服务做回退处理(该名称一定要是注册进入 eureka 微服务中的那个 serviceId 名称); * * @return */ @Override public String getRoute() { return "springms-provider-user"; } @Override public ClientHttpResponse fallbackResponse() { return new ClientHttpResponse() { @Override public HttpStatus getStatusCode() throws IOException { return HttpStatus.BAD_REQUEST; } @Override public int getRawStatusCode() throws IOException { return HttpStatus.BAD_REQUEST.value(); } @Override public String getStatusText() throws IOException { return HttpStatus.BAD_REQUEST.getReasonPhrase(); } @Override public void close() { } /** * 当 springms-provider-user 微服务出现宕机后,客户端再请求时候就会返回 fallback 等字样的字符串提示; * * 但对于复杂一点的微服务,我们这里就得好好琢磨该怎么友好提示给用户了; * * @return * @throws IOException */ @Override public InputStream getBody() throws IOException { return new ByteArrayInputStream((getRoute() + " fallback").getBytes()); } @Override public HttpHeaders getHeaders() { HttpHeaders headers = new HttpHeaders(); headers.setContentType(MediaType.APPLICATION_JSON); return headers; } }; } }2.4 添加zuul服务网关微服务启动类(springms-gateway-zuul-fallbacksrcmainjavacomspringmscloudMsGatewayZuulFallbackApplication.java)
package com.springms.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.zuul.EnableZuulProxy; /** * Zuul 路由后面的微服务挂了后,Zuul 提供了一种回退机制来应对熔断处理。 * * 注意 EnableZuulProxy 注解能注册到 eureka 服务上,是因为该注解包含了 eureka 客户端的注解,该 EnableZuulProxy 是一个复合注解。 * * @EnableZuulProxy --> { @EnableCircuitBreaker、@EnableDiscoveryClient } 包含了 eureka 客户端注解,同时也包含了 Hystrix 断路器模块注解。 * * http://localhost:8150/routes 地址可以查看该zuul微服务网关代理了多少微服务的serviceId。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/27 * */ @SpringBootApplication @EnableZuulProxy public class MsGatewayZuulFallbackApplication { public static void main(String[] args) { SpringApplication.run(MsGatewayZuulFallbackApplication.class, args); System.out.println("【【【【【【 GatewayZuulFallback微服务 】】】】】】已启动."); } }三、测试
/**************************************************************************************** 一、Zuul 路由后面的微服务挂了后,Zuul 提供了一种回退机制来应对熔断处理: 1、编写 application.yml 文件,添加应用程序的注解 EnableZuulProxy 配置; 2、启动 springms-discovery-eureka 模块服务,启动1个端口; 3、启动 springms-provider-user 模块服务,启动1个端口(application.yml 文件中的 appname 属性不去掉的话,测试一是无法测试通过的); 4、启动 springms-gateway-zuul-fallback 模块服务,启动1个端口; 5、新起网页页签,输入 http://localhost:7900/simple/3 正常情况下是能看到 ID != 0 一堆用户信息被打印出来; 6、新起网页页签,然后输入 http://localhost:8200/springms-provider-user/simple/3,正常情况下是能看到 ID != 0 一堆用户信息被打印出来; 7、这个时候,停止 springms-provider-user 模块服务; 8、刷新 http://localhost:8200/springms-provider-user/simple/3 网页,正常情况下会提示 “fallback” 字样的字符串; ...... 等待大约两分钟左右 ......(微服务宕机默认好像是90秒再连不上eureka服务的话,就会被eureka服务剔除掉) 9、待用户微服务被踢出后,刷新 http://localhost:8200/springms-provider-user/simple/3 网页,正当情况下会提示 404 错误页面,因为用户微服务由于宕机超过大约90秒后会自动被 eureka 服务器剔除掉,所以访问网页必然找不到服务路径; 总结:首先 Zuul 作为路由转发微服务,其也提供了一种熔断机制,避免大量请求阻塞在路由分发处; 其次当注册进入 eureka 服务治理发现框架后,一定时间后还没有连上eureka时,这个时候eureka就会将这个宕机的微服务移除服务治理框架; ****************************************************************************************/四、下载地址
https://gitee.com/ylimhhmily/SpringCloudTutorial.git
SpringCloudTutorial交流QQ群: 235322432
SpringCloudTutorial交流微信群: 微信沟通群二维码图片链接
欢迎关注,您的肯定是对我最大的支持!!!
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/70612.html
摘要:是一个相对比较新的微服务框架,年才推出的版本虽然时间最短但是相比等框架提供的全套的分布式系统解决方案。提供线程池不同的服务走不同的线程池,实现了不同服务调用的隔离,避免了服务器雪崩的问题。通过互相注册的方式来进行消息同步和保证高可用。 Spring Cloud 是一个相对比较新的微服务框架,...
摘要:第篇的过滤器的使用一大致介绍我们在学的时候,就有过滤器和拦截器的使用,而同样也有过滤器的使用,本章节我们指在如何简单使用。是否执行该过滤器。说明需要过滤说明不要过滤过滤器的具体逻辑。请求的添加服务网关微服务启动类的过滤器的使用。 SpringCloud(第 021 篇)Zuul 的过滤器 ZuulFilter 的使用 - 一、大致介绍 1、我们在学 Spring 的时候,就有过滤器和拦...
摘要:地址可以查看该微服务网关代理了多少微服务的。微服务已启动使用提供和之间的绑定它使用正则表达式组来从提取变量然后注入到路由表达式中。 SpringCloud(第 022 篇)Zuul 网关微服务的 regexmapper 属性测试, 类似测试 zuul 的自定义路径规则一样 - 一、大致介绍 1、本章节将 Zuul 的 regexmapper 属性单独拿出来,主要是这种配置规则,可以在一...
摘要:注意注解能注册到服务上,是因为该注解包含了客户端的注解,该是一个复合注解。地址可以查看该微服务网关代理了多少微服务的。 SpringCloud(第 020 篇)Zuul 网关模块添加 listOfServers 属性,达到客户端负载均衡的能力 - 一、大致介绍 1、本章节添加另外一个属性 listOfServers 来给 zuul 赋上异样的功能色彩,提供负载均衡的能力; 2、而其实说...
阅读 1840·2023-04-26 02:46
阅读 1981·2021-11-25 09:43
阅读 1111·2021-09-29 09:35
阅读 2051·2019-08-30 15:56
阅读 3406·2019-08-30 15:54
阅读 2614·2019-08-29 16:35
阅读 3075·2019-08-29 15:25
阅读 3262·2019-08-29 14:01