重试

网络通讯天然是不稳定的,因此在分布式系统中,需要有良好的容错设计。无差别重试是非常危险的。当通讯出现问题时,每个请求都重试一次,相当于系统 IO 负载增加了 100%,容易诱发雪崩事故。重试还要考虑错误的原因,如果是无法通过重试解决的问题,那么重试只是浪费资源而已。除此之外,如果重试的接口不具备幂等性,还可能造成数据不一致等问题。

本组件提供了丰富的重试机制,可以满足多种场景的重试需求。

安装

  1. composer require hyperf/retry

Hello World

在需要重试的方法上加入注解 @Retry

  1. /**
  2. * 异常时重试该方法
  3. * @Retry
  4. */
  5. public function foo()
  6. {
  7. // 发起一次远程调用
  8. }

默认的 Retry 策略可以满足大部分日常重试需求,且不会过度重试导致雪崩。

深度定制

本组件通过组合多种重试策略实现了可插拔性。每个策略关注重试过程中的不同侧面,如重试判断、重试间隔,结果处理等。通过调整注解中使用的策略就可以配置出适配任意场景下的重试切面。

建议根据具体业务需要构造自己的注解别名。下面我们演示如何制作最大尝试次数为 3 的新注解。

在默认的 Retry 注解中,您可以通过 @Retry(maxAttempts=3) 来控制最大重试次数。为了演示需要,先假装它不存在。

首先您要新建一个 注解类 并继承 \Hyperf\Retry\Annotations\AbstractRetry

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Annotation;
  4. use Doctrine\Common\Annotations\Annotation\Target;
  5. /**
  6. * @Annotation
  7. * @Target({"METHOD"})
  8. */
  9. class MyRetry extends \Hyperf\Retry\Annotation\AbstractRetry
  10. {
  11. }

根据您的需要,重写 $policies 属性。限制重试次数,需要使用 MaxAttemptsRetryPolicyMaxAttemptsRetryPolicy 还需要一个参数,那就是最大尝试的次数限制,$maxAttempts 。把这两个属性加入上述的类中。

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Annotation;
  4. use Doctrine\Common\Annotations\Annotation\Target;
  5. /**
  6. * @Annotation
  7. * @Target({"METHOD"})
  8. */
  9. class MyRetry extends \Hyperf\Retry\Annotation\AbstractRetry
  10. {
  11. public $policies = [
  12. MaxAttemptsRetryPolicy::class,
  13. ];
  14. public $maxAttempts = 3;
  15. }

现在 @MyRetry 这个注解会导致任何方法都会被循环执行三次,我们还需要加入一个新的策略 ClassifierRetryPolicy 来控制什么样的错误才能被重试。加入 ClassifierRetryPolicy 后默认只会在抛出 Throwable 后重试。

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Annotation;
  4. use Doctrine\Common\Annotations\Annotation\Target;
  5. /**
  6. * @Annotation
  7. * @Target({"METHOD"})
  8. */
  9. class MyRetry extends \Hyperf\Retry\Annotation\AbstractRetry
  10. {
  11. public $policies = [
  12. MaxAttemptsRetryPolicy::class,
  13. ClassifierRetryPolicy::class,
  14. ];
  15. public $maxAttempts = 3;
  16. }

您可以继续完善该注解,直到该注解满足您定制化的需求。例如,配置只重试用户自定义的 TimeoutException , 并使用重试至少休眠 100 毫秒的变长间歇, 方法如下:

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Annotation;
  4. use Doctrine\Common\Annotations\Annotation\Target;
  5. /**
  6. * @Annotation
  7. * @Target({"METHOD"})
  8. */
  9. class MyRetry extends \Hyperf\Retry\Annotation\Retry
  10. {
  11. public $policies = [
  12. MaxAttemptsRetryPolicy::class,
  13. ClassifierRetryPolicy::class,
  14. SleepRetryPolicy::class,
  15. ];
  16. public $maxAttempts = 3;
  17. public $base = 100;
  18. public $strategy = \Hyperf\Retry\BackoffStrategy::class;
  19. public $retryThrowables = [\App\Exception\TimeoutException::class];
  20. }

只要确保该文件被 Hyperf 扫描,就可以在方法中使用 @MyRetry 注解来重试超时错误了。

默认配置

@Retry 的完整注解默认属性如下:

  1. /**
  2. * Array of retry policies. Think of these as stacked middlewares.
  3. * @var string[]
  4. */
  5. public $policies = [
  6. FallbackRetryPolicy::class,
  7. ClassifierRetryPolicy::class,
  8. BudgetRetryPolicy::class,
  9. MaxAttemptsRetryPolicy::class,
  10. SleepRetryPolicy::class,
  11. ];
  12. /**
  13. * The algorithm for retry intervals.
  14. * @var string
  15. */
  16. public $sleepStrategyClass = SleepStrategyInterface::class;
  17. /**
  18. * Max Attampts.
  19. * @var int
  20. */
  21. public $maxAttempts = 10;
  22. /**
  23. * Retry Budget.
  24. * ttl: Seconds of token lifetime.
  25. * minRetriesPerSec: Base retry token generation speed.
  26. * percentCanRetry: Generate new token at this ratio of the request volume.
  27. *
  28. * @var array|RetryBudgetInterface
  29. */
  30. public $retryBudget = [
  31. 'ttl' => 10,
  32. 'minRetriesPerSec' => 1,
  33. 'percentCanRetry' => 0.2,
  34. ];
  35. /**
  36. * Base time inteval (ms) for each try. For backoff strategy this is the interval for the first try
  37. * while for flat strategy this is the interval for every try.
  38. * @var int
  39. */
  40. public $base = 0;
  41. /**
  42. * Configures a Predicate which evaluates if an exception should be retried.
  43. * The Predicate must return true if the exception should be retried, otherwise it must return false.
  44. *
  45. * @var callable|string
  46. */
  47. public $retryOnThrowablePredicate = '';
  48. /**
  49. * Configures a Predicate which evaluates if an result should be retried.
  50. * The Predicate must return true if the result should be retried, otherwise it must return false.
  51. *
  52. * @var callable|string
  53. */
  54. public $retryOnResultPredicate = '';
  55. /**
  56. * Configures a list of Throwable classes that are recorded as a failure and thus are retried.
  57. * Any Throwable matching or inheriting from one of the list will be retried, unless ignored via ignoreExceptions.
  58. *
  59. * Ignoring an Throwable has priority over retrying an exception.
  60. *
  61. * @var array<string|\Throwable>
  62. */
  63. public $retryThrowables = [\Throwable::class];
  64. /**
  65. * Configures a list of error classes that are ignored and thus are not retried.
  66. * Any exception matching or inheriting from one of the list will not be retried, even if marked via retryExceptions.
  67. *
  68. * @var array<string|\Throwable>
  69. */
  70. public $ignoreThrowables = [];
  71. /**
  72. * The fallback callable when all attempts exhausted.
  73. *
  74. * @var callable|string
  75. */
  76. public $fallback = '';

可选策略

最大尝试次数策略 MaxAttemptsRetryPolicy

参数 类型 说明
maxAttempts int 最多尝试的次数

错误分类策略 ClassifierRetryPolicy

通过分类器来判断错误是否可以重试。

参数 类型 说明
ignoreThrowables array 无视的 Throwable 类名 。优先于 retryThrowables
retryThrowables array 需要重试的 Throwable 类名 。优先于 retryOnThrowablePredicate
retryOnThrowablePredicate callable 通过一个函数来判断 Throwable 是否可以重试。如果可以重试,请返回 true, 反之必须返回 false。
retryOnResultPredicate callable 通过一个函数来判断返回值是否可以重试。如果可以重试,请返回 true,反之必须返回 false。

回退策略 FallbackRetryPolicy

重试资源耗尽后执行备选方法。

参数 类型 说明
fallback callable fallback 方法

睡眠策略 SleepRetryPolicy

提供两种重试间歇策略。等长重试间歇(FlatStrategy)和变长重试间歇(BackoffStrategy)。

参数 类型 说明
base int 基础睡眠时间(毫秒)
strategy string 任何实现了 Hyperf\Retry\SleepStrategyInterface 的类名,如 Hyperf\Retry\BackoffStrategy

超时策略 TimeoutRetryPolicy

执行总时长超过时间后退出重试会话。

参数 类型 说明
timeout float 超时时间(秒)

熔断策略 CircuitBreakerRetryPolicy

重试失败退出重试会话后一段时间内直接标记为熔断,不再进行任何尝试。

参数 类型 说明
circuitBreakerState.resetTimeout float 恢复所需时间(秒)

预算策略 BudgetRetryPolicy

每一个 @Retry 注解处会生成一个对应的令牌桶,每当注解方法被调用时,就在令牌桶中放入一个具有过期时间(ttl)的令牌。如果发生可重试的错误,重试前要消耗掉对应的令牌数量(percentCanRetry),否则就不会重试(错误继续向下传递)。比如,当 percentCanRetry=0.2,则每次重试要消耗 5 个令牌。如此,遇到对端宕机时,最多只会造成 20% 的额外重试消耗,对于大多数系统都应该可以接受了。

为了照顾某些使用频率较低的方法,每秒还会生成一定数量的“低保”令牌(minRetriesPerSec),确保系统稳定。

参数 类型 说明
retryBudget.ttl int 恢令牌过期时间(秒)
retryBudget.minRetriesPerSec int 每秒“低保”最少可以重试的次数
retryBudget.percentCanRetry float 重试次数不超过总请求数的百分比

重试组件的令牌桶在 worker 之间不共享,所以最终的重试次数要乘以 worker 数量。

注解别名

因为重试注解配置较为复杂,这里提供了一些预设的别名便于书写。

  • @RetryThrowable 只重试 Throwable。和默认的 @Retry 相同。

  • @RetryFalsy 只重试返回值弱等于 false($result == false)的错误,不重试异常。

  • @BackoffRetryThrowable @RetryThrowable 的变长重试间歇版本,重试间歇至少 100 毫秒。

  • @BackoffRetryFalsy @RetryFalsy 的变长重试间歇版本,重试间歇至少 100 毫秒。

Fluent 链式调用

除了注解方法使用本组件外,您还可以通过常规 PHP 函数使用。

  1. <?php
  2. $result = \Hyperf\Retry\Retry::with(
  3. new \Hyperf\Retry\Policy\ClassifierRetryPolicy(), //默认重试所有Throwable
  4. new \Hyperf\Retry\Policy\MaxAttemptsRetryPolicy(5) //最多重试5次
  5. )->call(function(){
  6. if (rand(1, 100) >= 20){
  7. return true;
  8. }
  9. throw new Exception;
  10. });

为了增强可读性,还可以使用如下流畅写法。

  1. <?php
  2. $result = \Hyperf\Retry\Retry::whenReturns(false) // 当返回false时重试
  3. ->max(3) // 最多3次
  4. ->inSeconds(5) // 最长5秒
  5. ->sleep(1) // 间隔1毫秒
  6. ->fallback(function(){return true;}) // fallback函数
  7. ->call(function(){
  8. if (rand(1, 100) >= 20){
  9. return true;
  10. }
  11. return false;
  12. });