Spring Cloud系列(二十九)高可用配置中心—Finchley版本

本文转载自:Spring Cloud构建微服务架构(四)分布式配置中心(续)--翟永超

传统作法

通常在生产环境,Config Server与服务注册中心一样,我们也需要将其扩展为高可用的集群。在之前实现的config-server基础上来实现高可用非常简单,不需要我们为这些服务端做任何额外的配置,只需要遵守一个配置规则:将所有的Config Server都指向同一个Git仓库,这样所有的配置内容就通过统一的共享文件系统来维护,而客户端在指定Config Server位置时,只要配置Config Server外的均衡负载即可,就像如下图所示的结构:

注册为服务

虽然通过服务端负载均衡已经能够实现,但是作为架构内的配置管理,本身其实也是可以看作架构中的一个微服务。所以,另外一种方式更为简单的方法就是把config-server也注册为服务,这样所有客户端就能以服务的方式进行访问。通过这种方法,只需要启动多个指向同一Git仓库位置的config-server就能实现高可用了。

配置过程也非常简单,具体如下:

config-server配置

  • 在pom.xml的dependencies节点中引入如下依赖,相比之前的config-server就,加入了spring-cloud-starter-netflix-eureka-client,用来注册服务
<dependency>
	<groupId>org.springframework.cloud</groupId>
	<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
  • 在application.properties中配置参数eureka.client.serviceUrl.defaultZone以指定服务注册中心的位置,详细内容如下:
eureka:
  client:
    service-url:
      defaultZone: http://localhost:1111/eureka/ 
  • 在应用主类中,新增@EnableDiscoveryClient注解,用来将config-server注册到上面配置的服务注册中心上去。
@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class Application {

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

启动该应用,并访问http://localhost:1111/,可以在Eureka Server的信息面板中看到config-server已经被注册了。

config-client配置

  • 同config-server一样,在pom.xml的dependencies节点中新增spring-cloud-starter-netflix-eureka-client依赖,用来注册服务:
<dependency>
	<groupId>org.springframework.cloud</groupId>
	<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
  • 在bootstrap.properties中,按如下配置:
spring:
  application:
    name: repo #要获取的应用名
  cloud:
    config:
      uri: http://localhost:5666/ # 配置服务中心的地址
      label: master #要获取的分支名
      profile: dev  #要获取的环境名
      discovery:
        enabled: true
        service-id: config-server
eureka:
  client:
    service-url:
      defaultZone: http://localhost:1111/eureka/ 

其中,通过eureka.client.serviceUrl.defaultZone参数指定服务注册中心,用于服务的注册与发现,再将spring.cloud.config.discovery.enabled参数设置为true,开启通过服务来访问Config Server的功能,最后利用spring.cloud.config.discovery.serviceId参数来指定Config Server注册的服务名。这里的spring.application.name和spring.cloud.config.profile如之前通过URI的方式访问时候一样,用来定位Git中的资源。

  • 在应用主类中,增加@EnableDiscoveryClient注解,用来发现config-server服务,利用其来加载应用配置
@EnableDiscoveryClient
@SpringBootApplication
public class Application {

	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}
}
  • 沿用之前我们创建的Controller来加载Git中的配置信息,代码就不贴了。

完成了上述配置之后,我们启动该客户端应用。若启动成功,访问http://localhost:1111/,可以在Eureka Server的信息面板中看到该应用已经被注册成功了。

访问客户端应用提供的服务:http://localhost:5777/test1,此时,我们会返回在Git仓库中repoe-dev.properties文件配置的from属性内容:”git-dev-1.0-update”。

这是简单实现了配置中心的高可用,但是并没有解决真正会遇到的问题,比如Git无法访问后会导致配置中心全部挂掉,最终整个系统瘫痪。所以真正解决配置中心高可用可以参考这篇文章:Spring Cloud Config 客户端的高可用实现

猜你喜欢

转载自blog.csdn.net/WYA1993/article/details/82898842