123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- "use strict";
- /*!
- * Copyright 2017 Google Inc. All Rights Reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ExponentialBackoff = exports.delayExecution = exports.MAX_RETRY_ATTEMPTS = exports.DEFAULT_BACKOFF_FACTOR = exports.DEFAULT_BACKOFF_MAX_DELAY_MS = exports.DEFAULT_BACKOFF_INITIAL_DELAY_MS = void 0;
- exports.setTimeoutHandler = setTimeoutHandler;
- const logger_1 = require("./logger");
- /*
- * @module firestore/backoff
- * @private
- * @internal
- *
- * Contains backoff logic to facilitate RPC error handling. This class derives
- * its implementation from the Firestore Mobile Web Client.
- *
- * @see https://github.com/firebase/firebase-js-sdk/blob/master/packages/firestore/src/remote/backoff.ts
- */
- /*!
- * The default initial backoff time in milliseconds after an error.
- * Set to 1s according to https://cloud.google.com/apis/design/errors.
- */
- exports.DEFAULT_BACKOFF_INITIAL_DELAY_MS = 1000;
- /*!
- * The default maximum backoff time in milliseconds.
- */
- exports.DEFAULT_BACKOFF_MAX_DELAY_MS = 60 * 1000;
- /*!
- * The default factor to increase the backup by after each failed attempt.
- */
- exports.DEFAULT_BACKOFF_FACTOR = 1.5;
- /*!
- * The default jitter to distribute the backoff attempts by (0 means no
- * randomization, 1.0 means +/-50% randomization).
- */
- const DEFAULT_JITTER_FACTOR = 1.0;
- /*!
- * The maximum number of retries that will be attempted by backoff
- * before stopping all retry attempts.
- */
- exports.MAX_RETRY_ATTEMPTS = 10;
- /*!
- * The timeout handler used by `ExponentialBackoff` and `BulkWriter`.
- */
- exports.delayExecution = setTimeout;
- /**
- * Allows overriding of the timeout handler used by the exponential backoff
- * implementation. If not invoked, we default to `setTimeout()`.
- *
- * Used only in testing.
- *
- * @private
- * @internal
- * @param {function} handler A handler than matches the API of `setTimeout()`.
- */
- function setTimeoutHandler(handler) {
- exports.delayExecution = (f, ms) => {
- handler(f, ms);
- const timeout = {
- hasRef: () => {
- throw new Error('For tests only. Not Implemented');
- },
- ref: () => {
- throw new Error('For tests only. Not Implemented');
- },
- refresh: () => {
- throw new Error('For tests only. Not Implemented');
- },
- unref: () => {
- throw new Error('For tests only. Not Implemented');
- },
- [Symbol.toPrimitive]: () => {
- throw new Error('For tests only. Not Implemented');
- },
- };
- // `NodeJS.Timeout` type signature change:
- // https://github.com/DefinitelyTyped/DefinitelyTyped/pull/66176/files#diff-e838d0ace9cd5f6516bacfbd3ad00d02cd37bd60f9993ce6223f52d889a1fdbaR122-R126
- //
- // Adding `[Symbol.dispose](): void;` cannot be done on older versions of
- // NodeJS. So we simply cast to `NodeJS.Timeout`.
- return timeout;
- };
- }
- /**
- * A helper for running delayed tasks following an exponential backoff curve
- * between attempts.
- *
- * Each delay is made up of a "base" delay which follows the exponential
- * backoff curve, and a "jitter" (+/- 50% by default) that is calculated and
- * added to the base delay. This prevents clients from accidentally
- * synchronizing their delays causing spikes of load to the backend.
- *
- * @private
- * @internal
- */
- class ExponentialBackoff {
- constructor(options = {}) {
- /**
- * The number of retries that has been attempted.
- *
- * @private
- * @internal
- */
- this._retryCount = 0;
- /**
- * The backoff delay of the current attempt.
- *
- * @private
- * @internal
- */
- this.currentBaseMs = 0;
- /**
- * Whether we are currently waiting for backoff to complete.
- *
- * @private
- * @internal
- */
- this.awaitingBackoffCompletion = false;
- this.initialDelayMs =
- options.initialDelayMs !== undefined
- ? options.initialDelayMs
- : exports.DEFAULT_BACKOFF_INITIAL_DELAY_MS;
- this.backoffFactor =
- options.backoffFactor !== undefined
- ? options.backoffFactor
- : exports.DEFAULT_BACKOFF_FACTOR;
- this.maxDelayMs =
- options.maxDelayMs !== undefined
- ? options.maxDelayMs
- : exports.DEFAULT_BACKOFF_MAX_DELAY_MS;
- this.jitterFactor =
- options.jitterFactor !== undefined
- ? options.jitterFactor
- : DEFAULT_JITTER_FACTOR;
- }
- /**
- * Resets the backoff delay and retry count.
- *
- * The very next backoffAndWait() will have no delay. If it is called again
- * (i.e. due to an error), initialDelayMs (plus jitter) will be used, and
- * subsequent ones will increase according to the backoffFactor.
- *
- * @private
- * @internal
- */
- reset() {
- this._retryCount = 0;
- this.currentBaseMs = 0;
- }
- /**
- * Resets the backoff delay to the maximum delay (e.g. for use after a
- * RESOURCE_EXHAUSTED error).
- *
- * @private
- * @internal
- */
- resetToMax() {
- this.currentBaseMs = this.maxDelayMs;
- }
- /**
- * Returns a promise that resolves after currentDelayMs, and increases the
- * delay for any subsequent attempts.
- *
- * @return A Promise that resolves when the current delay elapsed.
- * @private
- * @internal
- */
- backoffAndWait() {
- if (this.awaitingBackoffCompletion) {
- return Promise.reject(new Error('A backoff operation is already in progress.'));
- }
- if (this.retryCount > exports.MAX_RETRY_ATTEMPTS) {
- return Promise.reject(new Error('Exceeded maximum number of retries allowed.'));
- }
- // First schedule using the current base (which may be 0 and should be
- // honored as such).
- const delayWithJitterMs = this.currentBaseMs + this.jitterDelayMs();
- if (this.currentBaseMs > 0) {
- (0, logger_1.logger)('ExponentialBackoff.backoffAndWait', null, `Backing off for ${delayWithJitterMs} ms ` +
- `(base delay: ${this.currentBaseMs} ms)`);
- }
- // Apply backoff factor to determine next delay and ensure it is within
- // bounds.
- this.currentBaseMs *= this.backoffFactor;
- this.currentBaseMs = Math.max(this.currentBaseMs, this.initialDelayMs);
- this.currentBaseMs = Math.min(this.currentBaseMs, this.maxDelayMs);
- this._retryCount += 1;
- return new Promise(resolve => {
- this.awaitingBackoffCompletion = true;
- (0, exports.delayExecution)(() => {
- this.awaitingBackoffCompletion = false;
- resolve();
- }, delayWithJitterMs);
- });
- }
- // Visible for testing.
- get retryCount() {
- return this._retryCount;
- }
- /**
- * Returns a randomized "jitter" delay based on the current base and jitter
- * factor.
- *
- * @returns {number} The jitter to apply based on the current delay.
- * @private
- * @internal
- */
- jitterDelayMs() {
- return (Math.random() - 0.5) * this.jitterFactor * this.currentBaseMs;
- }
- }
- exports.ExponentialBackoff = ExponentialBackoff;
- //# sourceMappingURL=backoff.js.map
|