0


【Eureka详细讲解】

Eureka介绍和使用

1. Eureka 介绍

Eureka

是由 Netflix 开源的一种服务发现解决方案,它是 Netflix OSS 套件中的一个组件,经常用在微服务架构中。核心作用是服务注册与发现。

当微服务启动时,会把它的网络地址(如 IP 和端口)注册到 Eureka 服务器上,这台服务器被称作 Eureka Server(服务注册中心),其他服务(客户端)启动时,会从 Eureka Server 获取运行中的服务列表,这样服务之间就可以互相调用了。

Eureka 包含两个组件:

  • Eureka Server:服务注册功能的提供方,它提供了界面显示当前注册的服务信息。
  • Eureka Client:服务消费者和提供者,服务启动时,客户端将该服务的信息注册到 Eureka Server 中,服务消费者可以通过 Eureka Server 来发现服务提供者。

2. Eureka 的主要特点

  • AP 系统:根据CAP理论,Eureka是一个典型的AP(可用性、分区容错性)系统,它保证了高可用和分区容错性,但不保证一致性(在某个时间点,可能部分实例信息不同步)。
  • 自我保护模式:为应对网络异常情况,Eureka Server 在运行时可以进入自我保护模式,这时即使没有收到某些微服务的心跳,也不会立即从服务列表中移除该实例。
  • 基于REST的服务间通信:Eureka Server 提供 REST API,方便各种语言编写的服务进行通信。

3. 使用

3.1 设置 Eureka Server

  1. 添加依赖:使用Spring Boot的话,添加spring-cloud-starter-netflix-eureka-server依赖到你的build.gradle或者pom.xml中。
<!-- pom.xml 中的依赖--><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId></dependency>
  1. 启用 Eureka Server:在 Spring Boot 应用的启动类上添加@EnableEurekaServer注解。
@SpringBootApplication@EnableEurekaServerpublicclassEurekaServerApplication{publicstaticvoidmain(String[] args){SpringApplication.run(EurekaServerApplication.class, args);}}
  1. 配置应用属性:在application.propertiesapplication.yml配置文件中设置 Eureka Server 相关的配置。
# application.ymlserver:port:8761eureka:client:registerWithEureka:falsefetchRegistry:falseserviceUrl:defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

3.2 设置 Eureka Client

  1. 添加依赖:在客户端服务的build.gradlepom.xml中添加spring-cloud-starter-netflix-eureka-client依赖。
<!-- pom.xml 中的依赖 --><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency>
  1. 启用 Eureka Client:在 Spring Boot 应用的启动类上添加@EnableEurekaClient@EnableDiscoveryClient注解。
@SpringBootApplication@EnableEurekaClient// 或 @EnableDiscoveryClientpublicclassEurekaClientApplication{publicstaticvoidmain(String[] args){SpringApplication.run(EurekaClientApplication.class, args);}}
  1. 配置应用属性:在application.propertiesapplication.yml中配置 Eureka Client 相关的配置,例如注册到 Eureka Server 的地址。
# application.ymleureka:client:serviceUrl:defaultZone: http://localhost:8761/eureka/

3.3 Eureka Server 高可用配置

在生产环境中,Eureka Server 通常会配置成高可用集群。基本步骤是搭建多个 Eureka Server 实例,它们相互注册为服务(即相互作为客户端)。这样可以保证其中一个实例宕掉时,其他实例可以继续提供服务注册和发现的功能。

以上是搭建和使用 Eureka Server与Client的基本概念和步骤。详细的配置和使用方式可能会根据项目的具体需求有所调整。

标签: eureka 云原生

本文转载自: https://blog.csdn.net/cz88888888666/article/details/136283076
版权归原作者 程序员不想YY啊 所有, 如有侵权,请联系我们删除。

“【Eureka详细讲解】”的评论:

还没有评论