一、发现正在运行的慢SQL
查询执行大于400秒的慢SQL
db.currentOp({ secs_running: { $gt: 400 } })
关键字段:opid、secs_running、query
二、杀掉慢SQL对应的opid
db.killOp(-1905619203)