1 回答

TA貢獻(xiàn)1777條經(jīng)驗(yàn) 獲得超3個(gè)贊
您好,很高興能幫助您
1. 獲取mongoDB中數(shù)據(jù)庫(kù)的大小命令
use databasename
db.stats()
顯示信息如下
> db.stats()
{
"collections" : 3,
"objects" : 80614,
"dataSize" : 21069700,
"storageSize" : 39845376,
"numExtents" : 9,
"indexes" : 2,
"indexSize" : 6012928,
"ok" : 1
}
其中storage表示的就是數(shù)據(jù)庫(kù)的大小,顯示出的數(shù)字的單位是字節(jié),因此如果需要轉(zhuǎn)換單位為KB需要除以1024
2. 獲取MongoDB中collection
db.collection.dataSize()
//collection中的數(shù)據(jù)大小
db.collection.storageSize()
//為collection分配的空間大小,包括未使用的空間
db.collection.totalIndexSize()
collection中索引數(shù)據(jù)大小
db.collection.totalSize()
collection中索引+data所占空間
- 1 回答
- 0 關(guān)注
- 911 瀏覽
添加回答
舉報(bào)