概述
什么是Eureka
Netflix 在设计Eureka 时,遵循的就是AP原则
CAP原则又称CAP定理,指的是在一个分布式系统中
- 一致性(Consistency)
- 可用性(Availability)
- 分区容错性(Partition tolerance)
CAP 原则指的是,这三个要素最多只能同时实现两点,不可能三者兼顾。
Eureka是Netflix的一个子模块,也是核心模块之一。Eureka是一个基于REST的服务,用于定位服务, 以实现云端中间层服务发现和故障转移,服务注册与发现对于微服务来说是非常重要的,有了服务发现 与注册,只需要使用服务的标识符,就可以访问到服务,而不需要修改服务调用的配置文件了,功能类 似于Dubbo的注册中心,比如Zookeeper;
Eureka原理
SpringCloud 封装了 NetFlix 公司开发的 Eureka 模块来实现服务注册和发现
Eureka 采用了 C-S 的架构设计,EurekaServer 作为服务注册功能的服务器,他是服务注册中心
而系统中的其他微服务。使用Eureka的客户端连接到EurekaServer并维持心跳连接。这样系统的维护人 员就可以通过EurekaServer来监控系统中各个微服务是否正常运行,SpringCloud的一些其他模块(比 如Zuul)就可以通过EurekaServer来发现系统中的其他微服务,并执行相关的逻辑;
和Dubbo架构对比:
Eureka Server 提供服务注册服务,各个节点启动后,会在EurekaServer中进行注册,这样Eureka Server中的服务注册表中将会存储所有可用服务节点的信息,服务节点的信息可以在界面中直观的看到。
Eureka Client是一个Java客户端,用于简化EurekaServer的交互,客户端同时也具备一个内置的,使用轮询负载算法的负载均衡器。在应用启动后,将会向EurekaServer发送心跳(默认周期为30秒)。如果 Eureka Server在多个心跳周期内没有接收到某个节点的心跳,EurekaServer将会从服务注册表中把这个服务节点移除掉(默认周期为90秒)
三大角色
- Eureka Server: 提供服务的注册于发现。
- Service Provider: 将自身服务注册到Eureka中,从而使消费方能够找到。
- Service Consumer:服务消费方从Eureka中获取注册服务列表,从而找到消费服务。
服务构建
建立springcloud-eureka-7001模块
编辑pom.xml
<?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>SpringCloud</artifactId>
<groupId>com.jia</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>springcloud-eureka-7001</artifactId>
<dependencies>
<!-- spring-cloud-starter-eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
<!-- 热部署 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
</dependencies>
</project>
application.yml
server:
port: 7001
#Eureka配置
eureka:
instance:
hostname: localhost #eureka服务端的实例名称
client:
register-with-eureka: false # 是否将自己注册到Eureka服务器中,本身是服务器,无需注册
fetch-registry: false # false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
service-url:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
# 设置与Eureka Server交互的地址查询服务和注册服务都需要依赖这个defaultZone地址
编写主启动类
package com.jia.springcloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer // EnableEurekaServer 服务端的启动类,可以接受别人的注册进来
public class EurekaService_7001 {
public static void main(String[] args) {
SpringApplication.run(EurekaService_7001.class, args);
}
}
启动,访问测试:
- System Status:系统信息
- DS Replicas:服务器副本
- Instances currently registered with Eureka:已注册的微服务列表
- General Info:一般信息
- Instance Info:实例信息
Service Provider
将 8001 的服务入驻到 7001 的eureka中!
1、修改8001服务的pom文件,增加eureka的支持!
<!-- spring-cloud-starter-eureka -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
2、yaml 中配置 eureka 的支持
#eureka配置
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka
3、8001 的主启动类注解支持
package com.jia.springcloud;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@MapperScan("com.jia.springcloud.dao")
@EnableEurekaClient // 在服务启动后自动注册到 Eureka 中
@EnableDiscoveryClient // 服务发现
public class DeptProvider_8001 {
public static void main(String[] args) {
SpringApplication.run(DeptProvider_8001.class, args);
}
}
截止目前:服务端也有了,客户端也有了,启动7001,再启动8001,测试访问:
actuator与注册微服务信息完善
主机名称:服务名称修改
在8001的 yaml 中修改一下配置
# Eureka 的配置,服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka
instance:
instance-id: springcloud-provider-dept8001 # 修改 eureka 上的默认信息
重启,刷新后查看结果
访问信息有IP信息提示
yaml中在增加一个配置
# Eureka 的配置,服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka
instance:
instance-id: springcloud-provider-dept8001 # 修改 eureka 上的默认信息
prefer-ip-address: true # true访问路径可以显示IP地址
info内容构建
现在点击info,出现ERROR页面
修改8001的pom文件,新增依赖!
<!-- actuator 完善监控信息 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
在总的父工程中修改pom.xml添加build信息 【没必要做】
<build>
<finalName>springcloud</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<delimiters>
<!--以$开头的或者结尾的在src/main/resources路径下的就能读取-->
<delimit>$</delimit>
</delimiters>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
然后回到我们的8001的 yaml 配置文件中修改增加信息
# Eureka 的配置,服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka
#http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
instance:
instance-id: springcloud-provider-dept8001 # 修改 eureka 上的默认信息
prefer-ip-address: true # true访问路径可以显示IP地址
# info 的配置,服务注册到哪里
info:
add.name: jia-springcloud
company.name: www.baidu.com
build.artifactId: ${project.artifactId}
build.version: ${project.version}
重启项目测试:7001、8001
Eureka的自我保护机制
之前出现的这些红色情况,没出现的,修改一个服务名,故意制造错误!
自我保护机制:好死不如赖活着
一句话总结:某时刻某一个微服务不可以用了,eureka不会立刻清理,依旧会对该微服务的信息进行保存!
默认情况下,如果EurekaServer在一定时间内没有接收到某个微服务实例的心跳,EurekaServer将会注销该实例(默认90秒)。但是当网络分区故障发生时,微服务与Eureka之间无法正常通行,以上行为可能变得非常危险了——因为微服务本身其实是健康的,此时本不应该注销这个服务。Eureka通过自我保护机制来解决这个问题——当EurekaServer节点在短时间内丢失过多客户端时(可能发生了网络分区故 障),那么这个节点就会进入自我保护模式。一旦进入该模式,EurekaServer就会保护服务注册表中的信息,不再删除服务注册表中的数据(也就是不会注销任何微服务)。当网络故障恢复后,该 EurekaServer节点会自动退出自我保护模式。
在自我保护模式中,EurekaServer会保护服务注册表中的信息,不再注销任何服务实例。当它收到的心 跳数重新恢复到阈值以上时,该EurekaServer节点就会自动退出自我保护模式。它的设计哲学就是宁可 保留错误的服务注册信息,也不盲目注销任何可能健康的服务实例。一句话:好死不如赖活着。
综上,自我保护模式是一种应对网络异常的安全保护措施。它的架构哲学是宁可同时保留所有微服务 (健康的微服务和不健康的微服务都会保留),也不盲目注销任何健康的微服务。使用自我保护模式, 可以让Eureka集群更加的健壮和稳定。
在SpringCloud中,可以使用 eureka.server.enable-self-preservation = false 禁用自我保护 模式 【不推荐关闭自我保护机制】
8001服务发现 Discovery
对于注册进eureka里面的微服务,可以通过服务发现来获得该服务的信息。【对外暴露服务】
修改springcloud-provider-dept-8001工程中的 DeptController
新增一个方法
// 注册进来的微服务,获取一些消息
@GetMapping("/dept/discovery")
public Object discovery() {
// 获得微服务列表的清单
List<String> services = client.getServices();
System.out.println("discovery =================> services" + services);
// 得到一个具体的微服务信息,通过具体的微服务 id ,ApplicationName
List<ServiceInstance> instances = client.getInstances("SPRINGCLOUD-PROVIDER-DEPT");
for (ServiceInstance instance : instances) {
System.out.println(
instance.getHost() + "t" +
instance.getPort() + "t" +
instance.getUri() + "t" +
instance.getServiceId()
);
}
return this.client;
}
主启动类增加一个注解
@SpringBootApplication
@MapperScan("com.jia.springcloud.dao")
@EnableEurekaClient // 在服务启动后自动注册到 Eureka 中
@EnableDiscoveryClient // 服务发现
public class DeptProvider_8001 {
public static void main(String[] args) {
SpringApplication.run(DeptProvider_8001.class, args);
}
}
启动Eureka服务,启动8001提供者
访问测试 http://localhost:8001/dept/discovery
后台输出:
consumer 访问服务
springcloud-consumer-dept-80 修改 DeptConsumerController 增加一个方法
@GetMapping("/consumer/dept/discovery")
public Object discovery() {
return restTemplate.getForObject(REST_URL_PREFIX + "/dept/discovery", Object.class);
}
启动 80 项目进行测试!
最后
以上就是明理外套为你收集整理的Eureka服务注册与发现什么是EurekaEureka原理服务构建Service ProviderEureka的自我保护机制8001服务发现 Discoveryconsumer 访问服务的全部内容,希望文章能够帮你解决Eureka服务注册与发现什么是EurekaEureka原理服务构建Service ProviderEureka的自我保护机制8001服务发现 Discoveryconsumer 访问服务所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复