SpringCloud(4)熔斷器Hystrix
在微服務架構中,根據業務來拆分成一個個的服務,服務與服務之間可以相互調用(RPC),在Spring Cloud可以用RestTemplate+Ribbon和Feign來調用。為了保證其高可用,單個服務通常會集群部署。由於網絡原因或者自身的原因,服務並不能保證100%可用,如果單個服務出現問題,調用這個服務就會出現線程阻塞,此時若有大量的請求湧入,Servlet容器的線程資源會被消耗完畢,導致服務癱瘓。服務與服務之間的依賴性,故障會傳播,會對整個微服務系統造成災難性的嚴重後果,這就是服務故障的“雪崩”效應。
1.簡介
Netflix開源了Hystrix組件,實現了熔斷器模式,Spring Cloud 對這一組件進行了整合。 在微服務架構中,一個請求需要調用多個服務是非常常見的,如下圖:
較底層的服務如果出現故障,會導致連鎖故障。當對特定的服務的調用的不可用達到一個閥值(Hystric 是5秒20次) 斷路器將會被打開。
斷路打開後,可用避免連鎖故障,fallback方法可以直接返回一個固定值。
2.在Ribbon上使用熔斷器
1.導入hystrix依賴
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency>
2.註解@EnableHystrix 開啟熔斷器
@SpringBootApplication @EnableDiscoveryClient @EnableHystrix //開啟斷路器功能 public class ServiceRibbonApplication { public static void main(String[] args) { SpringApplication.run(ServiceRibbonApplication.class, args); } @Bean @LoadBalanced RestTemplate restTemplate() { return new RestTemplate(); } }
3.使用斷路器
@Service
public class HelloService {
@Autowired
RestTemplate restTemplate;
//使用斷路器
@HystrixCommand(fallbackMethod = "ErrorMethod")
public String hi(String name){
return restTemplate.getForObject("http://SERVICE-HI/hi?name="+name,String.class);
}
//當服務不可用時會調用此方法並返回
public String ErrorMethod(String name){
return name + ",This is a error.";
}
}
3.在Feign上使用熔斷器
1.Feign是自帶斷路器的,不過需要在配置文件打開,加以下代碼.
feign.hystrix.enabled=true #這裏IDEA不提示的
或者
feign:
hystrix:
enabled: true #這裏IDEA不提示的
2.Hystrix支持回退的概念,當電路斷開或出現錯誤時執行的默認代碼路徑。要為給定的 @FeignClient 啟用回退,請將 fallback 屬性設置為實現回退的類名.
@FeignClient(value = "service-hi",fallback = SchedualServiceHiImpl.class)
public interface SchedualServiceHi {
@RequestMapping(value = "/hi",method = RequestMethod.GET)
String sayHiFromClientOne(@RequestParam(value = "name") String name);
}
然後實現該接口方法即可.
@Service
public class SchedualServiceHiImpl implements SchedualServiceHi {
@Override
public String sayHiFromClientOne(String name) {
return name + ",This is a error.";
}
}
3.如果需要訪問導致回退觸發的原因,可以使用 @FeignClient 內的 fallbackFactory 屬性,註意此時不要再使用 fallback 屬性。
@FeignClient(value = "service-hi",fallbackFactory = HystrixClientFallbackFactory.class)
public interface SchedualServiceHi {
@RequestMapping(value = "/hi",method = RequestMethod.GET)
String sayHiFromClientOne(@RequestParam(value = "name") String name);
}
然後實現FallbackFactory接口即可.
@Component
public class HystrixClientFallbackFactory implements FallbackFactory<SchedualServiceHi> {
@Override
public SchedualServiceHi create(Throwable throwable) {
return new SchedualServiceHi() {
@Override
public String sayHiFromClientOne(String name) {
return name +"!"+ throwable.getMessage();
}
};
}
}
4.使用 Hystrix Dashboard 監控熔斷器的狀態
Hystrix Dashboard 是監控熔斷器狀況的一個組件,提供了數據監控和友好的圖形化展示界面。
1.在Ribbon中使用 Hystrix Dashboard
在加入spring-cloud-starter-hystrix依賴的基礎上,加入下面2個必需的依賴.
<!--斷路器儀表盤-->
<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>
在主程序啟動類已經加上 @EnableHystrix 的基礎上加入@EnableHystrixDashboard 註解。完整代碼如下.
@@SpringBootApplication
@EnableDiscoveryClient
@EnableHystrix
@EnableHystrixDashboard
public class ServiceRibbonApplication {
啟動程序,訪問 http://localhost:8765/hystrix.stream 瀏覽器上會顯示熔斷器的數據指標,訪問 http://localhost:8765/hystrix 瀏覽器會顯示 Hystrix Dashboard 的界面。如下圖。在界面上依次填寫圖示數據,點擊"Monitor Stream",進入頁面。
Hystrix Dashboard 官方文檔
2.在Feign中使用 Hystrix Dashboard
加入下面3個起步依賴。雖然Feign自帶hystrix,但自帶的不是起步依賴,所以還是要加.
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>
<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 註解開啟Hystrix Dashboard,完整代碼.
@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
@EnableHystrixDashboard
@EnableHystrix
public class ServiceFeignApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceFeignApplication.class, args);
}
}
只需要上面兩步即可開啟 Hystrix Dashboard 功能。
參考方誌朋《深入理解Spring Cloud與微服務構建》
SpringCloud(4)熔斷器Hystrix