轉載請標明出處:
blog.csdn.net/forezp/arti…
本文出自方誌朋的部落格
在微服務架構中,我們將業務拆分成一個個的服務,服務與服務之間可以相互呼叫(RPC)。為了保證其高可用,單個服務又必須叢集部署。由於網路原因或者自身的原因,服務並不能保證服務的100%可用,如果單個服務出現問題,呼叫這個服務就會出現網路延遲,此時若有大量的網路湧入,會形成任務累計,導致服務癱瘓,甚至導致服務“雪崩”。
為了解決這個問題,就出現斷路器模型。
一、斷路器簡介
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.
. —-摘自官網
Netflix已經建立了一個名為Hystrix的庫來實現斷路器模式。 在微服務架構中,多層服務呼叫是非常常見的。
較底層的服務如果出現故障,會導致連鎖故障。當對特定的服務的呼叫達到一個閥值(hystric 是5秒20次) 斷路器將會被開啟。
斷路開啟後,可用避免連鎖故障,fallback方法可以直接返回一個固定值。
二、準備工作
基於上一篇文章的工程,首先啟動:
基於上一節的工程,啟動eureka-server 工程;啟動service-hi工程,它的埠為8762;
三、在ribbon使用斷路器
改造serice-ribbon 工程的程式碼:
在pox.xml檔案中加入:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
</dependency>複製程式碼
在程式的入口類加@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();
}
}複製程式碼
改造HelloService類,加上@HystrixCommand,並指定fallbackMethod方法。
@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:8764/hi?name=forezp,瀏覽器顯示:
hi forezp,i am from port:8762
此時關閉 service-hi ,工程,當我們再訪問http://localhost:8764/hi?name=forezp,瀏覽器會顯示:
hi ,forezp,orry,error!
這就證明斷路器起作用了。
四、Feign中使用斷路器
如果你使用了feign,feign是自帶斷路器的,並且是已經開啟了。如果使用feign不想用斷路器的話,可以在配置檔案中關閉它,配置如下:
feign.hystrix.enabled=false
基於service-feign我們在改造下,只需要在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類:
@Component
public class SchedualServiceHiHystric implements SchedualServiceHi {
@Override
public String sayHiFromClientOne(String name) {
return "sorry "+name;
}
}複製程式碼
啟動四servcie-feign工程,開啟http://localhost:8765/hi?name=forezp,注意此時service-hi還沒開啟,網頁顯示:
sorry forezp
開啟service-hi,網頁顯示;
>
hi forezp,i am from port:8762
這證明斷路器起到作用了。
五、Circuit Breaker: Hystrix Dashboard (斷路器:hystrix 儀表盤)
基於service-ribbon 改造下:
pom.xml加入:
<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註解,開啟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:8764/hystrix,介面如下:
點選monitor stream,進入下一個介面,訪問:http://localhost:8764/hi?name=forezp
此時會出現監控介面:
本文原始碼下載:
github.com/forezp/Spri…
六、參考資料
優秀文章推薦:
- 史上最簡單的 SpringCloud 教程 | 終章
- 史上最簡單的 SpringCloud 教程 | 第一篇: 服務的註冊與發現(Eureka)
- 史上最簡單的SpringCloud教程 | 第七篇: 高可用的分散式配置中心(Spring Cloud Config)
勘誤:有人反映feign的熔斷器不起作用,springcloud版本的問題,用這個:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.SR6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>複製程式碼