搭建Eureka Server 高可用集群

2. 简介

在互联网应用中,服务实例很少有单个的。
即使微服务消费者会缓存服务列表,但是如果EurekaServer只有一个实例,该实例挂掉,正好微服务消 费者本地缓存列表中的服务实例也不可用,那么这个时候整个系统都受影响。
在生产环境中,我们会配置Eureka Server集群实现高可用。Eureka Server集群之中的节点通过点对点 (P2P)通信的方式共享服务注册表。这里我们示例开启两台 Eureka Server 以搭建集群。

在这里插入图片描述

2. 工程搭建步骤

Spring Cloud 利用Spring Boot 可以快速的实现微服务组件开发,所以Spring Boot是我们快速把Spring Cloud微服务技术应用起 来的一种方式。这里我们可以借助IDEA快速创建一个SpringBoot工程,创建的过程中可以选择各种所需要的组件,过程如下

File->new Project
在这里插入图片描述
点击Next,下面的选项自己按需填写
在这里插入图片描述
点击Next,因为我们搭建的是Eureka Server服务注册中心,所以只需要勾选Eureka Server就可以了
在这里插入图片描述
点击Next->Finish就成功创建好工程了,pom文件所需要依赖的jar已经自动帮我们配置好了,不用做任何改动,如下

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>11</java.version>
        <spring-cloud.version>Hoxton.SR7</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
  1. 修改本机host属性
    由于是在个人计算机中进行测试很难模拟多主机的情况,Eureka配置server集群时需要执行host地址。所以需要修改个人电脑中host地址
 127.0.0.1 EurekaServerA 
 127.0.0.1 EurekaServerB
  1. 创建一个配置文件application.yml,配置如下
#共用配置
spring:
  application:
    # 应用名称,会在Eureka中作为服务的id标识(serviceId)
    name: cloud-eureka-server

---
#第一个profile,后期启动spring-boot项目时,可通过命令参数指定
spring:
  profiles: EurekaServerA
  # 安全认证,登录需要用户名密码
#  security:
#    user:
#      name: eurekaserver1
#      password: eurekaserver1pwd
#Eureka server服务端口
server:
  port: 8761
eureka:
  instance:
    #    hostname: EurekaServerA
    preferIpAddress: true
    ipAddress: 127.0.0.1
    #注册的客户,发送心跳的周期,默认30s
    leaseRenewalIntervalInSeconds: 30
    #注册的客户,在心跳端超时,删除客户端的最短时间,默认90s
    leaseExpirationDurationInSeconds: 90
  client:
    #拉取注册信息周期
    registryFetchIntervalSeconds: 30
    register-with-eureka: true
    fetch-registry: true
    #是否开启健康检查
    healthcheck:
      enabled: false
    serviceUrl:
      defaultZone: http://EurekaServerB:8762/eureka/
  server:
    #是否开启自我保护,生产环境建议开启,默认开启
    enableSelfPreservation: false
    #失效剔除时间,Eureka Server会定时(默认60s)进行检查
    #如果发现实例在在一定时间(此值由客户端设置的eureka.instance.leaseExpirationDurationInSeconds定义,默认值为90s)内没有收到心跳,则会注销此实例。
    evictionIntervalTimerInMs: 60000

---
#第二个profile,后期启动spring-boot项目时,可通过命令参数指定
spring:
  profiles: EurekaServerB
  # 安全认证,登录需要用户名密码
#  security:
#    user:
#      name: eurekaserver2
#      password: eurekaserver2pwd
#Eureka server服务端口
server:
  port: 8762
eureka:
  instance:
    #    hostname: EurekaServerB
    preferIpAddress: true
    ipAddress: 127.0.0.1
    #注册的客户,发送心跳的周期,默认30s
    leaseRenewalIntervalInSeconds: 30
    #注册的客户,在心跳端超时,删除客户端的最短时间,默认90s
    leaseExpirationDurationInSeconds: 90
  client:
    #拉取注册信息周期
    registryFetchIntervalSeconds: 30
    register-with-eureka: true
    fetch-registry: true
    healthcheck:
      enabled: false
    serviceUrl:
      # http://用户名:密码@ip:port/eureka
      defaultZone: http://EurekaServerA:8761/eureka/
  server:
    #是否开启自我保护,生产环境建议开启,默认开启
    enableSelfPreservation: false
    #失效剔除时间,Eureka Server会定时(默认60s)进行检查
    #如果发现实例在在一定时间(此值由客户端设置的eureka.instance.leaseExpirationDurationInSeconds定义,默认值为90s)内没有收到心跳,则会注销此实例。
    evictionIntervalTimerInMs: 60000

说明:

  • 在一个实例中,把另外的实例作为了集群中的镜像节点,那么这个http://EurekaServerB:8762/eureka URL 中的 EurekaServerB 就要和其它profile 中的 eureka.instance.hostname 保持一致。
  • register-with-eureka 和 fetch-registry 在单节点时设置为了 false, 因为只有一台 EurekaServer,并不需要自己注册自己,而现在有了集群,可以在集群的其他节点中注册本服务并且获取服务信息,所以都设置为true
  1. SpringBoot启动类,使用@EnableEurekaServer声明当前项目为EurekaServer服务
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
//声明本项目是一个Eureka服务
@EnableEurekaServer
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

}
  1. 启动两次该SpringBoot项目,分别使用两个不同的profiles

在这里插入图片描述
5. 访问两个EurekaServer的管理台⻚面http://eurekaservera:8761/和http://eurekaserverb:8762/会发现注册中心 CLOUD-EUREKA-SERVER 已经有两个节点,并且 registered-replicas (相邻集群复制节点)中已经包含对方,如下图所示

在这里插入图片描述
在这里插入图片描述

  • 如果想增加集群数量,可在配置文件中增加对应数量的profiles
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值