SpringCloud eureka(server)微服務集群搭建過程

工作原理:

Spring Cloud框架下的服務發現Eureka包含兩個組件

分別是: Eureka Server與Eureka Client
Eureka Server,也稱為服務註冊中心。各個服務啟動後,會在Eureka Server中進行註冊,這樣Eureka Server的服務註冊表中將會存儲所有可用服務節點的信息,服務節點的信息可以在界面中直觀的看到。
Eureka Client也稱為服務(服務實例)。作為一個Java客戶端,用於簡化與Eureka Server的交互。Eureka Client內置一個 使用輪詢負載算法的負載均衡器。服務啟動後,Eureka Client將會向Eureka Server發送心跳更新服務,如果Eureka Server在多個心跳周期內沒有接收到某個服務的心跳,Eureka Server將會從服務註冊表中把這個服務節點移除(默認90秒)。

Eureka組件的工作原理和核心功能點

上面的圖有三臺 Eureka Server 組成的集群,每一臺 Eureka Server服務在不同的地方。這樣三臺 Eureka Server 就組建成瞭一個高可用集群服務,隻要三個服務有一個能一直正常運行,就不會影響整個架構的穩定性。

eureka 高可用集群

Eureka服務是一個單點服務,在生產環境就會出現單點故障,為瞭確保Eureka服務的高可用,我需要搭建Eureka服務的集群。搭建Eureka集群非常簡單,隻要啟動多個Eureka Server服務並且讓這些Server端之間彼此進行註冊即可實現

 在我們實際的開發生產環境中,eureka 常常是以集群的方式提供服務的,目的就是要保證高可用性,同時它還保證瞭分區容錯性。這也滿足瞭一個健壯的分佈式微服務所要求的 CAP 理論原則,即 eureka 保證瞭高可用性,分區容錯性。

項目創建:

 項目搭建的主要步驟和配置就是創建項目和引入pom依賴。新建3個eureka註冊中心

 @EnableEurekaServer:項目啟動類上使用@EnableEurekaServer註解/項目就是SpringCloud的註冊中心。

YML配置

配置3個eureka-server的application.yml

server:
  port: 7001
#Eureka
eureka:
  instance:
    hostname: eureka7001.com     #Eureka服務端實例名字
  client:
    register-with-eureka: false  #表示是否向Eureka註冊中心註冊自己(服務器端不需要)
    fetch-registry: false  #false表示自己就是註冊中心
    service-url:
      defaultZone: http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/

Maven 依賴

<?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>
    <groupId>com.liy</groupId>
    <artifactId>eurekaserver-7001</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>eurekaserver-7001</name>
    <description>Demo project for Spring Boot</description>
 
    <properties>
        <java.version>1.8</java.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <spring-boot.version>2.3.0.RELEASE</spring-boot.version>
        <spring-cloud.version>Hoxton.SR4</spring-cloud.version>
    </properties>
 
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </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>
        <dependency>
            <groupId>com.liy</groupId>
            <artifactId>eurekaserver-7001</artifactId>
            <version>0.0.1-SNAPSHOT</version>
            <scope>test</scope>
        </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>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
 
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
 
</project>

本地hosts文件修改

需要配置三個hostname、否則無法集群  

在C:\Windows\System32\drivers\etc\hosts 文件類增加
127.0.0.1   eureka7001.com
127.0.0.1   eureka7002.com
127.0.0.1   eureka7003.com
 
註冊集群的三個端口分別為
7001/7002/7003

啟動服務測試

啟動三個eureka-server進行訪問測試

 下面 這裡表示這有2個註冊中心的集群節點、當前的註冊中心會從這兩個節點進行同步服務、可以通過我們配置的hostname來進行識別。

 查看當前註冊中心的集群節點。

到此這篇關於微服務SpringCloud-eureka(server)集群搭建的文章就介紹到這瞭,更多相關SpringCloud eureka集群搭建內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: