Connections
We may connect to MongoDB by utilizing the mongoose.connect()
method.
mongoose.connect('mongodb://localhost/myapp');
This is the minimum needed to connect the myapp
database running locally on the default port (27017). If the local connection fails then try using 127.0.0.1 instead of localhost. Sometimes issues may arise when the local hostname has been changed.
We may also specify several more parameters in the uri
depending on your environment:
mongoose.connect('mongodb://username:password@host:port/database?options...');
See the mongodb connection string spec for more detail.
Options
The connect
method also accepts an options
object which will be passed on to the underlying driver. All options included here take precedence over options passed in the connection string.
mongoose.connect(uri, options);
The following option keys are available:
db - passed to the [underlying driver's db instance](http://mongodb.github.io/node-mongodb-native/2.1/api/Db.html)
server - passed to the [underlying driver's server instance(s)](http://mongodb.github.io/node-mongodb-native/2.1/api/Server.html)
replset - passed to the [underlying driver's ReplSet instance](http://mongodb.github.io/node-mongodb-native/2.1/api/ReplSet.html)
user - username for authentication (if not specified in uri)
pass - password for authentication (if not specified in uri)
auth - options for authentication
mongos - passed to the [underlying driver's mongos options](http://mongodb.github.io/node-mongodb-native/2.0/api/Mongos.html)
Example:
var options = {
db: { native_parser: true },
server: { poolSize: 5 },
replset: { rs_name: 'myReplicaSetName' },
user: 'myUserName',
pass: 'myPassword'
}
mongoose.connect(uri, options);
Note:
The server option auto_reconnect
is defaulted to true which can be overridden.
The db option forceServerObjectId
is set to false which cannot be overridden.
See the driver for more information about available options.
Note:
If auto_reconnect
is on, mongoose will give up trying to reconnect after a certain number of failures. Set the server.reconnectTries
and server.reconnectInterval
options to increase the number of times mongoose will try to reconnect.
// Good way to make sure mongoose never stops trying to reconnect
mongoose.connect(uri, { server: { reconnectTries: Number.MAX_VALUE } });
Connection String Options
Mongoose supports the following options in the connection string.
- ssl
- poolSize
- autoReconnect
- socketTimeoutMS
- connectTimeoutMS
- authSource
- retries
- reconnectWait
- rs_name
- replicaSet
- nativeParser
- w
- journal
- wtimeoutMS
- readPreference
- readPreferenceTags
- sslValidate
A note about keepAlive
For long running applications, it is often prudent to enable keepAlive
with a number of milliseconds. Without it, after some period of time
you may start to see "connection closed"
errors for what seems like
no reason. If so, after
reading this,
you may decide to enable keepAlive
:
options.server.socketOptions = options.replset.socketOptions = { keepAlive: 120 };
mongoose.connect(uri, options);
ReplicaSet Connections
The same method is used to connect to a replica set but instead of passing a single uri
we pass a comma delimited list of uri
s.
mongoose.connect('mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]' [, options]);
Multi-mongos support
High availability over multiple mongos
instances is also supported. Pass a connection string for your mongos
instances and set the mongos
option to true:
mongoose.connect('mongodb://mongosA:27501,mongosB:27501', { mongos: true }, cb);
Multiple connections
So far we've seen how to connect to MongoDB using Mongoose's default connection. At times we may need multiple connections open to Mongo, each with different read/write settings, or maybe just to different databases for example. In these cases we can utilize mongoose.createConnection()
which accepts all the arguments already discussed and returns a fresh connection for you.
var conn = mongoose.createConnection('mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]', options);
This connection object is then used to create and retrieve models. Models are always scoped to a single connection.
Connection pools
Each connection
, whether created with mongoose.connect
or mongoose.createConnection
are all backed by an internal configurable connection pool defaulting to a size of 5. Adjust the pool size using your connection options:
// single server
var uri = 'mongodb://localhost/test';
mongoose.createConnection(uri, { server: { poolSize: 4 }});
// for a replica set
mongoose.createConnection(uri, { replset: { poolSize: 4 }});
// passing the option in the URI works with single or replica sets
var uri = 'mongodb://localhost/test?poolSize=4';
mongoose.createConnection(uri);
Next Up
Now that we've covered connections
, let's take a look at how we can break pieces of our functionality out into reusable and shareable plugins.