We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8ffbc8 commit 84eb26eCopy full SHA for 84eb26e
two_shards_1m_docs.js
@@ -28,5 +28,5 @@ sh.shardCollection("chunkTest.foo", {"_id" : 1});
28
sh.getBalancerState();
29
// Now insert 1,000,000 docs (increase as necessary) - this may take a while
30
// In this case, I've put in a couple of random fields, and overridden the _id with the integer counter in the for loop
31
-for(var i = 0; i <= 1000000; i++){db.UserIdentity.insert({"_id" : i, "date" : new Date(), "otherID" : new ObjectId()})};
+for(var i = 0; i <= 1000000; i++){db.foo.insert({"_id" : i, "date" : new Date(), "otherID" : new ObjectId()})};
32
// and that's it - you now have a 2 shard cluster with 1,000,000 docs to play with
0 commit comments