(拿來主義) SpringCloud | 第四篇: 斷路器(Hystrix)

在微服務架構中,根據業務來拆分紅一個個的服務,服務與服務之間能夠相互調用(RPC),在Spring Cloud能夠用RestTemplate+Ribbon和Feign來調用。爲了保證其高可用,單個服務一般會集羣部署。因爲網絡緣由或者自身的緣由,服務並不能保證100%可用,若是單個服務出現問題,調用這個服務就會出現線程阻塞,此時如有大量的請求涌入,Servlet容器的線程資源會被消耗完畢,致使服務癱瘓。服務與服務之間的依賴性,故障會傳播,會對整個微服務系統形成災難性的嚴重後果,這就是服務故障的「雪崩」效應。java

爲了解決這個問題,業界提出了斷路器模型。web

1、斷路器簡介

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.spring

. —-摘自官網瀏覽器

Netflix開源了Hystrix組件,實現了斷路器模式,SpringCloud對這一組件進行了整合。 在微服務架構中,一個請求須要調用多個服務是很是常見的,以下圖:springboot

HystrixGraph.png

較底層的服務若是出現故障,會致使連鎖故障。當對特定的服務的調用的不可用達到一個閥值(Hystric 是5秒20次) 斷路器將會被打開。網絡

HystrixFallback.png

斷路打開後,可用避免連鎖故障,fallback方法能夠直接返回一個固定值。架構

2、準備工做

這篇文章基於上一篇文章的工程,首先啓動上一篇文章的工程,啓動eureka-server 工程,端口是1111;啓動service-hi工程,它的端口爲2222。app

3、在ribbon使用斷路器

改造serice-ribbon 工程的代碼,首先在pox.xml文件中加入spring-cloud-starter-hystrix的起步依賴:ide

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>

 

在程序的啓動類ServiceRibbonApplication 加@EnableHystrix註解開啓Hystrix:spring-boot

package com.example.springcloud.ribbon;

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 
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

@EnableDiscoveryClient
@SpringBootApplication
@EnableHystrix
public class RibbonApplication {

    public static void main(String[] args) {
        SpringApplication.run(RibbonApplication.class, args);
    }

    @Bean
    @LoadBalanced
    RestTemplate restTemplate() {
        return new RestTemplate();
    }
}

 

改造HelloService類,在hiService方法上加上@HystrixCommand註解。該註解對該方法建立了熔斷器的功能,並指定了fallbackMethod熔斷方法,熔斷方法直接返回了一個字符串,字符串爲」hi,」+name+」,sorry,error!」,代碼以下

package com.example.springcloud.ribbon.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 HelloService {

    @Autowired
    RestTemplate restTemplate;

    @HystrixCommand(fallbackMethod = "hiError")
    public String hiService(String name) {
        return restTemplate.getForObject("http://service-hi/hi?name=" + name, String.class);
    }

    public String hiError(String name) {
        return "hi,"+name+",sorry,error!";
    }
}

 

啓動:service-ribbon 工程,當咱們訪問http://localhost:4444/hi?name=forezp,瀏覽器顯示:

hi forezp,i am from port:2222

此時關閉 service-hi 工程,當咱們再訪問http://localhost:4444/hi?name=forezp,瀏覽器會顯示:

hi ,forezp,orry,error!

這就說明當 service-hi 工程不可用的時候,service-ribbon調用 service-hi的API接口時,會執行快速失敗,直接返回一組字符串,而不是等待響應超時,這很好的控制了容器的線程阻塞。

 

4、Feign中使用斷路器

Feign是自帶斷路器的,在D版本的Spring Cloud中,它沒有默認打開。須要在配置文件中配置打開它,在配置文件加如下代碼:

feign.hystrix.enabled=true

基於service-feign工程進行改造,只須要在FeignClient的SchedualServiceHi接口的註解中加上fallback的指定類就好了:

@FeignClient(value = "service-hi",fallback = SchedualServiceHiHystric.class)
public interface SchedualServiceHi {
    @RequestMapping(value = "/hi",method = RequestMethod.GET)
    String sayHiFromClientOne(@RequestParam(value = "name") String name);
}

SchedualServiceHiHystric須要實現SchedualServiceHi 接口,並注入到Ioc容器中,代碼以下:

@Component
public class SchedualServiceHiHystric implements SchedualServiceHi {
    @Override
    public String sayHiFromClientOne(String name) {
        return "sorry "+name;
    }
}

啓動四servcie-feign工程,瀏覽器打開http://localhost:5555/hi?name=forezp,注意此時service-hi工程沒有啓動,網頁顯示:

sorry forezp

打開service-hi工程,再次訪問,瀏覽器顯示:

hi forezp,i am from port:2222

這證實斷路器起到做用了。

 

5、Hystrix Dashboard (斷路器:Hystrix 儀表盤)

基於service-ribbon 改造,Feign的改造和這同樣。

首選在pom.xml引入spring-cloud-starter-netflix-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-netflix-hystrix-dashboard</artifactId>
        </dependency>

 

在主程序啓動類中加入@EnableHystrixDashboard註解,開啓hystrixDashboard:

@SpringBootApplication
@EnableDiscoveryClient
@EnableHystrix
@EnableHystrixDashboard
public class ServiceRibbonApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServiceRibbonApplication.class, args);
    }

    @Bean
    @LoadBalanced
    RestTemplate restTemplate() {
        return new RestTemplate();
    }

}

打開瀏覽器:訪問http://localhost:4444/hystrix,界面以下:

 

 

 輸入http://localhost:4444/hystrix.stream,點擊monitor stream,進入下一個界面,訪問:http://localhost:4444/hi?name=forezp

此時會出現監控界面:

 

 

 6、儀表盤鏈接錯誤解決方案

 

 

 springboot 版本若是是2.0則須要添加 ServletRegistrationBean 由於springboot的默認路徑不是 "/hystrix.stream",只要在本身的項目裏配置上下面的servlet就能夠了

 

有如下兩種方法:

1,service中添加bean

@Bean
    public ServletRegistrationBean getServlet() {
        HystrixMetricsStreamServlet streamServlet = new HystrixMetricsStreamServlet();
        ServletRegistrationBean registrationBean = new ServletRegistrationBean(streamServlet);
        registrationBean.setLoadOnStartup(1);
        registrationBean.addUrlMappings("/hystrix.stream");
        registrationBean.setName("HystrixMetricsStreamServlet");
        return registrationBean;
    }

 2, web.xml中添加配置

<servlet>
   <description></description>
   <display-name>HystrixMetricsStreamServlet</display-name>
   <servlet-name>HystrixMetricsStreamServlet</servlet-name>
   <servlet-class>com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet</servlet-class>
  </servlet>
<servlet-mapping>
  <servlet-name>HystrixMetricsStreamServlet</servlet-name>
  <url-pattern>/hystrix.stream</url-pattern>
</servlet-mapping>
相關文章
相關標籤/搜索