// Test that doing secondaryOk reads from secondaries hits all the secondaries evenly // @tags: [requires_sharding] function testReadLoadBalancing(numReplicas) { var s = new ShardingTest({shards: {rs0: {nodes: numReplicas}}, verbose: 2, other: {chunkSize: 1}}); s.adminCommand({enablesharding: "test"}); s.config.settings.find().forEach(printjson); s.adminCommand({shardcollection: "test.foo", key: {_id: 1}}); s.getDB("test").foo.insert({a: 123}); primary = s.rs0.getPrimary(); secondaries = s.rs0.getSecondaries(); function rsStats() { return s.getDB("admin").runCommand("connPoolStats")["replicaSets"][s.rs0.name]; } assert.eq(numReplicas, rsStats().hosts.length); function isPrimaryOrSecondary(info) { if (!info.ok) return false; if (info.ismaster) return true; return info.secondary && !info.hidden; } assert.soon(function() { var x = rsStats().hosts; printjson(x); for (var i = 0; i < x.length; i++) if (!isPrimaryOrSecondary(x[i])) return false; return true; }); for (var i = 0; i < secondaries.length; i++) { assert.soon(function() { return secondaries[i].getDB("test").foo.count() > 0; }); secondaries[i].getDB('test').setProfilingLevel(2); } // Primary may change with reconfig primary.getDB('test').setProfilingLevel(2); // Store references to the connection so they won't be garbage collected. var connections = []; for (var i = 0; i < secondaries.length * 10; i++) { conn = new Mongo(s._mongos[0].host); conn.setSecondaryOk(); conn.getDB('test').foo.findOne(); connections.push(conn); } var profileCriteria = {op: 'query', ns: 'test.foo'}; for (var i = 0; i < secondaries.length; i++) { var profileCollection = secondaries[i].getDB('test').system.profile; assert.eq(10, profileCollection.find(profileCriteria).count(), "Wrong number of read queries sent to secondary " + i + " " + tojson(profileCollection.find().toArray())); } db = primary.getDB("test"); printjson(rs.status()); c = rs.conf(); print("config before: " + tojson(c)); for (i = 0; i < c.members.length; i++) { if (c.members[i].host == db.runCommand("hello").primary) continue; c.members[i].hidden = true; c.members[i].priority = 0; break; } rs.reconfig(c); print("config after: " + tojson(rs.conf())); assert.soon(function() { var x = rsStats(); printjson(x); var numOk = 0; // Now wait until the host disappears, since now we actually update our // replica sets via isMaster in mongos if (x.hosts.length == c["members"].length - 1) return true; /* for ( var i=0; i