13-Dubbo的三大中心之配置中心

13.1 配置中心简介

百度了一段不错的文字来介绍配置中心,我看了下肯定比我写的好多了,那我就直接拷贝过来一起看:

对于传统的单体应用而言,常使用配置文件来管理所有配置,比如SpringBoot的application.yml文件,但是在微服务架构中全部手动修改的话很麻烦而且不易维护。微服务的配置管理一般有以下需求:

  • *集中配置管理,一个微服务架构中可能有成百上千个微服务,所以集中配置管理是很重要的。*
  • *不同环境不同配置,比如数据源配置在不同环境(开发,生产,测试)中是不同的。*
  • *运行期间可动态调整。例如,可根据各个微服务的负载情况,动态调整数据源连接池大小等。*
  • *配置修改后可自动更新。如配置内容发生变化,微服务可以自动更新配置。*

综上所述对于微服务架构而言,一套统一的,通用的管理配置机制是不可缺少的主要组成部分。常见的做法就是通过配置服务器进行管理。

不过对于来看这个文章的小伙伴应该大部分对配置中心都会比较了解,分布式配置中心实现简单一点就是借助Zookeeper来协助存储,变更推送,不过为了实现各种不同的业务需求,市面上已经有很多很可靠的配置中心可用了,比如我从其他地方拷贝过来的图(虽然不是最新的但是可以供大家参考下):

在这里插入图片描述

每个配置中心都有自己的实现,如果对配置中心感兴趣的小伙伴可以自行去对应开源项目官网查看,我们这里来看Dubbo对配置中心的支持

*多配置中心: Dubbo支持多配置中心,来 保证其中一个配置中心集群出现不可用时能够切换到另一个配置中心集群 ,保证能够正常从配置中心获取全局的配置、路由规则等信息。这也能够满足配置中心在部署上适应各类高可用的部署架构模式。-来自官网*

做中间件可能考虑更多的的不仅仅是性能,还要过多的考虑高可用,高可用怎么做呢,其实就是失效转移,主备切换,降级,降级再降级这些理论的运用,多多考虑某一个服务挂了怎么办,Dubbo的多配置中心支持增加了复杂性,不过降低了服务不可用的风险,有一定的人手的公司还是值得做的。

关于Dubbo的配置中心这里我来贴个官网的图:
在这里插入图片描述
关于官网的介绍可以自行去官网看详细内容: 部署架构(注册中心、配置中心、元数据中心

13.2 启动配置中心

在上一个博客中说到了《12-全局视野来看Dubbo3.0.7的服务启动生命周期》Dubbo应用的启动过程DefaultApplicationDeployer的initialize()方法的全生命周期,在初始化方法中通过调用startConfigCenter();方法来启动配置中心的加载。后面就来详细看下:

DefaultApplicationDeployer类型的startConfigCenter()代码如下:

  1. private void startConfigCenter() {
  2. // load application config
  3. //加载应用程序配置 (配置可能有多个地方可以配置需要遵循Dubbo约定的优先级进行设置,也可能是多应用,多注册中心这样的配置)
  4. configManager.loadConfigsOfTypeFromProps(ApplicationConfig.class);
  5. // try set model name
  6. if (StringUtils.isBlank(applicationModel.getModelName())) {
  7. //设置一下模块名字和模块描述(我们再Debug里面经常会看到这个描述信息 toString直接返回了Dubbo为我们改造的对象信息)
  8. applicationModel.setModelName(applicationModel.tryGetApplicationName());
  9. }
  10. // load config centers
  11. //加载配置中心配置
  12. //配置可能有多个地方可以配置需要遵循Dubbo约定的优先级进行设置,也可能是多应用,多注册中心这样的配置)
  13. configManager.loadConfigsOfTypeFromProps(ConfigCenterConfig.class);
  14. //出于兼容性目的,如果没有明确指定配置中心,并且registryConfig的UseAConfigCenter为null或true,请使用registry作为默认配置中心
  15. useRegistryAsConfigCenterIfNecessary();
  16. // check Config Center
  17. //配置管理器中获取配置中心
  18. Collection<ConfigCenterConfig> configCenters = configManager.getConfigCenters();
  19. //配置中心配置不为空则刷新配置中心配置将其放入配置管理器中
  20. //下面开始刷新配置中心配置,如果配置中心配置为空则执行空刷新
  21. if (CollectionUtils.isEmpty(configCenters)) {
  22. //配置中心不存在的配置刷新
  23. ConfigCenterConfig configCenterConfig = new ConfigCenterConfig();
  24. configCenterConfig.setScopeModel(applicationModel);
  25. configCenterConfig.refresh();
  26. //验证配置
  27. ConfigValidationUtils.validateConfigCenterConfig(configCenterConfig);
  28. if (configCenterConfig.isValid()) {
  29. //配置合法则将配置放入配置管理器中
  30. configManager.addConfigCenter(configCenterConfig);
  31. configCenters = configManager.getConfigCenters();
  32. }
  33. } else {
  34. //一个或者多个配置中心配置存在的情况下的配置刷新
  35. for (ConfigCenterConfig configCenterConfig : configCenters) {
  36. configCenterConfig.refresh();
  37. //验证配置
  38. ConfigValidationUtils.validateConfigCenterConfig(configCenterConfig);
  39. }
  40. }
  41. //配置中心配置不为空则将配置中心配置添加到environment中
  42. if (CollectionUtils.isNotEmpty(configCenters)) {
  43. //多配置中心本地动态配置对象创建CompositeDynamicConfiguration
  44. CompositeDynamicConfiguration compositeDynamicConfiguration = new CompositeDynamicConfiguration();
  45. //获取配置中心的相关配置
  46. for (ConfigCenterConfig configCenter : configCenters) {
  47. // Pass config from ConfigCenterBean to environment
  48. //将配置中心的外部化配置,更新到环境里面
  49. environment.updateExternalConfigMap(configCenter.getExternalConfiguration());
  50. //将配置中心的应用配置,添加到环境里面
  51. environment.updateAppExternalConfigMap(configCenter.getAppExternalConfiguration());
  52. // Fetch config from remote config center
  53. //从配置中心拉取配置添加到组合配置中
  54. compositeDynamicConfiguration.addConfiguration(prepareEnvironment(configCenter));
  55. }
  56. //将配置中心中的动态配置信息 设置到environment的动态配置属性中
  57. environment.setDynamicConfiguration(compositeDynamicConfiguration);
  58. }
  59. }

13.2.1 配置管理器加载配置

前面我们看到了配置管理器会从系统属性中加载配置这里我们来详细看下,配置往往是我们使用者比较关注的内容,

  1. configManager.loadConfigsOfTypeFromProps(ApplicationConfig.class);

配置管理器加载配置代码:
来自ConfigManager的父类型AbstractConfigManager中

  1. public <T extends AbstractConfig> List<T> loadConfigsOfTypeFromProps(Class<T> cls) {
  2. List<T> tmpConfigs = new ArrayList<>();
  3. //获取属性配置 dubbo properties in classpath
  4. //这个配置信息回头说
  5. PropertiesConfiguration properties = environment.getPropertiesConfiguration();
  6. // load multiple configs with id
  7. //多注册中心配置id查询
  8. /*
  9. 搜索属性并提取指定类型的配置ID。
  10. 例如如下配置
  11. # 配置信息 properties
  12. dubbo.registries.registry1.address=xxx
  13. dubbo.registries.registry2.port=xxx
  14. # 提取配置的id extract
  15. Set configIds = getConfigIds(RegistryConfig.class)
  16. # 提取的配置id结果 result
  17. configIds: ["registry1", "registry2"]
  18. */
  19. Set<String> configIds = this.getConfigIdsFromProps(cls);
  20. configIds.forEach(id -> {
  21. //遍历这些配置id 判断配置缓存(configsCache成员变量)中是否已经存在当前配置
  22. if (!this.getConfig(cls, id).isPresent()) {
  23. T config;
  24. try {
  25. //创建配置对象 为配置对象初始化配置id
  26. config = createConfig(cls, scopeModel);
  27. config.setId(id);
  28. } catch (Exception e) {
  29. throw new IllegalStateException("create config instance failed, id: " + id + ", type:" + cls.getSimpleName());
  30. }
  31. String key = null;
  32. boolean addDefaultNameConfig = false;
  33. try {
  34. // add default name config (same as id), e.g. dubbo.protocols.rest.port=1234
  35. key = DUBBO + "." + AbstractConfig.getPluralTagName(cls) + "." + id + ".name";
  36. if (properties.getProperty(key) == null) {
  37. properties.setProperty(key, id);
  38. addDefaultNameConfig = true;
  39. }
  40. //刷新配置信息 好理解点就是Dubbo配置属性重写
  41. config.refresh();
  42. //将当前配置信息添加到配置缓存中configsCache成员变量
  43. this.addConfig(config);
  44. tmpConfigs.add(config);
  45. } catch (Exception e) {
  46. logger.error("load config failed, id: " + id + ", type:" + cls.getSimpleName(), e);
  47. throw new IllegalStateException("load config failed, id: " + id + ", type:" + cls.getSimpleName());
  48. } finally {
  49. if (addDefaultNameConfig && key != null) {
  50. properties.remove(key);
  51. }
  52. }
  53. }
  54. });
  55. // If none config of the type, try load single config
  56. //如果没有该类型的配置,请尝试加载单个配置
  57. if (this.getConfigs(cls).isEmpty()) {
  58. // load single config
  59. List<Map<String, String>> configurationMaps = environment.getConfigurationMaps();
  60. if (ConfigurationUtils.hasSubProperties(configurationMaps, AbstractConfig.getTypePrefix(cls))) {
  61. T config;
  62. try {
  63. config = createConfig(cls, scopeModel);
  64. config.refresh();
  65. } catch (Exception e) {
  66. throw new IllegalStateException("create default config instance failed, type:" + cls.getSimpleName());
  67. }
  68. this.addConfig(config);
  69. tmpConfigs.add(config);
  70. }
  71. }
  72. return tmpConfigs;
  73. }

13.2.2 默认使用注册中心地址为配置中心

出于兼容性目的,如果没有明确指定配置中心,并且registryConfig的UseAConfigCenter为null或true,请使用registry作为默认配置中心
调用方法useRegistryAsConfigCenterIfNecessary()来处理逻辑
我们来看下代码:

  1. private void useRegistryAsConfigCenterIfNecessary() {
  2. // we use the loading status of DynamicConfiguration to decide whether ConfigCenter has been initiated.
  3. //我们使用DynamicConfiguration的加载状态来决定是否已启动ConfigCenter。配置中心配置加载完成之后会初始化动态配置defaultDynamicConfiguration
  4. if (environment.getDynamicConfiguration().isPresent()) {
  5. return;
  6. }
  7. //从配置缓存中查询是否存在config-center相关配置 ,如果已经存在配置了就无需使用注册中心的配置地址直接返回
  8. if (CollectionUtils.isNotEmpty(configManager.getConfigCenters())) {
  9. return;
  10. }
  11. // load registry
  12. //加载注册中心相关配置
  13. configManager.loadConfigsOfTypeFromProps(RegistryConfig.class);
  14. //查询是否有注册中心设置了默认配置isDefault 设置为true的注册中心则为默认注册中心列表,如果没有注册中心设置为默认注册中心,则获取所有未设置默认配置的注册中心列表
  15. List<RegistryConfig> defaultRegistries = configManager.getDefaultRegistries();
  16. //存在注册中心
  17. if (defaultRegistries.size() > 0) {
  18. defaultRegistries
  19. .stream()
  20. //判断当前注册中心是否可以作为配置中心
  21. .filter(this::isUsedRegistryAsConfigCenter)
  22. //将注册中心配置映射转换为配置中心
  23. .map(this::registryAsConfigCenter)
  24. //遍历配置中心流
  25. .forEach(configCenter -> {
  26. if (configManager.getConfigCenter(configCenter.getId()).isPresent()) {
  27. return;
  28. }
  29. //配置管理器中添加配置中心,方便后去读取配置中心的配置信息
  30. configManager.addConfigCenter(configCenter);
  31. logger.info("use registry as config-center: " + configCenter);
  32. });
  33. }
  34. }

13.2.2.1 如何判断当前注册中心是否可以为配置中心

isUsedRegistryAsConfigCenter

  1. private boolean isUsedRegistryAsCenter(RegistryConfig registryConfig, Supplier<Boolean> usedRegistryAsCenter,
  2. String centerType,
  3. Class<?> extensionClass) {
  4. final boolean supported;
  5. //这个useAsConfigCenter参数是来自注册中心的配置 如果配置了这个值则以这个值为准,如果配置了false则这个注册中心不能做为配置中心
  6. Boolean configuredValue = usedRegistryAsCenter.get();
  7. if (configuredValue != null) { // If configured, take its value.
  8. supported = configuredValue.booleanValue();
  9. } else { // Or check the extension existence
  10. //这个逻辑的话是判断下注册中心的协议是否满足要求,我们例子代码中使用的是zookeeper
  11. String protocol = registryConfig.getProtocol();
  12. //这个扩展是否支持的逻辑判断是这样的扫描扩展类 看一下当前扩展类型是否有对应协议的扩展 比如在扩展文件里面这样配置过后是支持的 protocol=xxxImpl
  13. //动态配置的扩展类型为:interface org.apache.dubbo.common.config.configcenter.DynamicConfigurationFactory
  14. //zookeeper协议肯定是支持的因为zookeeper协议实现了这个动态配置工厂 ,这个扩展类型为ZookeeperDynamicConfigurationFactory
  15. //代码位置在dubbo-configcenter-zookeeper包中的org.apache.dubbo.common.config.configcenter.DynamicConfigurationFactory扩展配置中内容为zookeeper=org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfigurationFactory
  16. supported = supportsExtension(extensionClass, protocol);
  17. //配置中心走注册中心会打印一条日志
  18. if (logger.isInfoEnabled()) {
  19. logger.info(format("No value is configured in the registry, the %s extension[name : %s] %s as the %s center"
  20. , extensionClass.getSimpleName(), protocol, supported ? "supports" : "does not support", centerType));
  21. }
  22. }
  23. //配置中心走注册中心会打印一条日志
  24. if (logger.isInfoEnabled()) {
  25. logger.info(format("The registry[%s] will be %s as the %s center", registryConfig,
  26. supported ? "used" : "not used", centerType));
  27. }
  28. return supported;
  29. }

这个扩展是否支持的逻辑判断是这样的扫描扩展类 看一下当前扩展类型是否有对应协议的扩展 比如在扩展文件里面这样配置过后是支持的 protocol=xxxImpl
配置中心的动态配置的扩展类型为 org.apache.dubbo.common.config.configcenter.DynamicConfigurationFactory

zookeeper协议肯定是支持的因为zookeeper协议实现了这个动态配置工厂 ,这个扩展类型为ZookeeperDynamicConfigurationFactory代码位置在dubbo-configcenter-zookeeper包中的org.apache.dubbo.common.config.configcenter.DynamicConfigurationFactory扩展配置中内容为

  1. zookeeper=org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfigurationFactory

13.2.2.2 注册中心配置转配置中心配置

这个逻辑是registryAsConfigCenter方法,我来贴一下代码:

  1. private ConfigCenterConfig registryAsConfigCenter(RegistryConfig registryConfig) {
  2. //注册中心协议获取这里例子中的是zookeeper协议
  3. String protocol = registryConfig.getProtocol();
  4. //注册中心端口 2181
  5. Integer port = registryConfig.getPort();
  6. //在Dubbo中配置信息 很多情况下都以URL形式表示,这里转换后的地址为zookeeper://127.0.0.1:2181
  7. URL url = URL.valueOf(registryConfig.getAddress(), registryConfig.getScopeModel());
  8. //生成当前配置中心的id 封装之后的内容为:
  9. //config-center-zookeeper-127.0.0.1-2181
  10. String id = "config-center-" + protocol + "-" + url.getHost() + "-" + port;
  11. //配置中心配置对象创建
  12. ConfigCenterConfig cc = new ConfigCenterConfig();
  13. //config-center-zookeeper-127.0.0.1-2181
  14. cc.setId(id);
  15. cc.setScopeModel(applicationModel);
  16. if (cc.getParameters() == null) {
  17. cc.setParameters(new HashMap<>());
  18. }
  19. if (CollectionUtils.isNotEmptyMap(registryConfig.getParameters())) {
  20. cc.getParameters().putAll(registryConfig.getParameters()); // copy the parameters
  21. }
  22. cc.getParameters().put(CLIENT_KEY, registryConfig.getClient());
  23. //zookeeper
  24. cc.setProtocol(protocol);
  25. //2181
  26. cc.setPort(port);
  27. if (StringUtils.isNotEmpty(registryConfig.getGroup())) {
  28. cc.setGroup(registryConfig.getGroup());
  29. }
  30. //这个方法转换地址是修复bug用的可以看bug https://github.com/apache/dubbo/issues/6476
  31. cc.setAddress(getRegistryCompatibleAddress(registryConfig));
  32. //注册中心分组做为配置中心命名空间 这里为null
  33. cc.setNamespace(registryConfig.getGroup());
  34. //zk认证信息
  35. cc.setUsername(registryConfig.getUsername());
  36. //zk认证信息
  37. cc.setPassword(registryConfig.getPassword());
  38. if (registryConfig.getTimeout() != null) {
  39. cc.setTimeout(registryConfig.getTimeout().longValue());
  40. }
  41. //这个属性注释中已经建议了已经弃用了默认就是false了
  42. //如果配置中心被赋予最高优先级,它将覆盖所有其他配置,
  43. cc.setHighestPriority(false);
  44. return cc;
  45. }

13.3 配置刷新逻辑

来自AbstractConfig类型的refresh()方法

  1. public void refresh() {
  2. refreshed.set(true);
  3. try {
  4. // check and init before do refresh
  5. //刷新之前执行的逻辑 这里并做什么逻辑
  6. preProcessRefresh();
  7. //获取当前域模型的环境信息对象
  8. Environment environment = getScopeModel().getModelEnvironment();
  9. List<Map<String, String>> configurationMaps = environment.getConfigurationMaps();
  10. // Search props starts with PREFIX in order
  11. String preferredPrefix = null;
  12. for (String prefix : getPrefixes()) {
  13. if (ConfigurationUtils.hasSubProperties(configurationMaps, prefix)) {
  14. preferredPrefix = prefix;
  15. break;
  16. }
  17. }
  18. if (preferredPrefix == null) {
  19. preferredPrefix = getPrefixes().get(0);
  20. }
  21. // Extract sub props (which key was starts with preferredPrefix)
  22. Collection<Map<String, String>> instanceConfigMaps = environment.getConfigurationMaps(this, preferredPrefix);
  23. Map<String, String> subProperties = ConfigurationUtils.getSubProperties(instanceConfigMaps, preferredPrefix);
  24. InmemoryConfiguration subPropsConfiguration = new InmemoryConfiguration(subProperties);
  25. if (logger.isDebugEnabled()) {
  26. String idOrName = "";
  27. if (StringUtils.hasText(this.getId())) {
  28. idOrName = "[id=" + this.getId() + "]";
  29. } else {
  30. String name = ReflectUtils.getProperty(this, "getName");
  31. if (StringUtils.hasText(name)) {
  32. idOrName = "[name=" + name + "]";
  33. }
  34. }
  35. logger.debug("Refreshing " + this.getClass().getSimpleName() + idOrName +
  36. " with prefix [" + preferredPrefix +
  37. "], extracted props: " + subProperties);
  38. }
  39. assignProperties(this, environment, subProperties, subPropsConfiguration);
  40. // process extra refresh of subclass, e.g. refresh method configs
  41. processExtraRefresh(preferredPrefix, subPropsConfiguration);
  42. } catch (Exception e) {
  43. logger.error("Failed to override field value of config bean: " + this, e);
  44. throw new IllegalStateException("Failed to override field value of config bean: " + this, e);
  45. }
  46. postProcessRefresh();
  47. }

在这里插入图片描述

在这里插入图片描述

13.4 配置中心配置大全

ConfigCenterConfig类型
下面配置信息来自官网
dubbo:config-center 配置

配置中心。对应的配置类:org.apache.dubbo.config.ConfigCenterConfig

属性对应URL参数类型是否必填缺省值描述兼容性
protocolconfig.protocolstring可选zookeeper使用哪个配置中心:apollo、zookeeper、nacos等。 以zookeeper为例 1. 指定protocol,则address可以简化为127.0.0.1:2181; 2. 不指定protocol,则address取值为zookeeper://127.0.0.1:21812.7.0+
addressconfig.addressstring必填配置中心地址。 取值参见protocol说明2.7.0+
highest-priorityconfig.highestPriorityboolean可选true来自配置中心的配置项具有最高优先级,即会覆盖本地配置项。2.7.0+
namespaceconfig.namespacestring可选dubbo通常用于多租户隔离,实际含义视具体配置中心而不同。 如: zookeeper - 环境隔离,默认值dubbo; apollo - 区分不同领域的配置集合,默认使用dubboapplication2.7.0+
clusterconfig.clusterstring可选含义视所选定的配置中心而不同。 如Apollo中用来区分不同的配置集群2.7.0+
groupconfig.groupstring可选dubbo含义视所选定的配置中心而不同。 nacos - 隔离不同配置集 zookeeper - 隔离不同配置集2.7.0+
checkconfig.checkboolean可选true当配置中心连接失败时,是否终止应用启动。2.7.0+
config-fileconfig.configFilestring可选dubbo.properties全局级配置文件所映射到的key zookeeper - 默认路径/dubbo/config/dubbo/dubbo.properties apollo - dubbo namespace中的dubbo.properties键2.7.0+
timeoutconfig.timeoutinteger3000ms获取配置的超时时间2.7.0+
usernamestring如果配置中心需要做校验,用户名 Apollo暂未启用2.7.0+
passwordstring如果配置中心需要做校验,密码 Apollo暂未启用2.7.0+
parametersMap<string, string>扩展参数,用来支持不同配置中心的定制化配置参数2.7.0+
include-spring-envboolean可选false使用Spring框架时支持,为true时,会自动从Spring Environment中读取配置。 默认依次读取 key为dubbo.properties的配置 key为dubbo.properties的PropertySource2.7.0+

技术咨询支持,可以扫描微信公众号进行回复咨询
在这里插入图片描述