摘要:为了保证服务高可用性,单个服务通常会进行集群部署。这时断路器就派上用场了。当对某个服务的调用的不可用达到一个阀值默认是秒次断路器将会被自动被打开。断路打开后,方法可以直接返回一个预先设置的固定值。
公众号: java乐园
在微服务架构中,根据业务需求拆分成一个个的微小服务,然后服务与服务之间可以相互RPC远程调用。在Spring Cloud可以使用RestTemplate+Ribbon或者Feign来进行RPC远程调用。为了保证服务高可用性,单个服务通常会进行集群部署。由于网络原因或者自身的原因,服务并不能保证百分之一百可用,如果服务方出现问题,调用这个服务就会出现线程阻塞,此时若有出现大量请求,导致服务方瘫痪。这时断路器就派上用场了。
当对某个服务的调用的不可用达到一个阀值(Hystric 默认是5秒20次) 断路器将会被自动被打开。断路打开后, fallback方法可以直接返回一个预先设置的固定值。
1、 新建项目sc-eureka-client-consumer-ribbon-hystrix,对应的pom.xml文件
4.0.0 spring-cloud sc-eureka-client-consumer-ribbon 0.0.1-SNAPSHOT jar sc-eureka-client-consumer-ribbon http://maven.apache.org org.springframework.boot spring-boot-starter-parent 2.0.4.RELEASE org.springframework.cloud spring-cloud-dependencies Finchley.RELEASE pom import UTF-8 1.8 1.8 org.springframework.cloud spring-cloud-starter-netflix-eureka-client org.springframework.cloud spring-cloud-starter-netflix-ribbon org.springframework.boot spring-boot-starter-web org.springframework.cloud spring-cloud-starter-netflix-hystrix 2.0.1.RELEASE
备注:spring-cloud-starter-hystrix已经在spring cloud 2.x标注成过期。推荐使用spring-cloud-starter-netflix-hystrix
2、 新建spring boot 启动类ConsumerApplication.java
package sc.consumer; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.netflix.hystrix.EnableHystrix; @SpringBootApplication @EnableEurekaClient @EnableHystrix public class ConsumerHystrixApplication { public static void main(String[] args) { SpringApplication.run(ConsumerHystrixApplication.class, args); } }
可以看出这个启动类只是《服务发现&服务消费者Ribbon》的启动类添加多了一个注解EnableHystrix(启动断路器)
3、 编写服务类,并添加断路器注解
package sc.consumer.service.impl; import java.util.HashMap; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.web.client.RestTemplate; import com.github.andrewoma.dexx.collection.ArrayList; import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand; import sc.consumer.model.User; import sc.consumer.service.UserService; @Service public class UserServiceImpl implements UserService{ @Autowired private RestTemplate restTemplate; @HystrixCommand(fallbackMethod = "getUserError") @Override public MapgetUser(Long id) { return restTemplate.getForObject("http://sc-eureka-client-provider:8200/user/getUser/{1}", Map.class, id); } public Map getUserError(Long id){ Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); User u = new User(); u.setId(-1L); u.setUserName("failName"); map.put("body", u); return map; } @HystrixCommand(fallbackMethod = "listUserError") @Override public Map listUser() { return restTemplate.getForObject("http://sc-eureka-client-provider:8200/user/listUser", Map.class); } public Map listUserError(){ Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); map.put("body", new ArrayList ()); return map; } @HystrixCommand(fallbackMethod = "addUserError") @Override public Map addUser(User user) { return restTemplate.postForObject("http://sc-eureka-client-provider:8200/user/addUser", user, Map.class); } public Map addUserError(User user){ Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); map.put("body", 0); return map; } @HystrixCommand(fallbackMethod = "updateUserError") @Override public Map updateUser(User user) { restTemplate.put("http://sc-eureka-client-provider:8200/user/updateUser",user); Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); return map; } public Map updateUserError(User user){ Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); map.put("body", 0); return map; } @HystrixCommand(fallbackMethod = "deleteUserError") @Override public Map deleteUser(Long id) { restTemplate.delete("http://sc-eureka-client-provider:8200/user/deleteUser/{id}", id); Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); return map; } public Map deleteUserError(Long id){ Map map = new HashMap (); map.put("code", "000000"); map.put("msg", "ok"); map.put("body", 0); return map; } }
添加HystrixCommand注解,对应的参数fallbackMethod值为当方式服务方无法调用时,返回预设值得方法名。
4、 新建配置文件bootstrap.yml和application.yml
bootstrap.yml
server: port: 5600 application.yml spring: application: name: sc-eureka-client-consumer-ribbon-hystrix eureka: instance: hostname: 127.0.0.1 client: #由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己 registerWithEureka: true #由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false fetchRegistry: true serviceUrl: defaultZone: http://127.0.0.1:5001/eureka/
5、 其他项目文件参加下图
6、 分别启动注册中心sc-eureka-server和服务提供者sc-eureka-client-provider
7、 启动sc-eureka-client-consumer-ribbon-hystrix,并验证是否启动成功
方式一:查看日志
方式二:查看注册中心是否注册成功
8、 验证断路器是否起作用
(1) 服务提供者正常时访问:
http://127.0.0.1:5600/cli/user/getUser/4
正常返回数据库里的数据
(2) 服务提供者关闭时访问:
http://127.0.0.1:5600/cli/user/getUser/4
对比两个返回的数据,可以看出服务提供者关闭时,返回的数据是在程序写死的数据,如下图:
其他方法可以自行按照以上方式进行验证。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/76054.html
摘要:服务注册中心一个服务注册中心,所有的服务都在注册中心注册,负载均衡也是通过在注册中心注册的服务来使用一定策略来实现。在客户端实现了负载均衡。 文章参考于史上最简单的 SpringCloud 教程 | 终章 Spring Cloud 是一个微服务框架,与 Spring Boot 结合,开发简单。将一个大工程项目,分成多个小 web 服务工程,可以分别独立扩展,又可以共同合作。 环境 ...
摘要:多层服务调用常见于微服务架构中较底层的服务如果出现故障,会导致连锁故障。 Spring Cloud 体验 简介 Spring Cloud为开发人员提供了快速构建分布式系统的一些工具,包括配置管理、服务发现、断路器、路由、微代理、 事件总线、全局锁、决策竞选、分布式会话等等 基于Spring Boot,Spring Cloud将各公司成熟服务框架组合起来,通过Spring Boo...
摘要:当服务宕机或者不可用时,即请求超时后会调用此方法。添加电影微服务启动类电影微服务集成断路器实现失败快速响应,达到熔断效果。 SpringCloud(第 014 篇)电影 Ribbon 微服务集成 Hystrix 断路器实现失败快速响应,达到熔断效果 - 一、大致介绍 1、Hystrix 断路器的原理很简单,如同电力过载保护器。它可以实现快速失败,如果它在一段时间内侦测到许多类似的错误,...
摘要:公众号乐园上编说了整合断路器,这篇来看看如何整合断路器,整合断路器也是相对比较简单的。默认已经自带断路器,所以不需要像整合断路器那样需要在的启动类添加注解。但是自带断路器并没有打开,需要做些额外的配置。 公众号: java乐园 上编说了《RestTemplate+Ribbon整合断路器Hystrix》,这篇来看看如何Feign整合断路器Hystrix,Feign整合断路器Hystrix...
摘要:为了保证其高可用,单个服务又必须集群部署。为了解决这个问题,就出现断路器模型。一断路器简介摘自官网已经创建了一个名为的库来实现断路器模式。较底层的服务如果出现故障,会导致连锁故障。当对特定的服务的调用达到一个阀值是秒次断路器将会被打开。 转载请标明出处: http://blog.csdn.net/forezp/a...本文出自方志朋的博客 在微服务架构中,我们将业务拆分成一个个的服务,...
阅读 2255·2021-11-17 09:33
阅读 813·2021-10-13 09:40
阅读 532·2019-08-30 15:54
阅读 743·2019-08-29 15:38
阅读 2385·2019-08-28 18:15
阅读 2447·2019-08-26 13:38
阅读 1802·2019-08-26 13:36
阅读 2098·2019-08-26 11:36