转载请标明出处:
http://blog.csdn.net/forezp/article/details/69934399
本文出自方志朋的博客
在微服务架构中,根据业务来拆分成一个个的服务,服务与服务之间可以相互调用(RPC),在Spring Cloud可以用RestTemplate+Ribbon和Feign来调用。为了保证其高可用,单个服务通常会集群部署。由于网络原因或者自身的原因,服务并不能保证100%可用,如果单个服务出现问题,调用这个服务就会出现线程阻塞,此时若有大量的请求涌入,Servlet容器的线程资源会被消耗完毕,导致服务瘫痪。服务与服务之间的依赖性,故障会传播,会对整个微服务系统造成灾难性的严重后果,这就是服务故障的“雪崩”效应。
为了解决这个问题,业界提出了断路器模型。
一、断路器简介
Netflix开源了Hystrix组件,实现了断路器模式,SpringCloud对这一组件进行了整合。 在微服务架构中,一个请求需要调用多个服务是非常常见的,如下图:Netflix has created a library called Hystrix that implements the circuit breaker pattern. In a microservice architecture it is common to have multiple layers of service calls.
——摘自官网
较底层的服务如果出现故障,会导致连锁故障。当对特定的服务的调用的不可用达到一个阀值(Hystric 是5秒20次) 断路器将会被打开。
断路打开后,可用避免连锁故障,fallback方法可以直接返回一个固定值。
二、准备工作
这篇文章基于上一篇文章的工程,首先启动上一篇文章的工程,启动eureka-server 工程;启动eureka-client工程,它的端口为9950。
三、在ribbon使用断路器
改造ribbon-service 工程的代码,首先在pox.xml文件中加入spring-cloud-starter-hystrix的起步依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
在程序的启动类RibbonServiceApplication 加@EnableHystrix注解开启Hystrix:
package com.lying.ribbonservice;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
@EnableDiscoveryClient
@EnableHystrix
public class RibbonServiceApplication {
public static void main(String[] args) {
SpringApplication.run(RibbonServiceApplication.class, args);
}
@Bean
@LoadBalanced
RestTemplate restTemplate() {
return new RestTemplate();
}
}
改造UserService类,在getUserInfo方法上加上@HystrixCommand注解。该注解对该方法创建了熔断器的功能,并指定了fallbackMethod熔断方法,熔断方法直接返回了一个字符串,字符串为"getUserInfo error --" + name;,代码如下:
package com.lying.ribbonservice.service;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
@Service
public class UserService {
@Autowired
private RestTemplate restTemplate;
@HystrixCommand(fallbackMethod = "getUserInfoError")
public String getUserInfo(String name) {
return restTemplate.getForObject("http://eureka-client/users/" + name, String.class);
}
public String getUserInfoError(String name) {
return "getUserInfo error --" + name;
}
}
启动:ribbon-service 工程,当我们访问http://localhost:9910/getUserInfo/Lee,浏览器显示:
User(id=2, name=Lee, age=23): 8810
此时关闭 eureka-client 工程,当我们再访问http://localhost:9910/getUserInfo/Lee,浏览器会显示:
getUserInfo error --Lee
这就说明当 eureka-client 工程不可用的时候,ribbon-service调用 eureka-client 的API接口时,会执行快速失败,直接返回一组字符串,而不是等待响应超时,这很好的控制了容器的线程阻塞。
四、Feign中使用断路器
首先引入hystrix依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
Feign是自带断路器的,在E版本的Spring Cloud中,它没有默认打开。需要在配置文件中配置打开它,在配置文件加以下代码:
feign.hystrix.enabled: true
基于feign-service工程进行改造,只需要在FeignClient的HelloClientService接口的注解中加上fallback的指定类就行了:
package com.lying.feignservice.service;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@FeignClient(value = "eureka-client", fallback =UserServerFallback.class)
public interface UserService {
@RequestMapping(value = "/users/{name}", method = RequestMethod.GET)
String findUserByName(@PathVariable("name") String name);
}
@Component
class UserServerFallback implements UserService {
@Override
public String findUserByName(String name) {
return "findUserByName error --" + name;
}
}
启动四feign-service工程,浏览器打开http://localhost:9911/users/Lee ,注意此时eureka-client工程没有启动,网页显示:
findUserByName error --Lee
打开eureka-client工程,再次访问,浏览器显示:
User(id=2, name=Lee, age=23): 8810
这证明断路器起到作用了。
五、Hystrix Dashboard (断路器:Hystrix 仪表盘)
1. 基于feign-service 改造
首先在 pom.xml 引入 spring-cloud-starter-hystrix-dashboard 的起步依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
</dependency>
在主程序启动类中加入@EnableHystrixDashboard, @EnableCircuitBreaker注解(不加这个注解会连接不上, 报Unable to connect to Command Metric Stream),开启hystrixDashboard:
package com.lying.feignservice;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
@SpringBootApplication
@EnableFeignClients
@EnableDiscoveryClient
@EnableHystrixDashboard
@EnableCircuitBreaker
public class FeignServiceApplication {
public static void main(String[] args) {
SpringApplication.run(FeignServiceApplication.class, args);
}
}
打开浏览器:访问http://localhost:9911/hystrix,界面如下:
点击monitor stream,进入下一个界面,访问:http://localhost:9911/users/Lee
此时, 会出现监控界面:本文源码下载:
https://github.com/lyingfromyou/SpringCloudExample