Détail du package

bluebird-retry

demmer216.7kMIT0.11.0

utility for retrying a bluebird promise until it succeeds

bluebird, promise, retry

readme

bluebird-retry Build Status: Linux

This very simple library provides a function for retrying an asynchronous operation until it succeeds. An "asynchronous operation" is embodied by a function that returns a promise or returns synchronously.

It supports regular intervals and exponential backoff with a configurable limit, as well as an overall timeout for the operation that limits the number of retries.

The bluebird library supplies the promise implementation.

Basic Usage

var Promise = require('bluebird');
var retry = require('bluebird-retry');

var count = 0;
function myfunc() {
    console.log('myfunc called ' + (++count) + ' times');
    if (count < 3) {
        return Promise.reject(new Error('fail the first two times'));
    } else {
        return Promise.resolve('succeed the third time');
    }
}

retry(myfunc)
.then(function(result) {
    console.log(result);
});

This will display:

myfunc called 1 times
myfunc called 2 times
myfunc called 3 times
succeed the third time

The function is executed by Promise.attempt, so it can return a simple value or a Promise that resolves successfully to indicate success, or it can throw an Error or a rejected promise to indicate failure.

Note that the rejection messages from the first two failed calls were absorbed by retry.

Options

The maximum number of retries and controls for the interval between retries can be specified via the options parameter:

  • interval initial wait time between attempts in milliseconds (default 1000)
  • backoff if specified, increase interval by this factor between attempts
  • max_interval if specified, maximum amount that interval can increase to
  • timeout total time to wait for the operation to succeed in milliseconds
  • max_tries maximum number of attempts to try the operation (default 5)
  • predicate to be used as bluebird's Filtered Catch. func will be retried only if the predicate expectation is met, it will otherwise fail immediately.
  • throw_original to throw the last thrown error instance rather then a timeout error.
  • context if specified, is used as the this context when calling func
  • args if specified, is passed as arguments to func

Note that timeout does not actually set a real timeout for the operation, but actually computes a maximum number of attempts based on the interval options. If both timeout and max_tries are specified, then whichever limit comes first applies. If max_tries is set to -1 and no timeout is specified, retry will be performed forever.

For example:

function logFail() {
    console.log(new Date().toISOString());
    throw new Error('bail');
}

retry(logFail, { max_tries: 4, interval: 500 });

Will display:

2014-05-29T23:16:28.941Z
2014-05-29T23:16:29.445Z
2014-05-29T23:16:29.946Z
2014-05-29T23:16:30.447Z
Error: operation timed out

And

retry(logFail, { timeout: 10000, interval: 1000, backoff: 2 });

Will display:

2014-05-29T23:17:29.655Z
2014-05-29T23:17:30.658Z
2014-05-29T23:17:32.660Z
2014-05-29T23:17:36.661Z
Error: operation timed out

Stopping

The library also supports stopping the retry loop before the timeout occurs by throwing a new instance of retry.StopError from within the called function.

For example:

var retry = require('bluebird-retry');
var i = 0;
var err;
var swing = function() {
    i++;
    console.log('strike ' + i);
    if (i == 3) {
        throw new retry.StopError('yer out');
    }
    throw new Error('still up at bat');
};

retry(swing, {timeout: 10000})
.caught(function(e) {
    console.log(e.message)
});

Will display:

strike 1
strike 2
strike 3
yer out

The StopError constructor accepts one argument. If it is invoked with an instance of Error, then the promise is rejected with that error argument. Otherwise the promise is rejected with the StopError itself.

changelog

Change Log

This file documents all notable changes to bluebird-retry. The release numbering uses semantic versioning.

0.11.0

Released 2017-06-13

  • @amir-arad removed special browserify entry from package.json

0.10.1

Released 2016-11-26

  • Fixed the readme to not suggest using the discouraged .done chain function.

0.10.0

Released 2016-11-26

  • Added optional context and args options that are used when invoking the retry function.

0.9.0

Released 2016-11-23

  • @dustinblackman added a throw_original option so that timeout errors throw the original error instead of wrapping it in a new Error.

0.8.0

Released 2016-06-27

  • Make sure to stringify a non-error so we get information on the failure instead of the not very helpful [object Object] default toString of a javascript object.

0.7.0

Released 2016-06-16

  • Added support for a predicate option that uses bluebird's filtered catch so that only errors matching a particular type or predicate function cause the operation to retry.
  • Reworked the error handling to handle the case where the function rejects with a non-Error object and to no longer replace the timeout error stack with the original error's stack.

0.6.1

Released 2016-04-17

  • Updated links in the package and README to reflect the new repository location.

0.6.0

Released 2016-03-28

  • Changed bluebird to be a peerDependency instead of a regular dependency. This enables support for bluebird 3.
  • Replaced use of .try and .catch functions with the .attempt and .caught aliases to support older browsers.
  • Switched the build chain to use gulp and browserify instead of grunt.

0.5.3

Released 2016-01-14

  • Fixed the example in the README.

0.5.2

Released 2015-10-16

  • Fixed a typo in the README.

0.5.1

Released 2015-08-27

  • Fixed the README example.
  • Moved the dependency on underscore into devDependencies.

0.5.0

Released 2015-07-28

  • Reworked the cancellation API to use a StopError subclass instead of a callback function.

0.4.0

Released 2015-04-19

  • Updated the dependencies to be more permissive, supporting newer versions of bluebird.
  • Updated README.

0.3.2

Released 2015-03-18

  • Set the retry interval based on whether the option is a number, not whether it is truthy to support retry intervals of 0.

0.3.1

Released 2015-01-10

  • Propagate the error stack on the last retry failure so it is visible outside the try block.

0.3.0

Released 2015-01-02

  • Updated the browser build.

0.2.0

Released 2014-11-09

  • Rework the build to use grunt-dry.

0.1.0

Released 2014-11-06

  • Initial release