Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using mongo and node.js in the application. The mongo database consists of two servers.

In the example given in http://howtonode.org/express-mongodb, i can connect to one server using,

ArticleProvider = function(host, port) {
 this.db= new Db('node-mongo-blog', new Server(host, port, {auto_reconnect: true}, {}));
 this.db.open(function(){});
};

However, how can i connect to multiple servers, in my case there are two servers.

Can someone please let me know.

Thanks

Tuco

share|improve this question

1 Answer

up vote 2 down vote accepted

Sample code from https://github.com/christkv/node-mongodb-native/blob/master/examples/replSetServersQueries.js.

The servers specified is only the seed list - it will discover the complete list automatically. The member of a replica set are not static - they will change (a new server might get added or an existing server might be removed). The client connects to one of the servers specified in the input list and then fetches the replica set members from that. So you don't have to list all the server addresses here - if at least one of the servers mentioned in the list is up and running it will find the rest automatically.

var port1 = 27018;
var port2 = 27019;
var server = new Server(host, port, {});
var server1 = new Server(host, port1, {});
var server2 = new Server(host, port2, {});
var servers = new Array();
servers[0] = server2;
servers[1] = server1;
servers[2] = server;

var replStat = new ReplSetServers(servers);
console.log("Connecting to " + host + ":" + port);
console.log("Connecting to " + host1 + ":" + port1);
console.log("Connecting to " + host2 + ":" + port2);
var db = new Db('node-mongo-examples', replStat, {native_parser:true});
share|improve this answer
Thanks... it seems to work...Can you tell what you meant by "The servers specified is only the seed list - it will discover the complete list automatically."? – Tuco Sep 12 '12 at 11:35
Updated answer to clarify that point. – gkamal Sep 12 '12 at 11:52
And please accept the answer - meta.stackoverflow.com/questions/5234/… – gkamal Sep 12 '12 at 11:53
Thanks..it did work!! – Tuco Sep 13 '12 at 4:14
using the new API might be an easier way for you: mongodb.github.com/node-mongodb-native/driver-articles/… – Jonathan Ong Nov 30 '12 at 1:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.