{
"db" : "instihire",
"collections" : 13,
"objects" : 7206100,
"avgObjSize" : 34161.69733864365,
"dataSize" : 246172607192,
"storageSize" : 249297176880,
"numExtents" : 212,
"indexes" : 20,
"indexSize" : 352524592,
"fileSize" : 251066843136,
"nsSizeMB" : 16,
"dataFileVersion" : {
"major" : 4,
"minor" : 5
},
"extentFreeList" : {
"num" : 0,
"totalSize" : 0
},
"ok" : 1
}
Notice, the data size is 90G more than the node it copied it from, but the number of objects is only off by one.
Then I looked at one of my larger collections, first from the old node:
{
"ns" : "instihire.attachments.chunks",
"count" : 2130508,
"size" : 132681651188,
"avgObjSize" : 62277,
"storageSize" : 134714560880,
"numExtents" : 94,
"nindexes" : 2,
"paddingFactor" : 1,
"systemFlags" : 1,
"userFlags" : 0,
"totalIndexSize" : 204759040,
"indexSizes" : {
"_id_" : 95059968,
"files_id_1_n_1" : 109699072
},
"ok" : 1
}
and from the new node
{
"ns" : "instihire.attachments.chunks",
"count" : 2130508,
"size" : 214121293872,
"avgObjSize" : 100502,
"storageSize" : 215360260592,
"numExtents" : 118,
"nindexes" : 2,
"paddingFactor" : 1,
"systemFlags" : 1,
"userFlags" : 1,
"totalIndexSize" : 144012064,
"indexSizes" : {
"_id_" : 62219360,
"files_id_1_n_1" : 81792704
},
"ok" : 1
}
Notice right there is 100G storage size difference. Am I reading this wrong?
Maybe I should just wait until tonight, shut down an old cluster member, and the new cluster member, and copy the data files? Any idea what might have caused this size inflation? I don't know if it's helps, but this collection is a GridFS created with the Mongo Java Driver. This just doesn't feel right atm.
Again, thanks in advance for any help.
Tony