|
During the execution of:
> db.runCommand(
{ renameCollection: "mydb.oldname", to: "mydb.newname" }
What happened:
Suddenly all the operations started to stack up. Collection in question was over 70GB.
What was expected:
It was expected that the operation would yield. Or at the very least such behavior should be documented...
Related:
db.killOp() - did NOT kill the operation
db.currentOP() - reported the OP as killed (killed:true), yet all the other ops never got executed. Additionally all the new ops continued to fill up the queue.
|