Eureka之简化理解

Posted mcmoon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eureka之简化理解相关的知识,希望对你有一定的参考价值。

Netflix Eureka是Spring Cloud体系下构建微服务的核心,应用层面的路由、负载均衡、重试、熔断等等功能,全都是以Eureka方式作为默认支持的。

官方文档和网上一些学习资料对Eureka的分析也比较全面透彻,本文主旨是简化对Eureka的理解。

1. 服务发现的本质

Eureka是Spring Cloud体系微服务下的注册发现组件,我们首先得理解服务发现的本质,Ngnix官方有篇文章讲的很好:

Let’s imagine that you are writing some code that invokes a service that has a REST API or Thrift API.
In order to make a request, your code needs to know the network location (IP address and port) of a
service instance.
Service instances have dynamically assigned network locations. Moreover, the set of service instances
changes dynamically because of autoscaling, failures, and upgrades. Consequently, your client code
needs to use a more elaborate service discovery mechanism.

你在代码中访问微服务的时候,需要知道目标服务的ip:port,但是当目标服务频繁的变更宿主机、弹性伸缩、升级时,你如何管理ip:port?

服务发现通常是用一个标识来代表一个微服务,管理该微服务的所有实例及对应的ip:port相关信息。

2. Eureka的本质

在Eureka中,这个标识为serviceId,在依赖eureka做服务发现的微服务中,访问目标服务的rest接口时,使用http://serviceId/root/context/target/path这样的url,eureka client会自动为你负载到目标服务的实例上。围绕这个工作原理,简单理解Eureka本质:

  • RestTemplate的切面,将访问url中的serviceId解析为相应的ip:port;
  • 为了获取serviceId与ip:port的映射关系:要求微服务注册Register的时候将这些信息带上;
  • 为了使各client端能够解析serviceId,因此需要定期任务执行FetchRegister,拉取和更新server端注册的所有微服务信息;
  • 为了保证分发到各client端的注册信息可用,server端要求各微服务在定时任务中发出心跳
  • 为了使server端能够剔除长时间未发送心跳的失活实例,需要定时任务eviction去做剔除
  • 为了保证server端的高可用,多个eureka server之间做replication保证信息同步。

再简单归结一句话:

Eureka的本质是RestTemplate的切面,将url中的serviceId按照一定的策略替换为目标服务的ip:port;

为了保证serviceId与ip:port的映射关系正确,做了大量的定时任务和消息通知机制,来同步eureka server、eureka client的缓存。

 Eureka中默认的替换策略--即负载策略是Round Ribbon。

下面来个官方的通信架构压压惊。

技术分享图片

3.研读SpringCloud各组件代码的建议

Spring Cloud各组件的代码架构师比较统一的,初学者最快捷的研读方法是从spring.factories文件入手,如eureka-client.jar中的该文件:

 1 org.springframework.boot.autoconfigure.EnableAutoConfiguration= 2 org.springframework.cloud.netflix.eureka.config.EurekaClientConfigServerAutoConfiguration, 3 org.springframework.cloud.netflix.eureka.config.EurekaDiscoveryClientConfigServiceAutoConfiguration, 4 org.springframework.cloud.netflix.eureka.EurekaClientAutoConfiguration, 5 org.springframework.cloud.netflix.ribbon.eureka.RibbonEurekaAutoConfiguration
 6 
 7 org.springframework.cloud.bootstrap.BootstrapConfiguration= 8 org.springframework.cloud.netflix.eureka.config.EurekaDiscoveryClientConfigServiceBootstrapConfiguration
 9 
10 org.springframework.cloud.client.discovery.EnableDiscoveryClient=11 org.springframework.cloud.netflix.eureka.EurekaDiscoveryClientConfiguration

以这些AutoConfiguration类为入口,分析内部定义的Bean,是一个很好的开始。






以上是关于Eureka之简化理解的主要内容,如果未能解决你的问题,请参考以下文章

深入理解SpringCloud之Eureka注册过程分析

Eureka源码分析之 Client的启动流程

Spring Cloud Netflix-Eureka集群数据同步

微服务之SpringCloud实战:SpringCloud Eureka分区

#yyds干货盘点#Spring Cloud 之 Eureka 和 Zuul 的简单使用

SpringCloud之Eureka原理分析与实战(注册与发现)