- 
      
 - 
        
Save mManishTrivedi/6cbf12289e0aa14b34f949b88b0f20f6 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
comerford revised this gist
Jun 10, 2014 . 1 changed file with 1 addition and 1 deletion.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 @@ -8,7 +8,7 @@ killLongRunningOps = function(maxSecsRunning) { 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); }  - 
        
comerford revised this gist
Feb 27, 2014 . 1 changed file with 2 additions and 1 deletion.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 @@ -1,5 +1,6 @@ // 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();  - 
        
comerford created this gist
Feb 27, 2014 .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,15 @@ // kills long running ops (taking seconds as an arg to define "long") // attempts to be a bit safer than killing all by excluding replication related operations 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 over for secs: " + op.secs_running); db.killOp(op.opid); } } };