Created
April 24, 2015 10:22
-
-
Save kylemclaren/1c19b189fc46ee7029b2 to your computer and use it in GitHub Desktop.
Show current index builds (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
db.currentOp( | |
{ | |
$or: [ | |
{ op: "query", "query.createIndexes": { $exists: true } }, | |
{ op: "insert", ns: /\.system\.indexes\b/ } | |
] | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment