如何获取mongoDB数据库大小

如何获取mongoDB数据库大小


蝴蝶不菲
浏览 858回答 1
1回答

慕森王

您好,很高兴能帮助您1. 获取mongoDB中数据库的大小命令use databasenamedb.stats()显示信息如下> db.stats(){"collections" : 3,"objects" : 80614,"dataSize" : 21069700,"storageSize" : 39845376,"numExtents" : 9,"indexes" : 2,"indexSize" : 6012928,"ok" : 1}其中storage表示的就是数据库的大小,显示出的数字的单位是字节,因此如果需要转换单位为KB需要除以10242. 获取MongoDB中collectiondb.collection.dataSize()//collection中的数据大小db.collection.storageSize()//为collection分配的空间大小,包括未使用的空间db.collection.totalIndexSize()collection中索引数据大小db.collection.totalSize()collection中索引+data所占空间
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

MongoDB