Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: implement retry strategy for grpc requests #1272

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 30 additions & 12 deletions lib/common/grpc-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ var grpc = require('grpc');
var is = require('is');
var nodeutil = require('util');
var path = require('path');
var retryRequest = require('retry-request');

/**
* @type {module:common/service}
Expand Down Expand Up @@ -109,7 +110,8 @@ var HTTP_ERROR_CODE_MAP = {

14: {
code: 503,
message: 'Service Unavailable'
message: 'Service Unavailable',
shouldRetry: true
},

15: {
Expand All @@ -123,6 +125,12 @@ var HTTP_ERROR_CODE_MAP = {
}
};

/**
* @const {number} - Allowed number of a request retries
* @private
*/
var MAX_RETRIES = 2;

/**
* Service is a base class, meant to be inherited from by a "service," like
* BigQuery or Storage.
Expand Down Expand Up @@ -241,19 +249,29 @@ GrpcService.prototype.request = function(protoOpts, reqOpts, callback) {
grpcOpts.deadline = new Date(Date.now() + protoOpts.timeout);
}

service[protoOpts.method](reqOpts, function(err, resp) {
if (err) {
if (HTTP_ERROR_CODE_MAP[err.code]) {
var httpError = HTTP_ERROR_CODE_MAP[err.code];
err.code = httpError.code;
}
var attempts = 0;

callback(err);
return;
}
(function makeRequest() {
service[protoOpts.method](reqOpts, function(err, resp) {
if (err) {
if (HTTP_ERROR_CODE_MAP[err.code]) {
var httpError = HTTP_ERROR_CODE_MAP[err.code];

if (httpError.shouldRetry && attempts++ < MAX_RETRIES) {
setTimeout(makeRequest, retryRequest.getNextRetryDelay(attempts));
return;
}

err.code = httpError.code;
}

callback(err);
return;
}

callback(null, resp);
}, null, grpcOpts);
callback(null, resp);
}, null, grpcOpts);
}());
};

/**
Expand Down
64 changes: 64 additions & 0 deletions test/common/grpc-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,70 @@ describe('GrpcService', function() {
});
});
});

describe('retrying requests', function() {
var UNAVAILABLE = 14;
var _setTimeout;

before(function() {
_setTimeout = global.setTimeout;
global.setTimeout = function(func) {
func();
};
});

after(function() {
global.setTimeout = _setTimeout;
});

it('should retry if the service is unavailable', function(done) {
var callCount = 0;

grpcService.protos.Service = {
service: function() {
return {
method: function(reqOpts, callback) {
var err = null;

if (++callCount < 2) {
err = { code: UNAVAILABLE };
}

callback(err);
}
};
}
};

grpcService.request(PROTO_OPTS, REQ_OPTS, function(err) {
assert.ifError(err);
assert.strictEqual(callCount, 2);
done();
});
});

it('should retry a maximum of 2 times before failing', function(done) {
var callCount = 0;

grpcService.protos.Service = {
service: function() {
return {
method: function(reqOpts, callback) {
callCount += 1;
callback({ code: UNAVAILABLE });
}
};
}
};

grpcService.request(PROTO_OPTS, REQ_OPTS, function(err) {
assert.strictEqual(err.code, 503);
// 1 for the original request + 2 retries
assert.strictEqual(callCount, 3);
done();
});
});
});
});

describe('convertValue_', function() {
Expand Down