Last active
October 10, 2024 11:19
-
-
Save BlakeGardner/8548102 to your computer and use it in GitHub Desktop.
Compact all collections inside of a MongoDB database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 }); | |
}); |
rs.slaveOk();
for actual versions must be:
rs.secondaryOK();
anyway thanks.
db.getCollectionNames
returns views too 🙃
Returns an array containing the names of all collections and views
https://www.mongodb.com/docs/manual/reference/method/db.getCollectionNames/
If you want collection names only you need something like db.getCollectionInfos({ type: 'collection' }).map(v => v.name).filter(v => v != 'system.views')
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ST-DDT which server versions do these constraints apply to? (I mean that the secondary node won't be avail for failover?)
Can you please point me to the according documentation? Thanks :)