Hystrix除了实现容错之外,还提供了近乎实时的监控。Hystrix Command和HystrixObservableCommand在执行时,会会生成执行结果和运行指标,比如每秒的请求数和成功数等,这些监控数据对于分析系统请求的调用情况很有用。
我们以之前项目介绍过的micro-service-consumer-ribbon-hystrix为例,因为之前的项目中已经包含了spring-boot-starter-actuator和spring-cloud-starter-hystrix,因此可以直接通过http://localhost:7908/hystrix.stream来访问,但是页面展示的并不直观。
Hystrix实现微服务的容错处理
那么为什么之前介绍的micro-service-consumer-movie-feign-hystrix-fallback-factory打开http://localhost:8028/hystrix.stream却是404呢?
因为在引入feign的时候带了hystrix,因此只需要再单独引入hystrix即可,同时还需要在启动类上加@EnableCircuitBreaker。
org.springframework.cloud
spring-cloud-starter-hystrix
创建micro-service-hystrix-dashboard项目,首先来看一下这个项目的pom文件,我们引入了spring-cloud-starter-hystrix-dashboard的依赖:
4.0.0
micro-service-hystrix-dashboard
1.0-SNAPSHOT
jar
com.fanfan.cloud
micro-service-spring-cloud-study
0.0.1-SNAPSHOT
org.springframework.cloud
spring-cloud-starter-hystrix-dashboard
org.springframework.cloud
spring-cloud-dependencies
Edgware.SR6
pom
import
micro-service-hystrix-dashboard
org.springframework.boot
spring-boot-maven-plugin
true
接下来是编写启动类,在启动类上添加@EnableHystrixDashboard注解:
@SpringBootApplication
@EnableHystrixDashboard
public class HystrixDashboardApplication {
public static void main(String[] args) {
SpringApplication.run(HystrixDashboardApplication.class, args);
}
}
application.yml的配置文件为:
server:
port: 8030
由配置可知,我们并没有把HystrixDashboard注册到Eureka上。
访问http://localhost:8030/hystrix,可看到如下的画面,输入http://localhost:8028/hystrix.stream地址查看监控数据。
server:
port: 8030
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
instance:
prefer-ip-address: true
instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
spring:
application:
name: hystrix-dashboard
上面我们使用/hystrix.stream端点监控单个微服务实例,然而微服务架构的应用系统一般会有若干个微服务,如果每次只能查看单个实例的监控数据,就要不停地切换Hystrix Dashboard的监控地址,非常不便,因此我们引入Hystrix监控数据聚合工具Turbine,它可以将所有相关的/hystrix.stream端点的数据聚合到一个组合的/turbine.stream中,从而使得集群监控更加方便。
创建一个项目micro-service-hystrix-turbine,需要引入spring-cloud-starter-turbine的依赖,如下所示:
4.0.0
micro-service-hystrix-turbine
1.0-SNAPSHOT
jar
com.fanfan.cloud
micro-service-spring-cloud-study
0.0.1-SNAPSHOT
org.springframework.cloud
spring-cloud-starter-turbine
org.springframework.cloud
spring-cloud-dependencies
Edgware.SR6
pom
import
micro-service-hystrix-turbine
org.springframework.boot
spring-boot-maven-plugin
true
在启动类上添加@EnableTurbine注解,如下所示:
@SpringBootApplication
@EnableTurbine
public class TurbineApplication {
public static void main(String[] args) {
SpringApplication.run(TurbineApplication.class, args);
}
}
接下来是application.yml配置文件:
server:
port: 8031
spring:
application:
name: hystrix-turbine
eureka:
client:
serviceUrl:
defaultZone: http://discovery:8761/eureka/
instance:
prefer-ip-address: true
# 这里的名字是spring.application.name
turbine:
appConfig: cunsumer-ribbon-custom-hystrix,cunsumer-movie-feign-hystrix-fallback
clusterNameExpression: "'default'"
接下来我们分别启动micro-service-discovery-eureka、micro-service-provider-user、micro-service-consumer-ribbon-hystrix、micro-service-consumer-movie-feign-hystrix-fallback、micro-service-hystrix-dashboard、micro-service-hystrix-turbine,然后访问http://localhost:8030/hystrix, 输入http://localhost:8031/turbine.stream查看监控数据:
在微服务和Turbine网络不通的情况下,可借助消息中间件进行数据收集。各个微服务将Hystrix Command的监控数据发送至消息中间件,Turbine去消费消息中间件的数据。
作者书上使用的消息队列使用RabbitMQ,需要安装并启动,先安装Erlang OTP。
RabbitMQ和 Erlang OTP的下载地址
安装完成后,在sbin目录下(或者将sbin目录配置到环境变量,然后执行 rabbitmq-plugins enable rabbitmq_management 启动服务
配置完成后,先执行stop再执行start。
启动后打开如下的页面:
localhost:15672,用户名和密码都是guest。
项目中使用的是rabbitmq,要注意rabbitmq和activemq不可以同时开启。否则回报错。
com.rabbitmq.client.MalformedFrameException: AMQP protocol version mismatch; we are version 0-9-1, server sent signature 3,1,0,0
复制micro-service-consumer-ribbon-hystrix,修改为micro-service-consumer-ribbon-hystrix-turbine-mq项目,pom文件中引入spring-cloud-netflix-hystrix-stream和spring-cloud-starter-stream-rabbit的依赖,如下:
4.0.0
micro-service-consumer-ribbon-hystrix-turbine-mq
0.0.1-SNAPSHOT
jar
com.fanfan.cloud
micro-service-spring-cloud-study
0.0.1-SNAPSHOT
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-actuator
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.cloud
spring-cloud-starter-hystrix
org.springframework.cloud
spring-cloud-netflix-hystrix-stream
org.springframework.cloud
spring-cloud-starter-stream-rabbit
org.springframework.cloud
spring-cloud-dependencies
Edgware.SR6
pom
import
micro-service-consumer-ribbon-hystrix-turbine-mq
org.springframework.boot
spring-boot-maven-plugin
配置文件application.yml文件:
server:
port: 7910
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
instance:
prefer-ip-address: true
instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
spring:
application:
name: cunsumer-ribbon-custom-hystrix
rabbitmq:
host: localhost
port: 5672
username: guest
password: guest
以上监控数据发送到消息队列就修改完了。
然后我们创建项目micro-service-hystrix-turbine-mq,需要引入spring-cloud-starter-turbine-stream和spring-cloud-starter-stream-rabbit的依赖,pom文件为:
4.0.0
micro-service-hystrix-turbine-mq
1.0-SNAPSHOT
jar
com.fanfan.cloud
micro-service-spring-cloud-study
0.0.1-SNAPSHOT
org.springframework.cloud
spring-cloud-starter-turbine-stream
org.springframework.cloud
spring-cloud-starter-stream-rabbit
micro-service-hystrix-turbine-mq
org.springframework.boot
spring-boot-maven-plugin
true
将@EnableTurbine修改为@EnableTurbineStream,修改配置文件application.yml文件:
server:
port: 8032
spring:
application:
name: robot-hystrix-turbine-mq
rabbitmq:
host: localhost
port: 5672
username: guest
password: guest
eureka:
client:
serviceUrl:
defaultZone: http://discovery:8761/eureka/
instance:
prefer-ip-address: true