当我们遇到mysql的问题时,我们经常使用show engine innodb status来查看问题
但是很多时候用此命令显示的并不是很全面,我们不得不使用innodb_monitor 来监控数据库的性能
而默认此项是关闭的,打开方法:
CREATE TABLE innodb_lock_monitor (a INT) ENGINE=INNODB;
然后show engine innodb status\G
当我们遇到mysql的问题时,我们经常使用show engine innodb status来查看问题
但是很多时候用此命令显示的并不是很全面,我们不得不使用innodb_monitor 来监控数据库的性能
而默认此项是关闭的,打开方法:
CREATE TABLE innodb_lock_monitor (a INT) ENGINE=INNODB;
然后show engine innodb status\G