方法一:利用metadata_locks视图(默认未启用)适用5.7以上的版本
如果上锁前启用了元数据锁的探针,可以比较容易的定位全局锁会话
1.开启元数据锁对应的探针
mysql>update performance_schema.setup_instruments set enabled='yes'where name='wait/lock/metadata/sql/mdl';
模拟上锁:
mysql>flush tables with read lock;
2.查找全局锁对应的thread_id
OBJECT_TYPE=GLOBAL LOCK_TYPE=SHARED 表示全局锁
select t.processlist_id from performance_schema.threads t join performance_schema.metadata_locks ml on ml.owner_thread_id = t.thread_id where ml.object_type='global' and ml.lock_type='shared';
方法二:利用events_statements_history (5.6默认未启用,5.7默认启用)适用5.6以上版本,该表会记录历史SQL执行记录,如果请求太多,会自动清理早起的信息,有可能将上锁会话的信息清理掉
1.update performance_schema.setup_consumers set enabled = 'yes' where name = 'events_statements_history';
模拟上锁:
mysql>flush tables with read lock;
2.select t.processlist_id from performance_schema.threads t join performance_schema.events_statements_history h on h.thread_id = t.thread_id where h.digest_text like 'FLUSH TABLES%';
----摘自《mysql大智小计》
网友评论