Skip to content

Instantly share code, notes, and snippets.

@Addvilz
Forked from joachimkainz/gist:1357460
Created September 9, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Addvilz/438dd29c50222eca1b20186a79c15154 to your computer and use it in GitHub Desktop.
Save Addvilz/438dd29c50222eca1b20186a79c15154 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