22-Dubbo3消费者自动感应决策应用级服务发现原理

22.1 简介

这里要说的内容对Dubbo2迁移到Dubbo3的应用比较有帮助,消费者应用级服务发现做了一些自动决策的逻辑来决定当前消费者是应用级发现还是接口级服务发现,这里与前面说的提供者双注册的原理是对等的,提供者默认同时进行应用级注册和接口级注册,消费者对提供者注册的数据来决定使用应用级发现或者接口级发现。这些都是默认的行为,当然对于消费者来说还可以自定义其他的迁移规则,具体的需要我们详细来看逻辑。

如果说对于迁移过程比较感兴趣可以直接去官网看文档相对来说还是比较清晰:https://dubbo.apache.org/zh/docs/migration/migration-service-discovery/

这里再借官网的图来用用,迁移过程主要如下所示:
第一个图是提供者双注册的图:
在这里插入图片描述

第二个图是消费者订阅决策的图:
在这里插入图片描述

第三个图就是精确到消费者订阅的代码层的逻辑了,消费者服务间调用通过一个Invoker类型对象来进行对象,如下图所示消费者代理对象通过创建一个迁移容错的调用器对象来对应用级或者接口级订阅进行适配如下所示
在这里插入图片描述

第二个图和第三个图是重点要关注的这一个文章的内容主要就是说这里的逻辑。

关于代码位置如果不知道是如何调用到这一块逻辑的可以查看博文《21-Dubbo3消费者引用服务入口》

这里直接将代码位置定位到:RegistryProtocol类型的interceptInvoker方法中:
如下所示:

RegistryProtocol类型的interceptInvoker方法

  1. protected <T> Invoker<T> interceptInvoker(ClusterInvoker<T> invoker, URL url, URL consumerUrl) {
  2. //目前存在的扩展类型为RegistryProtocolListener监听器的实现类型MigrationRuleListener
  3. List<RegistryProtocolListener> listeners = findRegistryProtocolListeners(url);
  4. if (CollectionUtils.isEmpty(listeners)) {
  5. return invoker;
  6. }
  7. for (RegistryProtocolListener listener : listeners) {
  8. listener.onRefer(this, invoker, consumerUrl, url);
  9. }
  10. return invoker;
  11. }

该方法尝试加载所有RegistryProtocolListener定义,这些定义通过与定义的交互来控制调用器的行为,然后使用这些侦听器更改MigrationInvoker的状态和行为。当前可用的监听器是MigrationRuleListener,用于通过动态变化的规则控制迁移行为。

22.2 MigrationRuleListener 类型的onRefer方法

直接来看代码:

  1. @Override
  2. public void onRefer(RegistryProtocol registryProtocol, ClusterInvoker<?> invoker, URL consumerUrl, URL registryURL) {
  3. //创建一个对应invoker对象的MigrationRuleHandler类型对象 然后将其存放在缓存Map<MigrationInvoker, MigrationRuleHandler>类型对象handles中
  4. MigrationRuleHandler<?> migrationRuleHandler = handlers.computeIfAbsent((MigrationInvoker<?>) invoker, _key -> {
  5. ((MigrationInvoker<?>) invoker).setMigrationRuleListener(this);
  6. return new MigrationRuleHandler<>((MigrationInvoker<?>) invoker, consumerUrl);
  7. });
  8. //迁移规则执行 rule是封装了迁移的配置规则的信息对应类型MigrationRule类型,在初始化对象的时候进行了配置初始化
  9. migrationRuleHandler.doMigrate(rule);
  10. }

关于这个igrationRule的文可以直接看官方的文档比较详细:地址迁移规则说明

这个迁移规则是为了更细粒度的迁移决策:
相关配置可以参考下面这个样例:

  1. key: 消费者应用名(必填)
  2. step: 状态名(必填)
  3. threshold: 决策阈值(默认1.0
  4. proportion: 灰度比例(默认100
  5. delay: 延迟决策时间(默认0
  6. force: 强制切换(默认 false
  7. interfaces: 接口粒度配置(可选)
  8. - serviceKey: 接口名(接口 + : + 版本号)(必填)
  9. threshold: 决策阈值
  10. proportion: 灰度比例
  11. delay: 延迟决策时间
  12. force: 强制切换
  13. step: 状态名(必填)
  14. - serviceKey: 接口名(接口 + : + 版本号)
  15. step: 状态名
  16. applications: 应用粒度配置(可选)
  17. - serviceKey: 应用名(消费的上游应用名)(必填)
  18. threshold: 决策阈值
  19. proportion: 灰度比例
  20. delay: 延迟决策时间
  21. force: 强制切换
  22. step: 状态名(必填)

不过为了简单起见暂时先不详细说这个配置细节,我们继续往下看

22.3 迁移规则处理器执行迁移规则MigrationRuleHandler类型的doMigrate方法

22.3.1 迁移规则的模版方法:

MigrationRuleHandler类型的doMigrate方法代码如下:

  1. public synchronized void doMigrate(MigrationRule rule) {
  2. //默认情况下这个类型是MigrationInvoker
  3. if (migrationInvoker instanceof ServiceDiscoveryMigrationInvoker) {
  4. refreshInvoker(MigrationStep.FORCE_APPLICATION, 1.0f, rule);
  5. return;
  6. }
  7. //迁移步骤,MigrationStep 一共有3种枚举情况:FORCE_INTERFACE, APPLICATION_FIRST, FORCE_APPLICATION
  8. // initial step : APPLICATION_FIRST
  9. MigrationStep step = MigrationStep.APPLICATION_FIRST;
  10. float threshold = -1f;
  11. try {
  12. //获取配置的类型 默认走APPLICATION_FIRST
  13. step = rule.getStep(consumerURL);
  14. //threshold: 决策阈值(默认-1.0)计算与获取
  15. threshold = rule.getThreshold(consumerURL);
  16. } catch (Exception e) {
  17. logger.error("Failed to get step and threshold info from rule: " + rule, e);
  18. }
  19. //刷洗调用器对象 来进行决策服务发现模式
  20. if (refreshInvoker(step, threshold, rule)) {
  21. // refresh success, update rule
  22. setMigrationRule(rule);
  23. }
  24. }

22.3.2 服务发现调用器对象的选择(决策服务发现策略)

这里就是关键代码了:通过迁移配置和当前提供者注册信息来决定创建什么类型的调用器对象(Invoker)来为后续服务调用做准备

MigrationRuleHandler的refreshInvoker,注意默认情况下这个step参数为APPLICATION_FIRST

  1. private boolean refreshInvoker(MigrationStep step, Float threshold, MigrationRule newRule) {
  2. if (step == null || threshold == null) {
  3. throw new IllegalStateException("Step or threshold of migration rule cannot be null");
  4. }
  5. MigrationStep originStep = currentStep;
  6. if ((currentStep == null || currentStep != step) || !currentThreshold.equals(threshold)) {
  7. boolean success = true;
  8. switch (step) {
  9. case APPLICATION_FIRST:
  10. //默认和配置了应用级优先的服务发现则走这里
  11. migrationInvoker.migrateToApplicationFirstInvoker(newRule);
  12. break;
  13. case FORCE_APPLICATION:
  14. //配置了应用级服务发现则走这里
  15. success = migrationInvoker.migrateToForceApplicationInvoker(newRule);
  16. break;
  17. case FORCE_INTERFACE:
  18. //配置了接口级服务发现则走这里
  19. default:
  20. success = migrationInvoker.migrateToForceInterfaceInvoker(newRule);
  21. }
  22. if (success) {
  23. setCurrentStepAndThreshold(step, threshold);
  24. logger.info("Succeed Migrated to " + step + " mode. Service Name: " + consumerURL.getDisplayServiceKey());
  25. report(step, originStep, "true");
  26. } else {
  27. // migrate failed, do not save new step and rule
  28. logger.warn("Migrate to " + step + " mode failed. Probably not satisfy the threshold you set "
  29. + threshold + ". Please try re-publish configuration if you still after check.");
  30. report(step, originStep, "false");
  31. }
  32. return success;
  33. }
  34. // ignore if step is same with previous, will continue override rule for MigrationInvoker
  35. return true;
  36. }

可以看到这个代码做了判断的逻辑分别对应了Dubbo3消费者迁移的一个状态逻辑:
三种状态分别如下枚举类型:
当前共存在三种状态,

  • FORCE_INTERFACE(强制接口级)
  • APPLICATION_FIRST(应用级优先)
  • FORCE_APPLICATION(强制应用级)

通过代码我们可以看到默认情况下都会走APPLICATION_FIRST(应用级优先)的策略,这里我们也重点来说 APPLICATION_FIRST(应用级优先)来看下Dubbo3是如何决策使用接口级还是应用级发现模型来兼容迁移的服务的。

22.3.3 应用级优先的服务发现规则逻辑

这个规则就是智能选择应用级还是接口级的代码了,对应类型为MigrationInvoker的migrateToApplicationFirstInvoker方法,接下来我们详细看下:

MigrationInvoker类型的migrateToApplicationFirstInvoker方法:

  1. @Override
  2. public void migrateToApplicationFirstInvoker(MigrationRule newRule) {
  3. CountDownLatch latch = new CountDownLatch(0);
  4. //刷新接口级服务发现Invoker
  5. refreshInterfaceInvoker(latch);
  6. //刷新应用级服务发现Invoker类型对象
  7. refreshServiceDiscoveryInvoker(latch);
  8. // directly calculate preferred invoker, will not wait until address notify
  9. // calculation will re-occurred when address notify later
  10. //计算当前使用应用级还是接口级服务发现的Invoker对象
  11. calcPreferredInvoker(newRule);
  12. }

22.3.4 刷新接口级服务发现Invoker

MigrationInvoker类型的refreshInterfaceInvoker方法

  1. protected void refreshInterfaceInvoker(CountDownLatch latch) {
  2. clearListener(invoker);
  3. if (needRefresh(invoker)) {
  4. if (logger.isDebugEnabled()) {
  5. logger.debug("Re-subscribing interface addresses for interface " + type.getName());
  6. }
  7. if (invoker != null) {
  8. invoker.destroy();
  9. }
  10. invoker = registryProtocol.getInvoker(cluster, registry, type, url);
  11. }
  12. setListener(invoker, () -> {
  13. latch.countDown();
  14. if (reportService.hasReporter()) {
  15. reportService.reportConsumptionStatus(
  16. reportService.createConsumptionReport(consumerUrl.getServiceInterface(), consumerUrl.getVersion(), consumerUrl.getGroup(), "interface"));
  17. }
  18. if (step == APPLICATION_FIRST) {
  19. calcPreferredInvoker(rule);
  20. }
  21. });
  22. }

22.3.5 刷新应用级服务发现Invoker类型对象

MigrationInvoker类型的refreshServiceDiscoveryInvoker方法

  1. protected void refreshServiceDiscoveryInvoker(CountDownLatch latch) {
  2. clearListener(serviceDiscoveryInvoker);
  3. if (needRefresh(serviceDiscoveryInvoker)) {
  4. if (logger.isDebugEnabled()) {
  5. logger.debug("Re-subscribing instance addresses, current interface " + type.getName());
  6. }
  7. if (serviceDiscoveryInvoker != null) {
  8. serviceDiscoveryInvoker.destroy();
  9. }
  10. serviceDiscoveryInvoker = registryProtocol.getServiceDiscoveryInvoker(cluster, registry, type, url);
  11. }
  12. setListener(serviceDiscoveryInvoker, () -> {
  13. latch.countDown();
  14. if (reportService.hasReporter()) {
  15. reportService.reportConsumptionStatus(
  16. reportService.createConsumptionReport(consumerUrl.getServiceInterface(), consumerUrl.getVersion(), consumerUrl.getGroup(), "app"));
  17. }
  18. if (step == APPLICATION_FIRST) {
  19. calcPreferredInvoker(rule);
  20. }
  21. });
  22. }

22.3.6 计算当前使用应用级还是接口级服务发现的Invoker对象

MigrationInvoker类型的的calcPreferredInvoker方法

  1. private synchronized void calcPreferredInvoker(MigrationRule migrationRule) {
  2. if (serviceDiscoveryInvoker == null || invoker == null) {
  3. return;
  4. }
  5. Set<MigrationAddressComparator> detectors = ScopeModelUtil.getApplicationModel(consumerUrl == null ? null : consumerUrl.getScopeModel())
  6. .getExtensionLoader(MigrationAddressComparator.class).getSupportedExtensionInstances();
  7. if (CollectionUtils.isNotEmpty(detectors)) {
  8. // pick preferred invoker
  9. // the real invoker choice in invocation will be affected by promotion
  10. if (detectors.stream().allMatch(comparator -> comparator.shouldMigrate(serviceDiscoveryInvoker, invoker, migrationRule))) {
  11. this.currentAvailableInvoker = serviceDiscoveryInvoker;
  12. } else {
  13. this.currentAvailableInvoker = invoker;
  14. }
  15. }
  16. }

currentAvailableInvoker是后期服务调用使用的Invoker对象