RetryMiddleware.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <?php
  2. namespace Aws;
  3. use Aws\Exception\AwsException;
  4. use Aws\Retry\RetryHelperTrait;
  5. use GuzzleHttp\Exception\RequestException;
  6. use Psr\Http\Message\RequestInterface;
  7. use GuzzleHttp\Promise\PromiseInterface;
  8. use GuzzleHttp\Promise;
  9. /**
  10. * Middleware that retries failures. V1 implemention that supports 'legacy' mode.
  11. *
  12. * @internal
  13. */
  14. class RetryMiddleware
  15. {
  16. use RetryHelperTrait;
  17. private static $retryStatusCodes = [
  18. 500 => true,
  19. 502 => true,
  20. 503 => true,
  21. 504 => true
  22. ];
  23. private static $retryCodes = [
  24. // Throttling error
  25. 'RequestLimitExceeded' => true,
  26. 'Throttling' => true,
  27. 'ThrottlingException' => true,
  28. 'ThrottledException' => true,
  29. 'ProvisionedThroughputExceededException' => true,
  30. 'RequestThrottled' => true,
  31. 'BandwidthLimitExceeded' => true,
  32. 'RequestThrottledException' => true,
  33. 'TooManyRequestsException' => true,
  34. 'IDPCommunicationError' => true,
  35. 'EC2ThrottledException' => true,
  36. ];
  37. private $decider;
  38. private $delay;
  39. private $nextHandler;
  40. private $collectStats;
  41. public function __construct(
  42. callable $decider,
  43. callable $delay,
  44. callable $nextHandler,
  45. $collectStats = false
  46. ) {
  47. $this->decider = $decider;
  48. $this->delay = $delay;
  49. $this->nextHandler = $nextHandler;
  50. $this->collectStats = (bool) $collectStats;
  51. }
  52. /**
  53. * Creates a default AWS retry decider function.
  54. *
  55. * The optional $extraConfig parameter is an associative array
  56. * that specifies additional retry conditions on top of the ones specified
  57. * by default by the Aws\RetryMiddleware class, with the following keys:
  58. *
  59. * - errorCodes: (string[]) An indexed array of AWS exception codes to retry.
  60. * Optional.
  61. * - statusCodes: (int[]) An indexed array of HTTP status codes to retry.
  62. * Optional.
  63. * - curlErrors: (int[]) An indexed array of Curl error codes to retry. Note
  64. * these should be valid Curl constants. Optional.
  65. *
  66. * @param int $maxRetries
  67. * @param array $extraConfig
  68. * @return callable
  69. */
  70. public static function createDefaultDecider(
  71. $maxRetries = 3,
  72. $extraConfig = []
  73. ) {
  74. $retryCurlErrors = [];
  75. if (extension_loaded('curl')) {
  76. $retryCurlErrors[CURLE_RECV_ERROR] = true;
  77. }
  78. return function (
  79. $retries,
  80. CommandInterface $command,
  81. RequestInterface $request,
  82. ResultInterface $result = null,
  83. $error = null
  84. ) use ($maxRetries, $retryCurlErrors, $extraConfig) {
  85. // Allow command-level options to override this value
  86. $maxRetries = null !== $command['@retries'] ?
  87. $command['@retries']
  88. : $maxRetries;
  89. $isRetryable = self::isRetryable(
  90. $result,
  91. $error,
  92. $retryCurlErrors,
  93. $extraConfig
  94. );
  95. if ($retries >= $maxRetries) {
  96. if (!empty($error)
  97. && $error instanceof AwsException
  98. && $isRetryable
  99. ) {
  100. $error->setMaxRetriesExceeded();
  101. }
  102. return false;
  103. }
  104. return $isRetryable;
  105. };
  106. }
  107. private static function isRetryable(
  108. $result,
  109. $error,
  110. $retryCurlErrors,
  111. $extraConfig = []
  112. ) {
  113. $errorCodes = self::$retryCodes;
  114. if (!empty($extraConfig['error_codes'])
  115. && is_array($extraConfig['error_codes'])
  116. ) {
  117. foreach($extraConfig['error_codes'] as $code) {
  118. $errorCodes[$code] = true;
  119. }
  120. }
  121. $statusCodes = self::$retryStatusCodes;
  122. if (!empty($extraConfig['status_codes'])
  123. && is_array($extraConfig['status_codes'])
  124. ) {
  125. foreach($extraConfig['status_codes'] as $code) {
  126. $statusCodes[$code] = true;
  127. }
  128. }
  129. if (!empty($extraConfig['curl_errors'])
  130. && is_array($extraConfig['curl_errors'])
  131. ) {
  132. foreach($extraConfig['curl_errors'] as $code) {
  133. $retryCurlErrors[$code] = true;
  134. }
  135. }
  136. if (!$error) {
  137. if (!isset($result['@metadata']['statusCode'])) {
  138. return false;
  139. }
  140. return isset($statusCodes[$result['@metadata']['statusCode']]);
  141. }
  142. if (!($error instanceof AwsException)) {
  143. return false;
  144. }
  145. if ($error->isConnectionError()) {
  146. return true;
  147. }
  148. if (isset($errorCodes[$error->getAwsErrorCode()])) {
  149. return true;
  150. }
  151. if (isset($statusCodes[$error->getStatusCode()])) {
  152. return true;
  153. }
  154. if (count($retryCurlErrors)
  155. && ($previous = $error->getPrevious())
  156. && $previous instanceof RequestException
  157. ) {
  158. if (method_exists($previous, 'getHandlerContext')) {
  159. $context = $previous->getHandlerContext();
  160. return !empty($context['errno'])
  161. && isset($retryCurlErrors[$context['errno']]);
  162. }
  163. $message = $previous->getMessage();
  164. foreach (array_keys($retryCurlErrors) as $curlError) {
  165. if (strpos($message, 'cURL error ' . $curlError . ':') === 0) {
  166. return true;
  167. }
  168. }
  169. }
  170. return false;
  171. }
  172. /**
  173. * Delay function that calculates an exponential delay.
  174. *
  175. * Exponential backoff with jitter, 100ms base, 20 sec ceiling
  176. *
  177. * @param $retries - The number of retries that have already been attempted
  178. *
  179. * @return int
  180. *
  181. * @link https://aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/
  182. */
  183. public static function exponentialDelay($retries)
  184. {
  185. return mt_rand(0, (int) min(20000, (int) pow(2, $retries) * 100));
  186. }
  187. /**
  188. * @param CommandInterface $command
  189. * @param RequestInterface $request
  190. *
  191. * @return PromiseInterface
  192. */
  193. public function __invoke(
  194. CommandInterface $command,
  195. RequestInterface $request = null
  196. ) {
  197. $retries = 0;
  198. $requestStats = [];
  199. $monitoringEvents = [];
  200. $handler = $this->nextHandler;
  201. $decider = $this->decider;
  202. $delay = $this->delay;
  203. $request = $this->addRetryHeader($request, 0, 0);
  204. $g = function ($value) use (
  205. $handler,
  206. $decider,
  207. $delay,
  208. $command,
  209. $request,
  210. &$retries,
  211. &$requestStats,
  212. &$monitoringEvents,
  213. &$g
  214. ) {
  215. $this->updateHttpStats($value, $requestStats);
  216. if ($value instanceof MonitoringEventsInterface) {
  217. $reversedEvents = array_reverse($monitoringEvents);
  218. $monitoringEvents = array_merge($monitoringEvents, $value->getMonitoringEvents());
  219. foreach ($reversedEvents as $event) {
  220. $value->prependMonitoringEvent($event);
  221. }
  222. }
  223. if ($value instanceof \Exception || $value instanceof \Throwable) {
  224. if (!$decider($retries, $command, $request, null, $value)) {
  225. return Promise\Create::rejectionFor(
  226. $this->bindStatsToReturn($value, $requestStats)
  227. );
  228. }
  229. } elseif ($value instanceof ResultInterface
  230. && !$decider($retries, $command, $request, $value, null)
  231. ) {
  232. return $this->bindStatsToReturn($value, $requestStats);
  233. }
  234. // Delay fn is called with 0, 1, ... so increment after the call.
  235. $delayBy = $delay($retries++);
  236. $command['@http']['delay'] = $delayBy;
  237. if ($this->collectStats) {
  238. $this->updateStats($retries, $delayBy, $requestStats);
  239. }
  240. // Update retry header with retry count and delayBy
  241. $request = $this->addRetryHeader($request, $retries, $delayBy);
  242. return $handler($command, $request)->then($g, $g);
  243. };
  244. return $handler($command, $request)->then($g, $g);
  245. }
  246. }