系列目录:
- Spring Cloud Eureka 全解 (1) - 总览篇
- Spring Cloud Eureka 全解 (2) - 整体流程篇
- Spring Cloud Eureka 全解 (3) - 核心流程-服务注册与取消详解
- Spring Cloud Eureka 全解 (4) - 核心流程-服务与实例列表获取详解
- Spring Cloud Eureka 全解 (5) - 自我保护机制
- Spring Cloud Eureka 全解 (6) - 一些热门QA
- Spring Cloud Eureka 全解 (7) - 生产配置最佳实践
- Spring Cloud Eureka 全解 (8) - 安全配置
Eureka作为服务注册中心对整个微服务架构起着最核心的整合作用,因此对Eureka还是有很大的必要进行深入研究。
Eureka 1.x版本是纯基于servlet的应用。为了与spring cloud结合使用,除了本身eureka代码,还有个粘合模块spring-cloud-netflix-eureka-server。在我们启动EurekaServer实例的时候,只用加入对于spring-cloud-starter-eureka-server的依赖即可。之后通过@EnableEurekaServer注解即可启动一个Eureka服务器实例。
What is Spring Cloud Netflix?
其官方文档中对自己的定义是:
Spring Cloud Netflix provides Netflix OSS integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations you can quickly enable and configure the common patterns inside your application and build large distributed systems with battle-tested Netflix components. The patterns provided include Service Discovery (Eureka), Circuit Breaker (Hystrix), Intelligent Routing (Zuul) and Client Side Load Balancing (Ribbon)..
Spring Cloud Netflix这个项目对于Spring Boot应用来说,它集成了NetFlix OSS的一些组件,只需通过注解配置和Spring环境的通用简单的使用注解,你可以快速的启用和配置这些久经测试考验的NetFlix的组件于你的应用和用于构建分布式系统中。这些组件包含的功能有服务发现(Eureka),熔断器(Hystrix),智能路由(Zuul)以及客户端的负载均衡器(Ribbon)
简单的来说,Spring Cloud NetFlix这个项目对NetFlix中一些久经考验靠谱的服务发现,熔断,网关,智能路由,以及负载均衡等做了封装,并通过注解的或简单配置的方式提供给Spring Cloud用户用。
What is Eureka?
Eureka is a REST (Representational State Transfer) based service that is primarily used in the AWS cloud for locating services for the purpose of load balancing and failover of middle-tier servers. We call this service, the Eureka Server. Eureka also comes with a Java-based client component,the Eureka Client, which makes interactions with the service much easier. The client also has a built-in load balancer that does basic round-robin load balancing. At Netflix, a much more sophisticated load balancer wraps Eureka to provide weighted load balancing based on several factors like traffic, resource usage, error conditions etc to provide superior resiliency.
简单来说Eureka就是Netflix开源的一款提供服务注册和发现的产品,并且提供了相应的Java客户端。
Spring Cloud Eureka 与 Eureka
其实有点不太一样,Spring Cloud Netflix提供的胶水代码更换了一些初始化配置,并且去掉了一些不合理的例如单实例EurekaServer服务等待时间,还增加了更人性化的界面:
Eureka VS ZOOKEEPER
从设计思路上看,Eureka是AP型设计,ZOOKEEPER是CP型设计:
- Eureka不持久化,缓存,Zookeeper持久化,对于注册中心没必要持久化,我们只关心当前瞬时的服务状态
- Eureka通过增量更新注册信息,Zookeeper通过Watch事件监控变化,对于服务注册变化的过程,我们不关心,只关心瞬时状态
- Eureka提供客户端缓存,Zookeeper无客户端缓存,在网络隔离注册中心访问不了的情况下,宁可返回某服务5分钟之前在哪几个服务器上可用的信息,也不能因为暂时的网络故障而找不到可用的服务器
综上所述,Eureka适合作为服务注册发现中心,Zookeeper适合更广泛的分布式协调服务
Eureka架构
比较细节的架构图如下所示,之后的文章我们会详细解释:
EurekaServer 关键API与用途解释
注意,这个和官网的不一样,在SpringCloud环境下,context-path就是eureka
下一篇,我们会详细分析Eureka一些流程