connection_pool.js
17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
'use strict';
const Denque = require('denque');
const EventEmitter = require('events').EventEmitter;
const Logger = require('../core/connection/logger');
const makeCounter = require('../utils').makeCounter;
const MongoError = require('../core/error').MongoError;
const Connection = require('./connection').Connection;
const eachAsync = require('../core/utils').eachAsync;
const connect = require('../core/connection/connect');
const relayEvents = require('../core/utils').relayEvents;
const errors = require('./errors');
const PoolClosedError = errors.PoolClosedError;
const WaitQueueTimeoutError = errors.WaitQueueTimeoutError;
const events = require('./events');
const ConnectionPoolCreatedEvent = events.ConnectionPoolCreatedEvent;
const ConnectionPoolClosedEvent = events.ConnectionPoolClosedEvent;
const ConnectionCreatedEvent = events.ConnectionCreatedEvent;
const ConnectionReadyEvent = events.ConnectionReadyEvent;
const ConnectionClosedEvent = events.ConnectionClosedEvent;
const ConnectionCheckOutStartedEvent = events.ConnectionCheckOutStartedEvent;
const ConnectionCheckOutFailedEvent = events.ConnectionCheckOutFailedEvent;
const ConnectionCheckedOutEvent = events.ConnectionCheckedOutEvent;
const ConnectionCheckedInEvent = events.ConnectionCheckedInEvent;
const ConnectionPoolClearedEvent = events.ConnectionPoolClearedEvent;
const kLogger = Symbol('logger');
const kConnections = Symbol('connections');
const kPermits = Symbol('permits');
const kMinPoolSizeTimer = Symbol('minPoolSizeTimer');
const kGeneration = Symbol('generation');
const kConnectionCounter = Symbol('connectionCounter');
const kCancellationToken = Symbol('cancellationToken');
const kWaitQueue = Symbol('waitQueue');
const kCancelled = Symbol('cancelled');
const VALID_POOL_OPTIONS = new Set([
// `connect` options
'ssl',
'bson',
'connectionType',
'monitorCommands',
'socketTimeout',
'credentials',
'compression',
// node Net options
'host',
'port',
'localAddress',
'localPort',
'family',
'hints',
'lookup',
'path',
// node TLS options
'ca',
'cert',
'sigalgs',
'ciphers',
'clientCertEngine',
'crl',
'dhparam',
'ecdhCurve',
'honorCipherOrder',
'key',
'privateKeyEngine',
'privateKeyIdentifier',
'maxVersion',
'minVersion',
'passphrase',
'pfx',
'secureOptions',
'secureProtocol',
'sessionIdContext',
'allowHalfOpen',
'rejectUnauthorized',
'pskCallback',
'ALPNProtocols',
'servername',
'checkServerIdentity',
'session',
'minDHSize',
'secureContext',
// spec options
'maxPoolSize',
'minPoolSize',
'maxIdleTimeMS',
'waitQueueTimeoutMS'
]);
function resolveOptions(options, defaults) {
const newOptions = Array.from(VALID_POOL_OPTIONS).reduce((obj, key) => {
if (Object.prototype.hasOwnProperty.call(options, key)) {
obj[key] = options[key];
}
return obj;
}, {});
return Object.freeze(Object.assign({}, defaults, newOptions));
}
/**
* Configuration options for drivers wrapping the node driver.
*
* @typedef {Object} ConnectionPoolOptions
* @property
* @property {string} [host] The host to connect to
* @property {number} [port] The port to connect to
* @property {bson} [bson] The BSON instance to use for new connections
* @property {number} [maxPoolSize=100] The maximum number of connections that may be associated with a pool at a given time. This includes in use and available connections.
* @property {number} [minPoolSize=0] The minimum number of connections that MUST exist at any moment in a single connection pool.
* @property {number} [maxIdleTimeMS] The maximum amount of time a connection should remain idle in the connection pool before being marked idle.
* @property {number} [waitQueueTimeoutMS=0] The maximum amount of time operation execution should wait for a connection to become available. The default is 0 which means there is no limit.
*/
/**
* A pool of connections which dynamically resizes, and emit events related to pool activity
*
* @property {number} generation An integer representing the SDAM generation of the pool
* @property {number} totalConnectionCount An integer expressing how many total connections (active + in use) the pool currently has
* @property {number} availableConnectionCount An integer expressing how many connections are currently available in the pool.
* @property {string} address The address of the endpoint the pool is connected to
*
* @emits ConnectionPool#connectionPoolCreated
* @emits ConnectionPool#connectionPoolClosed
* @emits ConnectionPool#connectionCreated
* @emits ConnectionPool#connectionReady
* @emits ConnectionPool#connectionClosed
* @emits ConnectionPool#connectionCheckOutStarted
* @emits ConnectionPool#connectionCheckOutFailed
* @emits ConnectionPool#connectionCheckedOut
* @emits ConnectionPool#connectionCheckedIn
* @emits ConnectionPool#connectionPoolCleared
*/
class ConnectionPool extends EventEmitter {
/**
* Create a new Connection Pool
*
* @param {ConnectionPoolOptions} options
*/
constructor(options) {
super();
options = options || {};
this.closed = false;
this.options = resolveOptions(options, {
connectionType: Connection,
maxPoolSize: typeof options.maxPoolSize === 'number' ? options.maxPoolSize : 100,
minPoolSize: typeof options.minPoolSize === 'number' ? options.minPoolSize : 0,
maxIdleTimeMS: typeof options.maxIdleTimeMS === 'number' ? options.maxIdleTimeMS : 0,
waitQueueTimeoutMS:
typeof options.waitQueueTimeoutMS === 'number' ? options.waitQueueTimeoutMS : 0,
autoEncrypter: options.autoEncrypter,
metadata: options.metadata
});
if (options.minSize > options.maxSize) {
throw new TypeError(
'Connection pool minimum size must not be greater than maxiumum pool size'
);
}
this[kLogger] = Logger('ConnectionPool', options);
this[kConnections] = new Denque();
this[kPermits] = this.options.maxPoolSize;
this[kMinPoolSizeTimer] = undefined;
this[kGeneration] = 0;
this[kConnectionCounter] = makeCounter(1);
this[kCancellationToken] = new EventEmitter();
this[kCancellationToken].setMaxListeners(Infinity);
this[kWaitQueue] = new Denque();
process.nextTick(() => {
this.emit('connectionPoolCreated', new ConnectionPoolCreatedEvent(this));
ensureMinPoolSize(this);
});
}
get address() {
return `${this.options.host}:${this.options.port}`;
}
get generation() {
return this[kGeneration];
}
get totalConnectionCount() {
return this[kConnections].length + (this.options.maxPoolSize - this[kPermits]);
}
get availableConnectionCount() {
return this[kConnections].length;
}
get waitQueueSize() {
return this[kWaitQueue].length;
}
/**
* Check a connection out of this pool. The connection will continue to be tracked, but no reference to it
* will be held by the pool. This means that if a connection is checked out it MUST be checked back in or
* explicitly destroyed by the new owner.
*
* @param {ConnectionPool~checkOutCallback} callback
*/
checkOut(callback) {
this.emit('connectionCheckOutStarted', new ConnectionCheckOutStartedEvent(this));
if (this.closed) {
this.emit('connectionCheckOutFailed', new ConnectionCheckOutFailedEvent(this, 'poolClosed'));
callback(new PoolClosedError(this));
return;
}
const waitQueueMember = { callback };
const pool = this;
const waitQueueTimeoutMS = this.options.waitQueueTimeoutMS;
if (waitQueueTimeoutMS) {
waitQueueMember.timer = setTimeout(() => {
waitQueueMember[kCancelled] = true;
waitQueueMember.timer = undefined;
pool.emit('connectionCheckOutFailed', new ConnectionCheckOutFailedEvent(pool, 'timeout'));
waitQueueMember.callback(new WaitQueueTimeoutError(pool));
}, waitQueueTimeoutMS);
}
this[kWaitQueue].push(waitQueueMember);
process.nextTick(() => processWaitQueue(this));
}
/**
* Check a connection into the pool.
*
* @param {Connection} connection The connection to check in
*/
checkIn(connection) {
const poolClosed = this.closed;
const stale = connectionIsStale(this, connection);
const willDestroy = !!(poolClosed || stale || connection.closed);
if (!willDestroy) {
connection.markAvailable();
this[kConnections].push(connection);
}
this.emit('connectionCheckedIn', new ConnectionCheckedInEvent(this, connection));
if (willDestroy) {
const reason = connection.closed ? 'error' : poolClosed ? 'poolClosed' : 'stale';
destroyConnection(this, connection, reason);
}
process.nextTick(() => processWaitQueue(this));
}
/**
* Clear the pool
*
* Pool reset is handled by incrementing the pool's generation count. Any existing connection of a
* previous generation will eventually be pruned during subsequent checkouts.
*/
clear() {
this[kGeneration] += 1;
this.emit('connectionPoolCleared', new ConnectionPoolClearedEvent(this));
}
/**
* Close the pool
*
* @param {object} [options] Optional settings
* @param {boolean} [options.force] Force close connections
* @param {Function} callback
*/
close(options, callback) {
if (typeof options === 'function') {
callback = options;
}
options = Object.assign({ force: false }, options);
if (this.closed) {
return callback();
}
// immediately cancel any in-flight connections
this[kCancellationToken].emit('cancel');
// drain the wait queue
while (this.waitQueueSize) {
const waitQueueMember = this[kWaitQueue].pop();
clearTimeout(waitQueueMember.timer);
if (!waitQueueMember[kCancelled]) {
waitQueueMember.callback(new MongoError('connection pool closed'));
}
}
// clear the min pool size timer
if (this[kMinPoolSizeTimer]) {
clearTimeout(this[kMinPoolSizeTimer]);
}
// end the connection counter
if (typeof this[kConnectionCounter].return === 'function') {
this[kConnectionCounter].return();
}
// mark the pool as closed immediately
this.closed = true;
eachAsync(
this[kConnections].toArray(),
(conn, cb) => {
this.emit('connectionClosed', new ConnectionClosedEvent(this, conn, 'poolClosed'));
conn.destroy(options, cb);
},
err => {
this[kConnections].clear();
this.emit('connectionPoolClosed', new ConnectionPoolClosedEvent(this));
callback(err);
}
);
}
/**
* Runs a lambda with an implicitly checked out connection, checking that connection back in when the lambda
* has completed by calling back.
*
* NOTE: please note the required signature of `fn`
*
* @param {ConnectionPool~withConnectionCallback} fn A function which operates on a managed connection
* @param {Function} callback The original callback
* @return {Promise}
*/
withConnection(fn, callback) {
this.checkOut((err, conn) => {
// don't callback with `err` here, we might want to act upon it inside `fn`
fn(err, conn, (fnErr, result) => {
if (typeof callback === 'function') {
if (fnErr) {
callback(fnErr);
} else {
callback(undefined, result);
}
}
if (conn) {
this.checkIn(conn);
}
});
});
}
}
function ensureMinPoolSize(pool) {
if (pool.closed || pool.options.minPoolSize === 0) {
return;
}
const minPoolSize = pool.options.minPoolSize;
for (let i = pool.totalConnectionCount; i < minPoolSize; ++i) {
createConnection(pool);
}
pool[kMinPoolSizeTimer] = setTimeout(() => ensureMinPoolSize(pool), 10);
}
function connectionIsStale(pool, connection) {
return connection.generation !== pool[kGeneration];
}
function connectionIsIdle(pool, connection) {
return !!(pool.options.maxIdleTimeMS && connection.idleTime > pool.options.maxIdleTimeMS);
}
function createConnection(pool, callback) {
const connectOptions = Object.assign(
{
id: pool[kConnectionCounter].next().value,
generation: pool[kGeneration]
},
pool.options
);
pool[kPermits]--;
connect(connectOptions, pool[kCancellationToken], (err, connection) => {
if (err) {
pool[kPermits]++;
pool[kLogger].debug(`connection attempt failed with error [${JSON.stringify(err)}]`);
if (typeof callback === 'function') {
callback(err);
}
return;
}
// The pool might have closed since we started trying to create a connection
if (pool.closed) {
connection.destroy({ force: true });
return;
}
// forward all events from the connection to the pool
relayEvents(connection, pool, [
'commandStarted',
'commandFailed',
'commandSucceeded',
'clusterTimeReceived'
]);
pool.emit('connectionCreated', new ConnectionCreatedEvent(pool, connection));
connection.markAvailable();
pool.emit('connectionReady', new ConnectionReadyEvent(pool, connection));
// if a callback has been provided, check out the connection immediately
if (typeof callback === 'function') {
callback(undefined, connection);
return;
}
// otherwise add it to the pool for later acquisition, and try to process the wait queue
pool[kConnections].push(connection);
process.nextTick(() => processWaitQueue(pool));
});
}
function destroyConnection(pool, connection, reason) {
pool.emit('connectionClosed', new ConnectionClosedEvent(pool, connection, reason));
// allow more connections to be created
pool[kPermits]++;
// destroy the connection
process.nextTick(() => connection.destroy());
}
function processWaitQueue(pool) {
if (pool.closed) {
return;
}
while (pool.waitQueueSize) {
const waitQueueMember = pool[kWaitQueue].peekFront();
if (waitQueueMember[kCancelled]) {
pool[kWaitQueue].shift();
continue;
}
if (!pool.availableConnectionCount) {
break;
}
const connection = pool[kConnections].shift();
const isStale = connectionIsStale(pool, connection);
const isIdle = connectionIsIdle(pool, connection);
if (!isStale && !isIdle && !connection.closed) {
pool.emit('connectionCheckedOut', new ConnectionCheckedOutEvent(pool, connection));
clearTimeout(waitQueueMember.timer);
pool[kWaitQueue].shift();
waitQueueMember.callback(undefined, connection);
return;
}
const reason = connection.closed ? 'error' : isStale ? 'stale' : 'idle';
destroyConnection(pool, connection, reason);
}
const maxPoolSize = pool.options.maxPoolSize;
if (pool.waitQueueSize && (maxPoolSize <= 0 || pool.totalConnectionCount < maxPoolSize)) {
createConnection(pool, (err, connection) => {
const waitQueueMember = pool[kWaitQueue].shift();
if (waitQueueMember == null || waitQueueMember[kCancelled]) {
if (err == null) {
pool[kConnections].push(connection);
}
return;
}
if (err) {
pool.emit('connectionCheckOutFailed', new ConnectionCheckOutFailedEvent(pool, err));
} else {
pool.emit('connectionCheckedOut', new ConnectionCheckedOutEvent(pool, connection));
}
clearTimeout(waitQueueMember.timer);
waitQueueMember.callback(err, connection);
});
return;
}
}
/**
* A callback provided to `withConnection`
*
* @callback ConnectionPool~withConnectionCallback
* @param {MongoError} error An error instance representing the error during the execution.
* @param {Connection} connection The managed connection which was checked out of the pool.
* @param {Function} callback A function to call back after connection management is complete
*/
/**
* A callback provided to `checkOut`
*
* @callback ConnectionPool~checkOutCallback
* @param {MongoError} error An error instance representing the error during checkout
* @param {Connection} connection A connection from the pool
*/
/**
* Emitted once when the connection pool is created
*
* @event ConnectionPool#connectionPoolCreated
* @type {PoolCreatedEvent}
*/
/**
* Emitted once when the connection pool is closed
*
* @event ConnectionPool#connectionPoolClosed
* @type {PoolClosedEvent}
*/
/**
* Emitted each time a connection is created
*
* @event ConnectionPool#connectionCreated
* @type {ConnectionCreatedEvent}
*/
/**
* Emitted when a connection becomes established, and is ready to use
*
* @event ConnectionPool#connectionReady
* @type {ConnectionReadyEvent}
*/
/**
* Emitted when a connection is closed
*
* @event ConnectionPool#connectionClosed
* @type {ConnectionClosedEvent}
*/
/**
* Emitted when an attempt to check out a connection begins
*
* @event ConnectionPool#connectionCheckOutStarted
* @type {ConnectionCheckOutStartedEvent}
*/
/**
* Emitted when an attempt to check out a connection fails
*
* @event ConnectionPool#connectionCheckOutFailed
* @type {ConnectionCheckOutFailedEvent}
*/
/**
* Emitted each time a connection is successfully checked out of the connection pool
*
* @event ConnectionPool#connectionCheckedOut
* @type {ConnectionCheckedOutEvent}
*/
/**
* Emitted each time a connection is successfully checked into the connection pool
*
* @event ConnectionPool#connectionCheckedIn
* @type {ConnectionCheckedInEvent}
*/
/**
* Emitted each time the connection pool is cleared and it's generation incremented
*
* @event ConnectionPool#connectionPoolCleared
* @type {PoolClearedEvent}
*/
module.exports = {
ConnectionPool
};