Skip to content

Instantly share code, notes, and snippets.

@xinuc
Created October 19, 2015 12:31
Show Gist options
  • Save xinuc/673dadbe96bc15abeaf9 to your computer and use it in GitHub Desktop.
Save xinuc/673dadbe96bc15abeaf9 to your computer and use it in GitHub Desktop.
kill mongodb operation
db.currentOp().inprog.forEach(
function(op) {
if(op.secs_running > 5) printjson(op);
}
)
db.currentOp().inprog.forEach(
function(op) {
if(op.secs_running > 5) db.killOp(op["opid"]);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment