spring-cloud(三)Hytrix 熔断器

一、特点

  在微服务架构中,根据业务来拆分成一个个的服务,服务与服务之间可以相互调用(RPC),在Spring Cloud可以用RestTemplate+Ribbon和Feign来调用。为了保证其高可用,单个服务通常会集群部署。由于网络原因或者自身的原因,服务并不能保证100%可用,如果单个服务出现问题,调用这个服务就会出现线程阻塞,此时若有大量的请求涌入,Servlet容器的线程资源会被消耗完毕,导致服务瘫痪。服务与服务之间的依赖性,故障会传播,会对整个微服务系统造成灾难性的严重后果,这就是服务故障的“雪崩”效应。

二、使用场景

  

  

  较底层的服务如果出现故障,会导致连锁故障。当对特定的服务的调用的不可用达到一个阀值(Hystric 是5秒20次) 断路器将会被打开。

  断路打开后,可用避免连锁故障,fallback方法可以直接返回一个固定值。

三、微服务中的使用

  3.1在ribbo中的使用方式

  这篇文章基于上一篇文章的工程,首先启动上一篇文章的工程,启动eureka-server 工程;启动service-hi工程,它的端口为8762。

  3.1.1 引入依赖 

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

  3.1.2 在程序的启动类ServiceRibbonApplication 加@EnableHystrix注解开启Hystrix:

@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();
    }

}

  3.1.3 在hiService方法上加上@HystrixCommand注解。该注解对该方法创建了熔断器的功能,并指定了fallbackMethod熔断方法,熔断方法直接返回了一个字符串,字符串为”hi,”+name+”,sorry,error!”,代码如下:

@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!";
    }
}

  

 

  3.2 fegin方式

  Feign是自带断路器的,添加配置即可:

  feign.hystrix.enabled=true

    3.2.1 启动类中添加注解

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class ServiceFeignApplication {

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

  3.2.2只需要在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);
}

  3.2.3添加熔断器实现类

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

 

四、总结:

  比如:A->ribbon工程->service-hi工程的微服务,当service-hi这个微服务故障时,ribbon工程的hiService方法会发生熔断,给A工程中调用

ribbon工程hiService方法的微服务返回一个熔断的字符串"hi,tom,sorry,error!"。这样快速响应,不会导致在这个地方一直等待超时,线程阻塞,只不过返回的不是A正常需要的结果。

 

 

posted @ 2018-11-14 15:14  纳木错星空  阅读(581)  评论(0编辑  收藏  举报