Eureka服务注册与发现
学习地址:https://www.bilibili.com/video/BV18E411x7eT?p=15
源码分享:https://github.com/mobiwusihuan288/SpringCloud2020
Eureka基础知识
服务治理
-
Spring Cloud封装了Netflix公司开发的Eureka模块来实现服务治理
-
在传统的rpc远程调用框架中,管理每个服务与服务之间依赖关系比较复杂,管理比较杂,所以需要使服务治理,管理服务于服务之间依赖关系,可以实现服务调用、负载均衡、容错等,实现服务发现与注册。
服务注册
-
Eureka采用了CS的设计架构,Eureka Server作为服务注册功能的服务器它是服务注册中心。而系统中的其他微服务便用Eureka的客户端连接到Eureka Server并维持心跳连接。这样系统的维护人员就可以诵过Eureka Server来监控系统中各个微服务是否正常运行。
-
在服务注册与发现中,有一个注册中心。当服务器启动的时候,会把当前自己服务器的信息比如服务地址通讯地址等以别名方式注册到注册中心上。另一方(消费者|服务提供者),以该别名的方式去注册中心上获取到实际的服务通讯地址,然后再实现本地RPC调用。
-
RPC远程调用框架核心设计思想:在于注册中心,因为使用注册中心管理每个服务与服务之间的一个依赖关系(服务治理概念)。在任何rpc远程框架中,都会有注册中心(存放服务止相关信息(接口地址))
Eureka组件
Eureka包含两个组件:EurekaServer和EurekaClient
-
EurekaServer提供服务注册服务
各个微服务节点通过配置启动后,会在EurekaServer中进行汪册,这样EurekaSeer中的服务汪册表中将会存储所有可用服务节点的信息,服务节点的信息可以在界面中直观看到。 -
EurekaClient通过注册中心进行访问
是一个java客户端,用于简化EurekaServer的交互,客户端同时也具备一个内置的、使用轮询(round-robin)负载篇法的负载均衡器在应用启动后,将会向Eureka Server发送心跳(默认周期为30秒)。如果Eureka Server在多个心跳周期内没有接收到某个节点的心跳,Eureka Server将会从服务汪册表中把这个服务节点移除(默认90秒)
单机Eureka构建
cloud-eureka-server7001
Eureka Server端服务注册中心
-
建Module
-
改POM
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>springcloud2020</artifactId>
<groupId>com.nuc.springcloud</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-eureka-server7001</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>com.atguigu.springcloud</groupId>
<artifactId>cloud-api-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
- 写YML
server:
port: 7001
eureka:
instance:
hostname: localhost #eureka服务端的实例名字
client:
register-with-eureka: false #表识不向注册中心注册自己
fetch-registry: false #表示自己就是注册中心,职责是维护服务实例,并不需要去检索服务
service-url:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ #设置与eureka server交互的地址查询服务和注册服务都需要依赖这个地址
- 主启动
//注意添加 @EnableEurekaServer
@SpringBootApplication
@EnableEurekaServer
public class EurekaMain7001 {
public static void main(String[] args) {
SpringApplication.run(EurekaMain7001.class,args);
}
}
- 测试
http://localhost:7001/
cloud-provider-payment8001
Eureka Client端cloud-provider-payment8001将注册进EurekaServer成服务提供者provider
-
改POM
添加client
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
- 写YML
eureka:
client:
register-with-eureka: true
fetchRegistry: true
service-url:
defaultZone: http://localhost:7001/eureka
- 主启动
//添加注解 @EnableEurekaClient
@EnableEurekaClient
- 测试
http://localhost:7001/
微服务注册名配置
cloud-consumer-order80
EurekaClient端cloud-consumer-order80将注册进EurekaServer成为服消费者consumer
-
改POM
添加client
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
- 写YML
spring:
application:
name: cloud-order-service
eureka:
client:
register-with-eureka: true
fetchRegistry: true
service-url:
defaultZone: http://localhost:7001/eureka
- 主启动
//添加注解 @EnableEurekaClient
@EnableEurekaClient
- 测试
先要启动EurekaServer,7001服务
再要启动服务提供者provider,8001服务
http://localhost:7001/
http://localhost/consumer/payment/get/31
集群Eureka构建步骤
集群原理
问题:微服务RPC远捏服务调比最核心的什么
高可用。试想你的注册中心只有一个only one,它出故障了那就凉凉了,会过致整个服务环境不可用,所以搭建集群
解决办法:搭建Eureka注册中心集群,实现负载均衡+故障容错
cloud-eureka-server7002
参考新建cloud-eureka-server7001
- 修改映射文件
C:\Windows\System32\drivers\etc
hosts
127.0.0.1 eureka7001.com
127.0.0.1 eureka7002.com
127.0.0.1 eureka7003.com
- 改YML
- 7001
server:
port: 7001
eureka:
instance:
hostname: eureka7001.com #eureka服务端的实例名字
client:
register-with-eureka: false #表识不向注册中心注册自己
fetch-registry: false #表示自己就是注册中心,职责是维护服务实例,并不需要去检索服务
service-url:
defaultZone: http://eureka7002.com:7002/eureka/ #设置与eureka server交互的地址查询服务和注册服务都需要依赖这个地址
- 7002
server:
port: 7002
eureka:
instance:
hostname: eureka7002.com #eureka服务端的实例名字
client:
register-with-eureka: false #表识不向注册中心注册自己
fetch-registry: false #表示自己就是注册中心,职责是维护服务实例,并不需要去检索服务
service-url:
defaultZone: http://eureka7001.com:7001/eureka/ #设置与eureka server交互的地址查询服务和注册服务都需要依赖这个地址
- 将支付服务8001微服务发布到上面2台Eureka集群配置中
修改8001YML
service-url:
defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka #集群版
- 将订单服务80微服务发布到上面2台Eureka集群配置中
service-url:
defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka #集群版
- 测试
先要启动EurekaServer,7001/7002服务
再要启动服务提供者provider,8001服务
再要启动消费者,80
http://localhost/consumer/payment/get/31
7001
7002
cloud-provider-payment8002
参考cloud-provider-payment8001
-
修改controller
输出打印出端口号
- 测试
负载均衡
订单服务访问地址不能写死
- 修改cloud-consumer-order80的OrderController
public static final String PATHMENT_URL = "http://CLOUD-PAYMENT-SERVICE";
- 使用@LoadBalanced注解赋予RestTemplate负载均衡的能力
@Configuration
public class ApplicationContextConfig {
@Bean
@LoadBalanced
public RestTemplate getRestTemplate() {
return new RestTemplate();
}
}
- 测试
先要启动EurekaServer,7001/7002服务
再要启动服务提供者provider,8001/8002服务
http://localhost/consumer/payment/get/31
Ribbon和Eureka整合后Consumer可以直接调用服务而不用再关心地址和端口号,且该服务还有负载功能了
actuator微服务信息完善
- 主机名称:服务名称修改
添加eureka.instance.instance-id:
eureka:
instance:
instance-id: payment8001
- 访问信息有ip信息提示
添加eureka.instance.prefer-ip-address:
eureka:
instance:
prefer-ip-address: true
- 测试
服务发现Discovery
-
对于注册进eureka里面的微服务,可以通过服务发现来获得该服务的信息
-
修改cloud-provider-payment8001的Controller
public class PaymentController {
@Resource
private DiscoveryClient discoveryClient;
@GetMapping(value = "/payment/discovery")
public Object discovery() {
List<String> services = discoveryClient.getServices();
for (String element : services) {
log.info("***element" + element);
}
List<ServiceInstance> instances = discoveryClient.getInstances("CLOUD-PAYMENT-SERVICE");
for (ServiceInstance instance : instances) {
log.info(instance.getServiceId() + "\t" + instance.getHost() + "\t" + instance.getPort() + "\t" + instance.getUri());
}
return this.discoveryClient;
}
}
- 在8001主启动类添加注解@EnableDiscoveryClient
@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
public class PaymentMain8001 {}
- 测试
先要启动EurekaServer,7001/7002服务
再启动8001主启动类
http://localhost:8001/payment/discovery
查看日志
Eureka自我保护
-
概述
保护模式主要用于一组客户端和Eureka Server之间存在网络分区场景下的保护。一旦进入保护模式,Eureka Server将会尝试保护其服务注册表中的信息,不再删除服务注册表的数据,也就是不会注销任何微服务。
-
在首页看到如下提示,就说明Eureka进入了保护模式
-
为什么会产生Eureka自我保护机制。
为了防止EurekaCIient可以正常运行,但是与EurekaServer网络不通情况下,EurekaServer不会立刻将EurekaClient服务剔除 -
什么是自我保护模式。
默认情况下,如果EurekaServer在一定时间内没有接收到某个微服务实例的心跳,EurekaServer将会注消该实例(默认90秒)。但当网络分区故障发生(延时、卡顿、拥挤)时,微服务与EurekaServer之间无法正常通信,以上行为可能变得非常危险了--因为微服务本身其实是健康的,此时本不应该注销这个微服务。Eureka过"自我保护模式"来解决这个问题--当EurekaServer节点在短时间内丢失过多客户端时(可能发生了网络分区故障),那么这个节点就会进入自我保护模式。 -
在自我保护模式中,Eureka Server会保护服务注册表中的信息,不再注销任何服务实例。
它的设计哲学就是宁可保留错误的服务注册信息,也不盲目注销任何可能健康的服务实例。一句话讲解:好死不如赖活着
- 自我保护机制:默认情况下EurekaCIient定时向Eureka Server端发送心跳包如果Eureka Server在一定时间内(默认90秒)没有收到EurekaCIient发送心跳包,便会直接从报务注册列表中除该服务,但是在短时间(90秒中)内丢矢了大量的服务实例心跳这时候EurekaServer会开启自我保护机制,不会剔除该服务(该现像可能出现在如果网不通但是EurekaCIient为出现宕机,此时如果换别的注册中心如果一定时间内没有收到必跳令将剔除该报务,这样就出现了严重失误,因为客户还能正常发送心跳,只是网咯延迟问,而保护机制是为了解决此问题而产生的)
综上,自我保护模式是一种应对网络异常的安全保护措施。它的架构哲学是宁可同时保留所有微服务(健康的微服务和不健康的微服务都会保留)也不盲目注销任何健康的微服务。使用自我保护模式,可以让Eureka集群更加的健壮、稳定。
一句话:某时刻某一个微服务不可用了,Eureka不会立刻清理,依旧会对该微服务的信息进行保存
属于CAP里面的AP分支
禁用自我保护
(一般生产环境中不会禁止自我保护)
出厂默认,自我保护机制是开启的
- 注册中心eureakeServer端7001,禁用自我保护模式
eureka:
server:
#关闭自我保护机制保证不可用服务被及时剔除
enable-self-preservation: false
- 效果
- 生产者客户端eureakeClient端8001
eureka:
instance:
# Eureka客户端向服务端发送心跳的时间间隔,单位是秒(默认30秒)
lease-renewal-interval-in-seconds: 1
# Eureka服务端在收到最后一次心跳后等待时间上限,单位是秒默认(默认是90秒)超时剔除服务
lease-expiration-duration-in-seconds: 2
- 测试
7001和8001都配置完成
先启动7001再启动8001
先关闭8001