-
Notifications
You must be signed in to change notification settings - Fork 17
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
feat: agent pooling #86
Changes from all commits
b043e2c
450ef8b
ebd095b
82436f9
33dcb2f
94ac178
d736d52
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/*! | ||
* Copyright 2019 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. | ||
*/ | ||
|
||
import {Agent as HTTPAgent} from 'http'; | ||
import {Agent as HTTPSAgent} from 'https'; | ||
import {Options} from './'; | ||
|
||
const pool = new Map<string, HTTPAgent>(); | ||
|
||
/** | ||
* Returns a custom request Agent if one is found, otherwise returns undefined | ||
* which will result in the global http(s) Agent being used. | ||
* @private | ||
* @param {string} uri The request uri | ||
* @param {object} reqOpts The request options | ||
* @returns {Agent|undefined} | ||
*/ | ||
export function getAgent(uri: string, reqOpts: Options): HTTPAgent | undefined { | ||
const isHttp = uri.startsWith('http://'); | ||
const proxy = | ||
reqOpts.proxy || | ||
process.env.HTTP_PROXY || | ||
process.env.http_proxy || | ||
process.env.HTTPS_PROXY || | ||
process.env.https_proxy; | ||
|
||
if (proxy) { | ||
// tslint:disable-next-line variable-name | ||
const Agent = isHttp | ||
? require('http-proxy-agent') | ||
: require('https-proxy-agent'); | ||
|
||
return new Agent(proxy) as HTTPAgent; | ||
} | ||
|
||
let key = isHttp ? 'http' : 'https'; | ||
|
||
if (reqOpts.forever) { | ||
key += ':forever'; | ||
|
||
if (!pool.has(key)) { | ||
// tslint:disable-next-line variable-name | ||
const Agent = isHttp ? HTTPAgent : HTTPSAgent; | ||
pool.set(key, new Agent({keepAlive: true})); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if I"m reading this correctly, we only cache the agent if There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm definitely open to that idea, do you have anything specific in mind? |
||
} | ||
} | ||
|
||
return pool.get(key); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/*! | ||
* Copyright 2019 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. | ||
*/ | ||
|
||
import * as assert from 'assert'; | ||
import * as http from 'http'; | ||
import * as https from 'https'; | ||
import * as sinon from 'sinon'; | ||
import {getAgent} from '../src/agents'; | ||
|
||
// tslint:disable-next-line variable-name | ||
const HttpProxyAgent = require('http-proxy-agent'); | ||
// tslint:disable-next-line variable-name | ||
const HttpsProxyAgent = require('https-proxy-agent'); | ||
|
||
describe('agents', () => { | ||
const httpUri = 'http://example.com'; | ||
const httpsUri = 'https://example.com'; | ||
const sandbox = sinon.createSandbox(); | ||
|
||
afterEach(() => sandbox.restore()); | ||
|
||
describe('getAgent', () => { | ||
const defaultOptions = {uri: httpUri}; | ||
|
||
it('should return undefined by default', () => { | ||
const agent = getAgent(httpUri, defaultOptions); | ||
assert.strictEqual(agent, undefined); | ||
}); | ||
|
||
describe('proxy', () => { | ||
const envVars = [ | ||
'http_proxy', | ||
'https_proxy', | ||
'HTTP_PROXY', | ||
'HTTPS_PROXY', | ||
]; | ||
|
||
describe('http', () => { | ||
const uri = httpUri; | ||
const proxy = 'http://hello.there:8080'; | ||
|
||
it('should respect the proxy option', () => { | ||
const options = Object.assign({proxy}, defaultOptions); | ||
const agent = getAgent(uri, options); | ||
assert(agent instanceof HttpProxyAgent); | ||
}); | ||
|
||
envVars.forEach(envVar => { | ||
it(`should respect the ${envVar} env var`, () => { | ||
process.env[envVar] = proxy; | ||
const agent = getAgent(uri, defaultOptions); | ||
assert(agent instanceof HttpProxyAgent); | ||
delete process.env[envVar]; | ||
}); | ||
}); | ||
}); | ||
|
||
describe('https', () => { | ||
const uri = httpsUri; | ||
const proxy = 'https://hello.there:8080'; | ||
|
||
it('should respect the proxy option', () => { | ||
const options = Object.assign({proxy}, defaultOptions); | ||
const agent = getAgent(uri, options); | ||
assert(agent instanceof HttpsProxyAgent); | ||
}); | ||
|
||
envVars.forEach(envVar => { | ||
it(`should respect the ${envVar} env var`, () => { | ||
process.env[envVar] = proxy; | ||
const agent = getAgent(uri, defaultOptions); | ||
assert(agent instanceof HttpsProxyAgent); | ||
delete process.env[envVar]; | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('forever', () => { | ||
describe('http', () => { | ||
const uri = httpUri; | ||
const options = Object.assign({forever: true}, defaultOptions); | ||
|
||
it('should return an http Agent', () => { | ||
const agent = getAgent(uri, options)!; | ||
assert(agent instanceof http.Agent); | ||
}); | ||
|
||
it('should cache the agent', () => { | ||
const agent1 = getAgent(uri, options); | ||
const agent2 = getAgent(uri, options); | ||
assert.strictEqual(agent1, agent2); | ||
}); | ||
}); | ||
|
||
describe('https', () => { | ||
const uri = httpUri; | ||
const options = Object.assign({forever: true}, defaultOptions); | ||
|
||
it('should return an http Agent', () => { | ||
const agent = getAgent(uri, options)!; | ||
assert(agent instanceof http.Agent); | ||
}); | ||
|
||
it('should cache the agent', () => { | ||
const agent1 = getAgent(uri, options); | ||
const agent2 = getAgent(uri, options); | ||
assert.strictEqual(agent1, agent2); | ||
}); | ||
}); | ||
}); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there any reason we couldn't cache the proxy agent?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last time I suggested this, I think you told us node caches requires under the hood 🤣
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, I meant in the Map being used for the
pool
, we return immediately if a proxy is in use.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, we could, but I'm not sure if we need to. My understanding for
keepAlive
(or in request worldforever
) is that it will pool the underlying sockets and re-use them. Currently neither of the proxy agents we use support such a feature so I don't know if pooling the proxy agents makes sense.