Skip to content

Commit

Permalink
feat: warn on too many concurrent requests (#165)
Browse files Browse the repository at this point in the history
* feat: warn on too many concurrent requests

* fix: decrease concurrent request count on error too

* fix: do not use scientific notation, link to multipart GH issue for skipped tests

* feat: expose teeny stats, allow resetting stats, allow reading copy of options

* chore: remove unused proxyquire dev dep
  • Loading branch information
zamnuts committed May 13, 2020
1 parent 2ab8155 commit 88ff2d0
Show file tree
Hide file tree
Showing 4 changed files with 688 additions and 1 deletion.
199 changes: 199 additions & 0 deletions src/TeenyStatistics.ts
@@ -0,0 +1,199 @@
/*!
* Copyright 2020 Google LLC
*
* 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.
*/

export interface TeenyStatisticsOptions {
/**
* A positive number representing when to issue a warning about the number
* of concurrent requests using teeny-request.
* Set to 0 to disable this warning.
* Corresponds to the TEENY_REQUEST_WARN_CONCURRENT_REQUESTS environment
* variable.
*/
concurrentRequests?: number;
}

type TeenyStatisticsConfig = Required<TeenyStatisticsOptions>;

/**
* TeenyStatisticsCounters is distinct from TeenyStatisticsOptions:
* Used when dumping current counters and other internal metrics.
*/
export interface TeenyStatisticsCounters {
concurrentRequests: number;
}

/**
* @class TeenyStatisticsWarning
* @extends Error
* @description While an error, is used for emitting warnings when
* meeting certain configured thresholds.
* @see process.emitWarning
*/
export class TeenyStatisticsWarning extends Error {
static readonly CONCURRENT_REQUESTS = 'ConcurrentRequestsExceededWarning';

public threshold = 0;
public type = '';
public value = 0;

/**
* @param {string} message
*/
constructor(message: string) {
super(message);
this.name = this.constructor.name;
Error.captureStackTrace(this, this.constructor);
}
}

/**
* @class TeenyStatistics
* @description Maintain various statistics internal to teeny-request. Tracking
* is not automatic and must be instrumented within teeny-request.
*/
export class TeenyStatistics {
/**
* @description A default threshold representing when to warn about excessive
* in-flight/concurrent requests.
* @type {number}
* @static
* @readonly
* @default 5000
*/
static readonly DEFAULT_WARN_CONCURRENT_REQUESTS = 5000;

/**
* @type {TeenyStatisticsConfig}
* @private
*/
private _options: TeenyStatisticsConfig;

/**
* @type {number}
* @private
* @default 0
*/
private _concurrentRequests = 0;

/**
* @type {boolean}
* @private
* @default false
*/
private _didConcurrentRequestWarn = false;

/**
* @param {TeenyStatisticsOptions} [opts]
*/
constructor(opts?: TeenyStatisticsOptions) {
this._options = TeenyStatistics._prepareOptions(opts);
}

/**
* Returns a copy of the current options.
* @return {TeenyStatisticsOptions}
*/
getOptions(): TeenyStatisticsOptions {
return Object.assign({}, this._options);
}

/**
* Change configured statistics options. This will not preserve unspecified
* options that were previously specified, i.e. this is a reset of options.
* @param {TeenyStatisticsOptions} [opts]
* @returns {TeenyStatisticsConfig} The previous options.
* @see _prepareOptions
*/
setOptions(opts?: TeenyStatisticsOptions): TeenyStatisticsConfig {
const oldOpts = this._options;
this._options = TeenyStatistics._prepareOptions(opts);
return oldOpts;
}

/**
* @readonly
* @return {TeenyStatisticsCounters}
*/
get counters(): TeenyStatisticsCounters {
return {
concurrentRequests: this._concurrentRequests,
};
}

/**
* @description Should call this right before making a request.
*/
requestStarting(): void {
this._concurrentRequests++;

if (
this._options.concurrentRequests > 0 &&
this._concurrentRequests >= this._options.concurrentRequests &&
!this._didConcurrentRequestWarn
) {
this._didConcurrentRequestWarn = true;
const warning = new TeenyStatisticsWarning(
'Possible excessive concurrent requests detected. ' +
this._concurrentRequests +
' requests in-flight, which exceeds the configured threshold of ' +
this._options.concurrentRequests +
'. Use the TEENY_REQUEST_WARN_CONCURRENT_REQUESTS environment ' +
'variable or the concurrentRequests option of teeny-request to ' +
'increase or disable (0) this warning.'
);
warning.type = TeenyStatisticsWarning.CONCURRENT_REQUESTS;
warning.value = this._concurrentRequests;
warning.threshold = this._options.concurrentRequests;
process.emitWarning(warning);
}
}

/**
* @description When using `requestStarting`, call this after the request
* has finished.
*/
requestFinished() {
// TODO negative?
this._concurrentRequests--;
}

/**
* Configuration Precedence:
* 1. Dependency inversion via defined option.
* 2. Global numeric environment variable.
* 3. Built-in default.
* This will not preserve unspecified options previously specified.
* @param {TeenyStatisticsOptions} [opts]
* @returns {TeenyStatisticsOptions}
* @private
*/
private static _prepareOptions({
concurrentRequests: diConcurrentRequests,
}: TeenyStatisticsOptions = {}): TeenyStatisticsConfig {
let concurrentRequests = this.DEFAULT_WARN_CONCURRENT_REQUESTS;

const envConcurrentRequests = Number(
process.env.TEENY_REQUEST_WARN_CONCURRENT_REQUESTS
);
if (diConcurrentRequests !== undefined) {
concurrentRequests = diConcurrentRequests;
} else if (!Number.isNaN(envConcurrentRequests)) {
concurrentRequests = envConcurrentRequests;
}

return {concurrentRequests};
}
}
21 changes: 21 additions & 0 deletions src/index.ts
Expand Up @@ -20,6 +20,7 @@ import fetch, * as f from 'node-fetch';
import {PassThrough, Readable} from 'stream';
import * as uuid from 'uuid';
import {getAgent} from './agents';
import {TeenyStatistics} from './TeenyStatistics';
// eslint-disable-next-line @typescript-eslint/no-var-requires
const streamEvents = require('stream-events');

Expand Down Expand Up @@ -206,8 +207,10 @@ function teenyRequest(
options.body = createMultipartStream(boundary, multipart);

// Multipart upload
teenyRequest.stats.requestStarting();
fetch(uri, options).then(
res => {
teenyRequest.stats.requestFinished();
const header = res.headers.get('content-type');
const response = fetchToRequestResponse(options, res);
const body = response.body;
Expand Down Expand Up @@ -238,6 +241,7 @@ function teenyRequest(
);
},
err => {
teenyRequest.stats.requestFinished();
callback(err, null!, null);
}
);
Expand All @@ -259,8 +263,11 @@ function teenyRequest(
}
});
options.compress = false;

teenyRequest.stats.requestStarting();
fetch(uri, options).then(
res => {
teenyRequest.stats.requestFinished();
responseStream = res.body;

responseStream.on('error', (err: Error) => {
Expand All @@ -271,6 +278,7 @@ function teenyRequest(
requestStream.emit('response', response);
},
err => {
teenyRequest.stats.requestFinished();
requestStream.emit('error', err);
}
);
Expand All @@ -280,9 +288,12 @@ function teenyRequest(
// stream.
return requestStream as Request;
}

// GET or POST with callback
teenyRequest.stats.requestStarting();
fetch(uri, options).then(
res => {
teenyRequest.stats.requestFinished();
const header = res.headers.get('content-type');
const response = fetchToRequestResponse(options, res);
const body = response.body;
Expand Down Expand Up @@ -319,6 +330,7 @@ function teenyRequest(
);
},
err => {
teenyRequest.stats.requestFinished();
callback(err, null!, null);
}
);
Expand All @@ -335,4 +347,13 @@ teenyRequest.defaults = (defaults: CoreOptions) => {
};
};

/**
* Single instance of an interface for keeping track of things.
*/
teenyRequest.stats = new TeenyStatistics();

teenyRequest.resetStats = (): void => {
teenyRequest.stats = new TeenyStatistics(teenyRequest.stats.getOptions());
};

export {teenyRequest};

0 comments on commit 88ff2d0

Please sign in to comment.