抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

概述

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

为了解决这个问题,业界提出了熔断器模型。

Netflix 开源了 Hystrix 组件,实现了熔断器模式,Spring Cloud 对这一组件进行了整合。在微服务架构中,一个请求需要调用多个服务是非常常见的,如下图:

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

Ribbon

添加依赖

1
2
3
4
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>

启动类

添加@EnableHystrix注解

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xzt.ribbon;

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 CloudRibbonServiceApplication {

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

}

Service

在 Ribbon 调用方法上增加 @HystrixCommand 注解并指定 fallbackMethod 熔断方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.xzt.ribbon.test.service;

import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import com.xzt.ribbon.test.beans.User;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;

@Service
public class AdminService {

private Logger logger = LoggerFactory.getLogger(AdminService.class);
@Autowired
private RestTemplate restTemplate;

@HystrixCommand(fallbackMethod = "hiError")
public String sayHi(String message) {
return restTemplate.getForObject("http://CLOUD-ADMIN-SERVICE/hi?message=" + message, String.class);
}

@HystrixCommand(fallbackMethod = "hiErrorPost")
public String postHi(String userName, String password) {
User user = new User();
user.setUserName(userName);
user.setPassword(password);
User res = restTemplate.postForObject("http://CLOUD-ADMIN-SERVICE/req_post", user, User.class);
return String.format("%s ,welcome! I am from port %s", userName, res.getPort());
}

public String hiError(String message) {
return "Hi,your message is :\"" + message + "\" but request error.";
}
//参数必须保持一致,否则报错fallback method wasn't found: hiErrorPost([class java.lang.String, class java.lang.String])
public String hiErrorPost(String userName,String password) {
return "request error.";
}
}

测试熔断器

此时我们关闭服务提供者,再次请求 http://localhost:8764/hi?message=HelloRibbon 浏览器会显示:

1
Hi,your message is :"HelloRibbon" but request error.

Feign

Feign 是自带熔断器的,但默认是关闭的。需要在配置文件中配置打开它,在配置文件增加以下代码:

1
2
3
feign:
hystrix:
enabled: true

创建熔断器类并实现对应的 Feign 接口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xzt.feign.test.service;

import com.xzt.feign.test.beans.User;
import org.springframework.stereotype.Component;

@Component
public class AdminHystrix implements AdminService {
@Override
public String sayHi(String message) {
return "Hi,your message is :\"" + message + "\" but request error.";
}

@Override
public User postHi(User user) {
return null;
}
}

在 Service 中增加 fallback 指定类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.xzt.feign.test.service;


import com.xzt.feign.test.beans.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

@FeignClient(value = "cloud-admin-service",fallback = AdminHystrix.class)
public interface AdminService {
@RequestMapping(value = "hi", method = RequestMethod.GET)
String sayHi(@RequestParam(value = "message") String message);

@RequestMapping(value = "req_post", method = RequestMethod.POST)
User postHi(@RequestBody User user);
}

测试熔断器

此时我们关闭服务提供者,再次请求 http://localhost:8765/hi?message=HelloFeign 浏览器会显示:

1
Hi,your message is :"HelloRibbon" but request error.

评论