Rick C.
unread,Nov 15, 2012, 6:34:48 PM11/15/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mongod...@googlegroups.com
Hi,
I have a sharded database and I actually went to each individual server to see the file size and they're there, sh.status() has partitioned:true with a good amount of chunks.
However, when I connect to mongos on one of the app servers and run db.serverStatus(), I get this:
"ops" : {
"sharded" : {
"insert" : 0,
"query" : 0,
"update" : 0,
"delete" : 0,
"getmore" : 0,
"command" : 0
},
"notSharded" : {
"insert" : 1618,
"query" : 181305,
"update" : 136656,
"delete" : 2881,
"getmore" : 1,
"command" : 149301
}
}
Did I set up mongos wrong? Or did I run db.serverStatus() at the wrong place?