Last active
October 10, 2024 04:03
-
-
Save ixti/5359329 to your computer and use it in GitHub Desktop.
Small script that extracts all non-default indexes from MongoDB
This file contains hidden or 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
rs.slaveOk(); | |
db.getCollectionNames().forEach(function(coll) { | |
db[coll].getIndexes().forEach(function(index) { | |
if ("_id_" !== index.name) { | |
print("db." + coll + ".ensureIndex(" + tojson(index.key) + ")"); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great script, thanks!
Here is a version to recreate them all with options, and with the new createIndex command instead of ensureIndex (since mongoDB 3.0)