我是靠谱客的博主 奋斗香菇,最近开发中收集的这篇文章主要介绍SpringCloud学习笔记 - 注册中心组件 - eureka,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. eureka

1. Eureka简介
Eureka 是 Netflix 出品的用于实现服务注册和发现的工具,Spring Cloud 封装了 Netflix 公司开发的 Eureka 模块来实现服务注册和发现
Eureka采用C-S的设计架构,包含Eureka Server 和Eureka Client两个组件

2. 基本原理
Applecation-server :服务提供者
Application-cliene:服务消费者
服务启动后向Eureka注册,Eureka Server会将注册信息向其他Eureka Server进行同步,当服务消费者要调用服务提供者,则向服务注册中心获取服务提供者地址,然后会将服务提供者地址缓存在本地,下次再调用时,则直接从本地缓存中取,完成一次调用。

3. Eureka自我保护机制
在默认配置中EurekaServer服务在一定时间(默认为90秒)没接受到某个服务的心跳连接后,EurekaServer会注销该服务。但是会存在当网络分区发生故障,导致该时间内没有心跳连接,但该服务本身还是健康运行的情况。Eureka通过“自我保护模式”来解决这个问题。
在自我保护模式中,Eureka Server会保护服务注册表中的信息,不再注销任何服务实例。

2. eureka注册中心-单个服务配置

1. 服务端配置

  1. 创建服务cloud-eureka-server7001,并在pom中引用服务端依赖
<artifactId>cloud-eureka-server7001</artifactId>
    <dependencies>
        <!--eureka-server-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
        <!-- 引入自己定义的api通用包,可以使用Payment支付Entity -->
        <dependency>
            <groupId>com.atguigu.springboot</groupId>
            <artifactId>cloud-api-commons</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <!--boot web actuator-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <!--一般通用配置-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
  1. 编写appliction.yaml配置文件,设置服务器端口、登录地址等信息
server:
  port: 7001

eureka:
  instance:
    hostname: locathost #eureka服务端的实例名称
  client:
    #false表示不向注册中心注册自己。
    register-with-eureka: false
    #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    fetch-registry: false
    service-url:
      #设置与Eureka server交互的地址查询服务和注册服务都需要依赖这个地址。
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
  1. 创建主程序入口
package com.atguigu.springcloud;

import javafx.application.Application;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

/**
 * @author 强浩
 * @version 1.0.0
 * Copyright(c) YTANG All Rights Reserved
 * @className
 * @project 管理系统
 * @date 2021年11月16日
 */
@SpringBootApplication
@EnableEurekaServer
public class EurekaMain7001 {
    public static void main(String[] args) {
        SpringApplication.run(EurekaMain7001.class,args);
    }
}
  1. 测试链接
    http://localhost:7001
    在这里插入图片描述

2 eureka客户端配置

  1. 创建或修改已有的业务实体,在其pom中引入eureka的客户端依赖
        <!--引入eureka-client服务-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
  1. 编写yaml文件,将eureka服务端信息添加到客户端的配置,以便客户端根据配置信息将服务注册到服务端上
server:
  port: 80
spring:
  application:
    name: cloud-consumer-order
  devtools:
    restart:
      enabled: true
eureka:
  client:
    register-with-eureka: true #是否将服务注册到eureka中,默认为true
    service-url:
      defaultZone: http://localhost:7001/eureka
  1. 在主程序类上标注注解“@EnableEurekaClient”启用eureka服务
@SpringBootApplication
@EnableEurekaClient
public class OrderMain80 {
    public static void main(String[] args) {
        SpringApplication.run(OrderMain80.class,args);
    }
}

3. eureka注册中心-集群服务配置(模拟集群)

为了使 Eureka Server 实现高可用,我们需要为它配置集群。这样当有一台 Eureka Server 有故障时,集群中的其他 Server 可以进行代替。Eureka 集群之中的 Node 通过 P2P 通信的方式共享注册表,以使得每个 Eureka Server 的注册表保持一致。

  1. 根据上面单个服务创建方式,创建两个或多个eureka服务实体
  2. 分别修改对应的yaml配置文件,将本机服务注册到其他所有eureka服务中心去
    7001:
server:
  port: 7001

eureka:
  instance:
    hostname: eureka-server-7001 #eureka服务端的实例名称
  client:
    #是否注册eureka服务
    #false 表示不向注册中心注册自己。
    #true 在集群部署时开启,可以将自己注册到defaultZone指定的eureka注册中心
    register-with-eureka: true
    #抓取注册服务信息:
    #false 表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    #true 在集群部署时开启,以便获取服务列表
    fetch-registry: true
    service-url:
      #设置与Eureka server交互的地址,查询服务和注册服务都需要依赖这个地址。多个地址以“,”隔开
      defaultZone: http://eureka-server-7002:7002/eureka/

7002:

server:
  port: 7002

eureka:
  instance:
    hostname: eureka-server-7002 #eureka服务端的实例名称
  client:
    #是否注册eureka服务
    #false 表示不向注册中心注册自己。
    #true 在集群部署时开启,可以将自己注册到defaultZone指定的eureka注册中心
    register-with-eureka: true
    #抓取注册服务信息:
    #false 表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    #true 在集群部署时开启,以便获取服务列表
    fetch-registry: true
    service-url:
      #设置与Eureka server交互的地址,查询服务和注册服务都需要依赖这个地址。多个地址以“,”隔开
      defaultZone: http://eureka-server-7001:7001/eureka/
      #例:defaultZone: http://eureka-server-7001:7001/eureka/,http://eureka-server-7003:7003/eureka/
  1. 在hosts文件中添加eureka服务的域名映射,用来在单个服务器上模拟多个服务
    文件地址:C:WindowsSystem32driversetchosts
    在这里插入图片描述

但是为了便于维护,我们还是保持ip和服务端实例名称保持一致为好。

  1. 启动服务,访问地址进行测试,可以看到DS副本已经关联到备用服务器
    在这里插入图片描述

4. eureka客户端-集群服务配置

  1. 创建两个或多个相同功能的客户端服务器,并将其注册到eureka注册中心
    在这里插入图片描述

  2. 在服务调用端的配置类中开启RESTTemplate的负载均衡功能

@Configuration
public class RestTemplateConfig {
    @Bean
    @LoadBalanced //开启RestTemplate的负载均衡功能
    public RestTemplate getRestTemplate(){
        RestTemplate restTemplate = new RestTemplate();
        return restTemplate;
    }
}
  1. 在controller中使用客户端在注册中心中的服务名进行请求访问。
@Slf4j
@RestController
public class OrderController {
    //public static final String PAYMENT_URL = "http://localhost:8001";
    public static final String PAYMENT_URL = "http://cloud-payment-service";
    @Resource
    private RestTemplate restTemplate;
    @GetMapping("/consumer/payment/create")
    public CommonResult<Payment> create(Payment payment){
        //这里将get请求转换为post请求
        return restTemplate.postForObject(PAYMENT_URL + "/payment/create",payment,CommonResult.class);
    }

    @GetMapping("/consumer/payment/get/{id}")
    public CommonResult<Payment> getPaymentById(@PathVariable("id") Long id){
        return restTemplate.getForObject(PAYMENT_URL + "/payment/get/" + id,CommonResult.class);
    }
}
  1. 访问测试
    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-53pDSOer-1667095695955)(en-resource://database/830:1)]

5. 优化配置

1. 指定服务实体名称、显示IP地址信息

eureka:
  client:
    register-with-eureka: true
    fetch-registry: true
    service-url:
      defaultZone: http://eureka-server-7001:7001/eureka/,http://eureka-server-7002:7002/eureka/
  instance: #指定服务实体status名称
    instance-id: payment8001
    prefer-ip-address: true #访问路径显示IP地址

在这里插入图片描述

2. 通过discovery获取注册中心的注册服务信息

  1. 在主启动类上标注“@EnableDiscoveryClient”注解
@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
public class PaymentMain8001 {
    public static void main(String[] args) {
        SpringApplication.run(PaymentMain8001.class,args);
    }
}
  1. 在controller中注入并使用
//import org.springframework.cloud.client.discovery.DiscoveryClient;
    @Resource
    private DiscoveryClient discoveryClient;

    @GetMapping("/payment/discovery")
    public Object discovery(){
        //获取注册中心的服务列表
        List<String> services = discoveryClient.getServices();
        for (String service: services) {
            log.info("service = " + service);
        }
        //获取指定服务名称下的全部实例信息
        List<ServiceInstance> instances = discoveryClient.getInstances("cloud-payment-service");
        for (ServiceInstance instance : instances) {
            log.info("InstanceId"+ instance.getInstanceId());
            log.info("Host"+ instance.getHost());
            log.info("Port"+ instance.getPort());
            log.info("Uri"+ instance.getUri());
        }
        return services;
    }

在这里插入图片描述

6. eureka自我保护机制

1. 自我保护背景

首先对Eureka注册中心需要了解的是Eureka各个节点都是平等的,没有ZK中角色的概念, 即使N-1个节点挂掉也不会影响其他节点的正常运行。

默认情况下,如果Eureka Server在一定时间内(默认90秒)没有接收到某个微服务实例的心跳,Eureka Server将会移除该实例。但是当网络分区故障发生时,微服务与Eureka Server之间无法正常通信,而微服务本身是正常运行的,此时不应该移除这个微服务,所以引入了自我保护机制。

2. 自我保护机制

官方对于自我保护机制的定义:

自我保护模式正是一种针对网络异常波动的安全保护措施,使用自我保护模式能使Eureka集群更加的健壮、稳定的运行。

自我保护机制的工作机制是:如果在15分钟内超过85%的客户端节点都没有正常的心跳,那么Eureka就认为客户端与注册中心出现了网络故障,Eureka Server自动进入自我保护机制,此时会出现以下几种情况:

  • Eureka Server不再从注册列表中移除因为长时间没收到心跳而应该过期的服务。

  • Eureka Server仍然能够接受新服务的注册和查询请求,但是不会被同步到其它节点上,保证当前节点依然可用。

  • 当网络稳定时,当前Eureka Server新的注册信息会被同步到其它节点中。

因此Eureka Server可以很好的应对因网络故障导致部分节点失联的情况,而不会像ZK那样如果有一半不可用的情况会导致整个集群不可用而变成瘫痪。

3. 自我保护开关

Eureka自我保护机制,通过配置 eureka.server.enable-self-preservation 来true打开/false禁用自我保护机制,默认打开状态,建议生产环境打开此配置。

4. 开发环境配置
开发环境中如果要实现服务失效能自动移除,只需要修改以下配置。

  1. 注册中心关闭自我保护机制,修改检查失效服务的时间。
eureka:
  server:
     enable-self-preservation: false
     eviction-interval-timer-in-ms: 3000
  1. 微服务修改减短服务心跳的时间。
# 默认90秒
lease-expiration-duration-in-seconds:  10
# 默认30秒
lease-renewal-interval-in-seconds:  3

以上配置建议在生产环境使用默认的时间配置。

最后

以上就是奋斗香菇为你收集整理的SpringCloud学习笔记 - 注册中心组件 - eureka的全部内容,希望文章能够帮你解决SpringCloud学习笔记 - 注册中心组件 - eureka所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部