SpringCloud系列第04節之註冊中心Eureka高可用

簡介

Eureka Server 也支持運行多實例,並以互相註冊的方式(即夥伴機制),來實現高可用的部署html

即每一臺 Eureka 都在配置中指定另外一個 Eureka 地址做爲夥伴,它在啓動時會向夥伴節點獲取註冊列表java

如此一來,Eureka 集羣新加機器時,就不用擔憂註冊列表的完整性git

因此:咱們只須要在 Eureke Server 裏面配置其餘可用的 serviceUrl,就實現了註冊中心的高可用github

詳見:http://cloud.spring.io/spring-cloud-static/spring-cloud.html#_peer_awarenessweb

Zone

上面提到 serviceUrl,那就順便說下 defaultZonespring

Eureka 有一個 Region 和 Zone 的概念,你能夠理解爲現實中的大區(Region)和機房(Zone)apache

Eureka Client 在啓動時須要指定 Zone,它會優先請求本身 Zone 的 Eureka Server 獲取註冊列表app

一樣的,Eureka Server 在啓動時也須要指定 Zone,若是沒有指定的話,其會默認使用 defaultZonemaven

詳見源碼中的 getEurekaServerServiceUrls() 方法:https://github.com/spring-cloud/spring-cloud-netflix/blob/master/spring-cloud-netflix-eureka-client/src/main/java/org/springframework/cloud/netflix/eureka/EurekaClientConfigBean.javaspring-boot

示例代碼

這是演示的是一個由四個模塊組成的 Maven 工程,其中包含兩個註冊中心和兩個服務提供者

以下圖所示

這是公共的 pom.xml

<?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 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.jadyer.demo</groupId>
    <artifactId>demo-cloud-04</artifactId>
    <version>1.1</version>
    <packaging>pom</packaging>
    <modules>
        <module>service-discovery-01</module>
        <module>service-discovery-02</module>
        <module>service-server-01</module>
        <module>service-server-02</module>
    </modules>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.3.RELEASE</version>
    </parent>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Camden.SR4</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

註冊中心01

這是第一個註冊中心的 pom.xml

<?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 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.jadyer.demo</groupId>
        <artifactId>demo-cloud-04</artifactId>
        <version>1.1</version>
    </parent>
    <artifactId>service-discovery-01</artifactId>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka-server</artifactId>
        </dependency>
    </dependencies>
</project>

這是第一個註冊中心的 SpringBoot 啓動類 ServiceDiscovery01BootStrap.java

package com.jadyer.demo;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

//建立服務註冊中心
@EnableEurekaServer
@SpringBootApplication
public class ServiceDiscovery01BootStrap {
    public static void main(String[] args) {
        new SpringApplicationBuilder(ServiceDiscovery01BootStrap.class).run(args);
    }
}

這是第一個註冊中心的配置文件 /src/main/resources/application.yml

server:
  port: 1100

eureka:
  server:
    enable-self-preservation: false       # 關閉自我保護模式(缺省爲打開)
    eviction-interval-timer-in-ms: 1000   # 續期時間,即掃描失效服務的間隔時間(缺省爲60*1000ms)
  client:
    # 設置是否從註冊中心獲取註冊信息(缺省true)
    # 由於這是一個單點的EurekaServer,不須要同步其它EurekaServer節點的數據,故設爲false
    # fetch-registry: false
    # 設置是否將本身做爲客戶端註冊到註冊中心(缺省true)
    # 這裏爲不須要(查看@EnableEurekaServer註解的源碼,會發現它間接用到了@EnableDiscoveryClient)
    register-with-eureka: false
    # 在未設置defaultZone的狀況下,註冊中心在本例中的默認地址就是http://127.0.0.1:1100/eureka/
    # 但奇怪的是,啓動註冊中心時,控制檯仍是會打印這個地址的節點:http://localhost:8761/eureka/
    # 而實際服務端註冊時,要使用1100端口的才能註冊成功,8761端口的會註冊失敗並報告異常
    serviceUrl:
      # 實際測試:若修改尾部的eureka爲其它的,好比/myeureka,註冊中心啓動沒問題,但服務端在註冊時會失敗
      # 報告異常:com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server
      defaultZone: http://127.0.0.1:1200/eureka/

註冊中心02

其大部分代碼與註冊中心01相同,不一樣的有如下兩處

  1. 啓動端口爲1200
  2. eureka.client.serviceUrl.defaultZone=http://127.0.0.1:1100/eureka/(指向到夥伴那裏)

服務提供方01

這是第一個服務提供方的 pom.xml

<?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 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.jadyer.demo</groupId>
        <artifactId>demo-cloud-04</artifactId>
        <version>1.1</version>
    </parent>
    <artifactId>service-server-01</artifactId>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka</artifactId>
        </dependency>
    </dependencies>
</project>

這是第一個服務提供方的 SpringBoot 啓動類 ServiceServer01BootStarp.java

package com.jadyer.demo;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

/**
 * 經過 @EnableEurekaClient 註解,爲服務提供方賦予註冊和發現服務的能力
 * ------------------------------------------------------------------------------------------------------------------
 * 也可使用org.springframework.cloud.client.discovery.@EnableDiscoveryClient註解
 * 詳見如下兩篇文章的介紹
 * http://cloud.spring.io/spring-cloud-static/Camden.SR3/#_registering_with_eureka
 * https://spring.io/blog/2015/01/20/microservice-registration-and-discovery-with-spring-cloud-and-netflix-s-eureka
 * ------------------------------------------------------------------------------------------------------------------
 * Created by 玄玉<https://jadyer.cn/> on 2017/1/9 16:00.
 */
@EnableEurekaClient
@SpringBootApplication
public class ServiceServer01BootStarp {
    public static void main(String[] args) {
        new SpringApplicationBuilder(ServiceServer01BootStarp.class).run(args);
    }
}

這是第一個服務提供方的配置文件 /src/main/resources/application.yml

server:
  port: 2100

spring:
  application:
    name: CalculatorServer                        # 指定發佈的微服務名(之後調用時,只需該名稱便可訪問該服務)

eureka:
  instance:
    instance-id: ${spring.application.name}:${server.port}
    prefer-ip-address: true                       # 設置微服務調用地址爲IP優先(缺省爲false)
    lease-renewal-interval-in-seconds: 5          # 心跳時間,即服務續約間隔時間(缺省爲30s)
    lease-expiration-duration-in-seconds: 15      # 發呆時間,即服務續約到期時間(缺省爲90s)
  client:
    healthcheck:
      enabled: true                               # 開啓健康檢查(依賴spring-boot-starter-actuator)
    serviceUrl:
      defaultZone: http://127.0.0.1:1100/eureka/  # 指定服務註冊中心的地址

這是第一個服務提供方暴露的數學運算服務 CalculatorController.java

package com.jadyer.demo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;

/**
 * 服務提供方暴露的數學運算服務
 * Created by 玄玉<https://jadyer.cn/> on 2017/1/9 16:00.
 */
@RestController
public class CalculatorController {
    private final Logger logger = LoggerFactory.getLogger(getClass());
    @Resource
    private DiscoveryClient client;

    @RequestMapping("/add")
    public int add(int a, int b){
        //加運算
        int result = a + b;
        //輸出服務信息
        ServiceInstance instance = client.getLocalServiceInstance();
        logger.info("uri={},serviceId={},result={}", instance.getUri(), instance.getServiceId(), result);
        //返回結果
        return result;
    }
}

服務提供方02

其大部分代碼與服務提供方01相同,不一樣的有如下兩處

  1. 啓動端口爲2200
  2. eureka.client.serviceUrl.defaultZone=http://127.0.0.1:1200/eureka/(也可配成1100,再看效果,是同樣的)

補充一下:服務提供方配置成這樣也能夠eureka.client.serviceUrl.defaultZone=http://127.0.0.1:1100/eureka/,http://127.0.0.1:1200/eureka/

至於驗證,先啓動兩個註冊中心(啓動時會報錯,不過不要緊,這是因爲它找不到夥伴),再啓動服務提供方

而後看兩個註冊中心 Eureka 首頁的註冊服務列表,就會發現會被自動同步

相關文章
相關標籤/搜索