标签:bec 负载均衡 之间 高可用 lan invoke cli enabled 图片
Netflix Eureka是Spring Cloud体系下构建微服务的核心,应用层面的路由、负载均衡、重试、熔断等等功能,全都是以Eureka方式作为默认支持的。
官方文档和网上一些学习资料对Eureka的分析也比较全面透彻,本文主旨是简化对Eureka的理解。
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相关信息。
在Eureka中,这个标识为serviceId,在依赖eureka做服务发现的微服务中,访问目标服务的rest接口时,使用http://serviceId/root/context/target/path这样的url,eureka client会自动为你负载到目标服务的实例上。围绕这个工作原理,简单理解Eureka本质:
再简单归结一句话:
Eureka的本质是RestTemplate的切面,将url中的serviceId按照一定的策略替换为目标服务的ip:port;
为了保证serviceId与ip:port的映射关系正确,做了大量的定时任务和消息通知机制,来同步eureka server、eureka client的缓存。
Eureka中默认的替换策略--即负载策略是Round Ribbon。
下面来个官方的通信架构压压惊。
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,是一个很好的开始。
标签:bec 负载均衡 之间 高可用 lan invoke cli enabled 图片
原文地址:https://www.cnblogs.com/mcmoon/p/9564260.html