目标:怎么查看锁、长事务、阻塞的事务
通用
查看当前长事务
information_schema库下面的innodb_trx表
Mysql5.6
查看当前所有的锁
information_schema库下面的innodb_locks表
查看阻塞的事务
information_schema库下面的innodb_lock_waits 表
Mysql8.0
查看当前所有的锁
performance_schema库下面的data_locks表
查看锁等待
performance_schema库下面的data_lock_waits表
查看MDL锁
performance_schema库下面的metadata_locks表
Comments NOTHING