- Reference >
- mongo Shell Methods >
- Database Methods >
- db.killOp()
db.killOp()¶
On this page
Description¶
- db.killOp(opid)¶
Terminates an operation as specified by the operation ID. To find operations and their corresponding IDs, see db.currentOp().
The db.killOp() method has the following parameter:
Parameter Type Description opid number An operation ID. Warning
Terminate running operations with extreme caution. Only use db.killOp() to terminate operations initiated by clients and do not terminate internal database operations.