About
Generic resource pool. Can be used to reuse or throttle expensive resources such as
database connections.
This is the legacy v2.4 branch. If possible it's recommended yo upgrade to the version 3 of generic pool as it's most likely that this branch will only be recieving bug fixes. Minor version upgrades are unlikely at this point.
Installation
$ npm install generic-pool@2.4
History
The history has been moved to the CHANGELOG
Example
Step 1 - Create pool using a factory object
var Pool = require('generic-pool').Pool;
var mysql = require('mysql');
var pool = new Pool({
name : 'mysql',
create : function(callback) {
var c = mysql.createConnection({
user: 'scott',
password: 'tiger',
database:'mydb'
})
callback(null, c);
},
destroy : function(client) { client.end(); },
max : 10,
min : 2,
idleTimeoutMillis : 30000,
log : true
});
Step 2 - Use pool in your code to acquire/release resources
pool.acquire(function(err, client) {
if (err) {
}
else {
client.query("select * from foo", [], function() {
pool.release(client);
});
}
});
Step 3 - Drain pool during shutdown (optional)
If you are shutting down a long-lived process, you may notice
that node fails to exit for 30 seconds or so. This is a side
effect of the idleTimeoutMillis behavior -- the pool has a
setTimeout() call registered that is in the event loop queue, so
node won't terminate until all resources have timed out, and the pool
stops trying to manage them.
This behavior will be more problematic when you set factory.min > 0,
as the pool will never become empty, and the setTimeout calls will
never end.
In these cases, use the pool.drain() function. This sets the pool
into a "draining" state which will gracefully wait until all
idle resources have timed out. For example, you can call:
pool.drain(function() {
pool.destroyAllNow();
});
If you do this, your node process will exit gracefully.
Documentation
Pool() accepts an object with these slots:
name : name of pool (string, optional)
create : function that returns a new resource
should call callback() with the created resource
destroy : function that accepts a resource and destroys it
max : maximum number of resources to create at any given time
optional (default=1)
min : minimum number of resources to keep in pool at any given time
if this is set >= max, the pool will silently set the min
to factory.max - 1 (Note: min==max case is expected to change in v3 release)
optional (default=0)
refreshIdle : boolean that specifies whether idle resources at or below the min threshold
should be destroyed/re-created. optional (default=true)
idleTimeoutMillis : max milliseconds a resource can go unused before it should be destroyed
(default 30000)
reapIntervalMillis : frequency to check for idle resources (default 1000),
returnToHead : boolean, if true the most recently released resources will be the first to be allocated.
This in effect turns the pool's behaviour from a queue into a stack. optional (default false)
priorityRange : int between 1 and x - if set, borrowers can specify their
relative priority in the queue if no resources are available.
see example. (default 1)
validate : function that accepts a pooled resource and returns true if the resource
is OK to use, or false if the object is invalid. Invalid objects will be destroyed.
This function is called in acquire() before returning a resource from the pool.
Optional. Default function always returns true.
validateAsync : Asynchronous validate function. Receives a callback function as its second argument,
which should be called with a single boolean argument being true if the item is still
valid and false if it should be removed from the pool. Called before item is acquired
from pool. Default is undefined. Only one of validate/validateAsync may be specified
log : true/false or function -
If a log is a function, it will be called with two parameters:
- log string
- log level ('verbose', 'info', 'warn', 'error')
Else if log is true, verbose log info will be sent to console.log()
Else internal log messages be ignored (this is the default)
Priority Queueing
The pool now supports optional priority queueing. This becomes relevant when no resources
are available and the caller has to wait. acquire()
accepts an optional priority int which
specifies the caller's relative position in the queue.
var pool = new Pool({
name : 'mysql',
create : function(callback) {
},
destroy : function(client) {
},
max : 10,
idleTimeoutMillis : 30000,
priorityRange : 3
});
pool.acquire(function(err, client) {
pool.release(client);
});
pool.acquire(function(err, client) {
pool.release(client);
}, 0);
pool.acquire(function(err, client) {
pool.release(client);
}, 1);
Draining
If you know would like to terminate all the resources in your pool before
their timeouts have been reached, you can use destroyAllNow()
in conjunction
with drain()
:
pool.drain(function() {
pool.destroyAllNow();
});
One side-effect of calling drain()
is that subsequent calls to acquire()
will throw an Error.
Pooled function decoration
To transparently handle object acquisition for a function,
one can use pooled()
:
var privateFn, publicFn;
publicFn = pool.pooled(privateFn = function(client, arg, cb) {
cb(null, arg);
});
Keeping both private and public versions of each function allows for pooled
functions to call other pooled functions with the same member. This is a handy
pattern for database transactions:
var privateTop, privateBottom, publicTop, publicBottom;
publicBottom = pool.pooled(privateBottom = function(client, arg, cb) {
});
publicTop = pool.pooled(privateTop = function(client, cb) {
privateBottom(client, "arg", function(err, retVal) {
if(err) { return cb(err); }
cb();
});
});
Pool info
The following functions will let you get information about the pool:
pool.getName()
pool.getPoolSize()
pool.availableObjectsCount()
pool.waitingClientsCount()
pool.getMaxPoolSize()
pool.getMinPoolSize()
Run Tests
$ npm install expresso
$ npm test
The test runner runs every test in parallel, so tests cannot safely share
resources. If a test fails, its thrown assertion error may bubble up and halt
execution/cause failures in other running tests; these are spurious. If you
have a failing test, try running it in isolation until you get it to pass.
The individual tests "wait" by repeatedly checking the condition in the
beforeExit
callback. The test is marked as "passed" if the beforeExit
callback runs successfully. Generally, this is accomplished by counting the
number of assertions and checking that all of the test's assertions have been
asserted.
Linting
We use eslint and the standard
ruleset. At the moment linting is not done as part of the test suite but this will probably change in the future. You should ideally lint your code before making any PR's patches etc.
Becuase the linting tools require nodejs >= 0.10
but we test against 0.8
and 0.6
installation of the tools is done via npm run lint-install
. Some kind of optionalDevDependencies would be great!
$ npm run lint-install
$ npm run lint
License
(The MIT License)
Copyright (c) 2010-2016 James Cooper <james@bitmechanic.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.