Skip to content

Commit 84eb26e

Browse files
author
Adam Comerford
committed
fixed namespace type in two_shards recipe
1 parent d8ffbc8 commit 84eb26e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

two_shards_1m_docs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ sh.shardCollection("chunkTest.foo", {"_id" : 1});
2828
sh.getBalancerState();
2929
// Now insert 1,000,000 docs (increase as necessary) - this may take a while
3030
// 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()})};
31+
for(var i = 0; i <= 1000000; i++){db.foo.insert({"_id" : i, "date" : new Date(), "otherID" : new ObjectId()})};
3232
// and that's it - you now have a 2 shard cluster with 1,000,000 docs to play with

0 commit comments

Comments
 (0)