-
-
Save evert0n/4247674 to your computer and use it in GitHub Desktop.
MongoDB M102 week6 file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db = db.getSisterDB("config"); | |
var mongosConn = db; // assume we connected to a mongos to get going | |
var res = null; | |
function check() { | |
printjson(res); | |
if( !res || !res.ok ) { | |
throw "check(): not ok, stopping"; | |
} | |
} | |
function waitForSetHealthy() { | |
print("waiting for repl set initiate to complete..."); | |
while( 1 ) { | |
sleep(250); | |
var res = rs.status(); | |
if( !res.ok ) | |
continue; | |
var bad = false; | |
for (var i = 0; i < res.members.length; i++ ) { | |
var state = res.members[i].state; | |
if( state != 1 && state != 2 ) // primary or secondary? | |
bad = true; | |
} | |
if( !bad ) | |
break; | |
} | |
} | |
function ourAddShard(setname,port) { | |
db = connect("localhost:"+port+"/test"); | |
print(db.isMaster().me); | |
res = rs.initiate( | |
{ | |
"_id" : setname, | |
"members" : [ | |
{ _id: 0, host: "10gen.local:" + port }, | |
{ _id: 1, host: "10gen.local:" + (port+1) }, | |
{ _id: 2, host: "10gen.local:" + (port+2) } | |
] | |
} | |
); | |
check(); | |
waitForSetHealthy(); | |
print("adding shard..."); | |
db = mongosConn; | |
res = sh.addShard(setname+"/10gen.local:"+port); | |
check(); | |
print("done; run sh.status()"); | |
} | |
print("setup.js loaded."); | |
print("list of existing shards before doing anything:"); | |
printjson( db.shards.find().toArray() ); | |
print() | |
print("You can invoke:"); | |
print("ourAddShard(setname,port)"); | |
print() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment