Skip to content

Instantly share code, notes, and snippets.

@joachimkainz
Created November 11, 2011 07:44
Show Gist options
  • Save joachimkainz/1357460 to your computer and use it in GitHub Desktop.
Save joachimkainz/1357460 to your computer and use it in GitHub Desktop.
kill all queries in mongo
db.currentOP().inprog.forEach(function(v){if (v.op == "query") { db.killOP(v.opid);}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment