Created
November 17, 2020 16:30
-
-
Save lloiacono/fd0f1dbf98a3adf4c7055265fef0a1a4 to your computer and use it in GitHub Desktop.
Revisions
-
lloiacono renamed this gist
Nov 17, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lloiacono created this gist
Nov 17, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // kills long running ops in MongoDB (taking seconds as an arg to define "long") // attempts to be a bit safer than killing all by excluding replication related operations // and only targeting queries as opposed to commands etc. killLongRunningOps = function(maxSecsRunning) { currOp = db.currentOp(); for (oper in currOp.inprog) { op = currOp.inprog[oper-0]; if (op.secs_running > maxSecsRunning && op.op == "query" && !op.ns.startsWith("local")) { print("Killing opId: " + op.opid + " running for over secs: " + op.secs_running); db.killOp(op.opid); } } };