Eureka集群

文章目录

  • 1、Eureka集群搭建
  • 2、Eureka自我保护机制

1、Eureka集群搭建

高可用集群配置
同一个业务,部署在多个服务器上(不同的服务器运行同样的代码,干同一件事)
也就是说如果a挂了,它也不会影响到b或c运行,保证当前业务正常运行
当注册中心扛不住高并发的时候,这时候 要用集群来扛;

这里介绍两种方式:
第一种:

在上篇博客的基础上,在新建两个项目,要开3个虚拟机的话就有点麻烦,这里有简单办法,直接配置本地hosts来实现本机的域名映射,这样就也就是当你访问2001的时候,实际上还是在访问本地地址,

找到 C:\Windows\System32\drivers\etc 打开hosts,加配置
127.0.0.1 eureka2001.tzp.com
127.0.0.1 eureka2002.tzp.com
127.0.0.1 eureka2003.tzp.com
Eureka集群_第1张图片
普通操作
我们再新建两个module microservice-eureka-server-2002 microservice-eureka-server-2003

在两个新建的项目pom.xml中分别导入父工程,以及其他依赖


    <parent>
        <groupId>com.tzpgroupId>
        <artifactId>springcloudartifactId>
        <version>1.0-SNAPSHOTversion>
    parent>
    <artifactId>microservice-eureka-server-2001artifactId>
    
	<dependencies>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-eureka-serverartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-testartifactId>
            <scope>testscope>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>springloadedartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-devtoolsartifactId>
        dependency>
    dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>

2002 2003的主启动类EurekaServerApplication_2002,EurekaServerApplication_2003复制修改下;

package com.tzp.microserviceeurekaserver2002;

import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer
@SpringBootTest
public class MicroserviceEurekaServer2002ApplicationTests {

    @Test
    void contextLoads() {
    }

}

修改三个项目的application.yml文件,主要是修改 hostname和defaultZone,
当前注册中心的注册信息同步到2002,2003,本身就不要了,其他无论多少个也是如此
2001修改:

server:
  port: 2001
  context-path: /

eureka:
  instance:
    # 单机 hostname: localhost #eureka注册中心实例名称
    hostname: eureka2001.tzp.com # 集群
  client:
    register-with-eureka: false     #false 由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。
    fetch-registry: false     #false 由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false
    service-url:
      defaultZone: http://eureka2002.tzp.com:2002/eureka/,http://eureka2003.tzp.com:2003/eureka/ # 集群
      #单机defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/       #设置与Eureka注册中心交互的地址,查询服务和注册服务用到

2002修改:

server:
  port: 2002
  context-path: /

eureka:
  instance:
    # 单机 hostname: localhost #eureka注册中心实例名称
    hostname: eureka2002.tzp.com # 集群
  client:
    register-with-eureka: false     #false 由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。
    fetch-registry: false     #false 由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false
    service-url:
      defaultZone: http://eureka2001.tzp.com:2001/eureka/,http://eureka2003.tzp.com:2003/eureka/ # 集群
      #单机defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/       #设置与Eureka注册中心交互的地址,查询服务和注册服务用到

2003修改:

server:
  port: 2003
  context-path: /

eureka:
  instance:
    # 单机 hostname: localhost #eureka注册中心实例名称
    hostname: eureka2003.tzp.com # 集群
  client:
    register-with-eureka:   false     #false 由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。
    fetch-registry: false     #false 由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false
    service-url:
      defaultZone: http://eureka2001.tzp.com:2001/eureka/,http://eureka2002.tzp.com:2002/eureka/ # 集群
      #单机defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/       #设置与Eureka注册中心交互的地址,查询服务和注册服务用到

最后我们测试下:
启动三个注册中心,以及服务提供者项目;

然后浏览器地址栏输入:
http://eureka2001.javaxl.com:2001/
http://eureka2002.javaxl.com:2002/
http://eureka2003.javaxl.com:2003/
Eureka集群_第2张图片
![在这里插入图片描述](https://img-blog.csdnimg.cn/20191120225255742.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTA5Mjg1MA==,size_16,colo r_FFFFFF,t_70)

第二种方式:
上面eureka服务搭建,除了yml文件不一样,其他文件都一样,那么我们有什么办法能够将多个eureka服务集合到一个工程中去呢?

创建一个microservice-eureka-server(三合一)子工程
pom依赖


<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.0modelVersion>
    <parent>
        <groupId>com.tzpgroupId>
        <artifactId>springcloudartifactId>
        <version>1.0-SNAPSHOTversion>
    parent>

    <artifactId>microservice-eureka-serverartifactId>

    <properties>
        <java.version>1.8java.version>
    properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-eureka-serverartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-testartifactId>
            <scope>testscope>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>springloadedartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-devtoolsartifactId>
        dependency>
    dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>

project>

启动类添加注解@EnableEurekaServer

application.yml

---
server:
  port: 2001
  context-path: /
eureka:
  instance:
    hostname: eureka2001.tzp.com
  client:
    register-with-eureka: false
    service-url:
      defaultZone: http://eureka2002.tzp.com:2002/eureka/,http://eureka2003.tzp.com:2003/eureka/
spring:
  profiles: eureka2001
---
server:
  port: 2002
  context-path: /
eureka:
  instance:
    hostname: eureka2002.tzp.com
  client:
    register-with-eureka: false
    service-url:
      defaultZone: http://eureka2001.tzp.com:2001/eureka/,http://eureka2003.tzp.com:2003/eureka/
spring:
  profiles: eureka2002
---
server:
  port: 2003
  context-path: /
eureka:
  instance:
    hostname: eureka2003.tzp.com
  client:
    register-with-eureka: false
    service-url:
      defaultZone: http://eureka2001.tzp.com:2001/eureka/,http://eureka2002.tzp.com:2002/eureka/
spring:
  profiles: eureka2003

Eureka集群_第3张图片
跑起来的效果跟普通操作的效果是一致的

2、Eureka自我保护机制

Eureka集群_第4张图片

开发环境,我们经常会遇到这个红色的警告;
当我们长时间为访问服务以及变更服务实例名称的时候,就会出现这个红色警告;

默认情况,如果服务注册中心再一段时间内没有接收到某个微服务实例的心跳,服务注册中心会注销该实例(不是立马注销,默认90秒后注销)。
微服务实例
Eureka集群_第5张图片

由于正式环境,经常会有网络故障,网络延迟问题发生,服务和注册中心无法正常通信,此时服务是正常的,不应该注销该服务,Eureka这时候,就通过“自我保护模式”来解决问题,当短时间和服务失去通信时,保留服务信息,当恢复网络和通信时候,退出“自我保护模式”;
通过“自我保护模式”,使Eureka集群更加的健壮和稳定;

你可能感兴趣的:(springcloud)