mongodb集合批量执行compact
Posted feiniao8651
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb集合批量执行compact相关的知识,希望对你有一定的参考价值。
compact操作
mongodb数据库,当存储引擎是wiredtiger时,如果进行集合内数据删除,mongodb不会将释放集合占用的空间,需要通过compact命令来进行集合空间的整理释放,给我的感觉是类似于操作系统的碎片整理。
单个集合的compact
db.runCommand( compact : 'myCollection' );
全部集合的compact
// This script loops though the list of collection names in a MongoDB and runs the compact operation on them
// Simply paste this into the Mongo shell
use testDbName;
db.getCollectionNames().forEach(function (collectionName)
print('Compacting: ' + collectionName);
db.runCommand( compact: collectionName );
);
注意
compact时会阻塞当前数据库的读写操作,所以一定要在数据库无访问时执行compact。
参考
MongoDB compact 命令详解
Compact all collections inside of a MongoDB database
以上是关于mongodb集合批量执行compact的主要内容,如果未能解决你的问题,请参考以下文章
使用 mongoose 在 MongoDB 中批量插入多个集合