【MySQL】How to find out who is locking a table i...

帅比萌擦擦* 提交于 2019-11-30 02:30:38

MySQL is adding more tools to monitor its internals with every new release, but one thing it still lacks is a way to find out who is locking what, and therefore which transactions block which other ones. This is such a vital feature that Im considering writing my own patch to the source! Still, it is possible, to a limited extent, to find out whos locking resources. In this article Ill explain how you can do that.

This article is the second in a series on how to use the innotop MySQL and InnoDB monitor.

Introduction

Heres the situation: you are trying to update a table and every time you issue the query, it hangs until it times out and tells you the lock wait timeout was exceeded. Someone has locked the table youre trying to update, but you have no idea who. This can be incredibly frustrating, because this could go on indefinitely. Ive sometimes had to put work off till another day, because the table is locked all day long.

Ive found only a very limited set of circumstances in which MySQL will say whats happening with locks. These are all printed out in the text of SHOW ENGINE INNODB STATUS.

When there was a deadlock

The first way to see locks is when theres been a deadlock. The status text will show transaction information on the transactions that deadlocked, which locks they held, and which they were waiting for. Here is a sample. Look at the sections titled WAITING FOR THIS LOCK TO BE GRANTED” and HOLDS THE LOCKS.

------------------------
LATEST DETECTED DEADLOCK
------------------------
060731 20:19:58
*** (1) TRANSACTION:
TRANSACTION 0 93698, ACTIVE 2 sec, process no 12767, OS thread id 1141946720 starting index read
mysql tables in use 1, locked 1
LOCK WAIT 4 lock struct(s), heap size 1216
MySQL thread id 3, query id 19 localhost root Updating
update test.innodb_deadlock_maker set a = 0 where a <> 0
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 131120 n bits 72 index `GEN_CLUST_INDEX` of table `test/innodb_deadlock_maker` trx id 0 93698 lock_mode X waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
 0: len 6; hex 000000019000; asc       ;; 1: len 6; hex 000000016e01; asc     n ;; 2: len 7; hex 80000000320110; asc     2  ;; 3: len 4; hex 80000000; asc     ;;
*** (2) TRANSACTION:
TRANSACTION 0 93699, ACTIVE 2 sec, process no 12767, OS thread id 1142212960 starting index read, thread declared inside InnoDB 500
mysql tables in use 1, locked 1
4 lock struct(s), heap size 1216
MySQL thread id 4, query id 20 localhost root Updating
update test.innodb_deadlock_maker set a = 1 where a <> 1
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 0 page no 131120 n bits 72 index `GEN_CLUST_INDEX` of table `test/innodb_deadlock_maker` trx id 0 93699 lock mode S
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;
Record lock, heap no 2 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
 0: len 6; hex 000000019000; asc       ;; 1: len 6; hex 000000016e01; asc     n ;; 2: len 7; hex 80000000320110; asc     2  ;; 3: len 4; hex 80000000; asc     ;;
Record lock, heap no 3 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
 0: len 6; hex 000000019001; asc       ;; 1: len 6; hex 000000016e01; asc     n ;; 2: len 7; hex 8000000032011f; asc     2  ;; 3: len 4; hex 80000001; asc     ;;
*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 131120 n bits 72 index `GEN_CLUST_INDEX` of table `test/innodb_deadlock_maker` trx id 0 93699 lock_mode X waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
 0: len 6; hex 000000019000; asc       ;; 1: len 6; hex 000000016e01; asc     n ;; 2: len 7; hex 80000000320110; asc     2  ;; 3: len 4; hex 80000000; asc     ;;
*** WE ROLL BACK TRANSACTION (2)


More importantly, the lines beginning RECORD LOCKS space id 0″ show which index of which table was locked. That is the real meat of the matter — thats what you need to know.

Theres just one problem: after theres been a deadlock, its too late. You dont want to know what held locks in the past, you want to know what holds them now. The deadlock information isnt usually helpful in finding out what transaction is blocking something from happening.

When a transaction is waiting for locks

The next place you can sometimes see lock information is in the transaction section of the output. Heres a sample:

---TRANSACTION 0 93789802, ACTIVE 19 sec, process no 9544, OS thread id 389120018
MySQL thread id 23740, query id 194861248 worker1.office 192.168.0.12 robot
---TRANSACTION 0 93789797, ACTIVE 20 sec, process no 9537, OS thread id 389005359 starting index read
mysql tables in use 1, locked 1
LOCK WAIT 2 lock struct(s), heap size 320
MySQL thread id 23733, query id 194861215 elpaso 192.168.0.31 robot Updating
update test.test set col1 = 4
------- TRX HAS BEEN WAITING 20 SEC FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 299998 n bits 200 index `PRIMARY` of table `test/test` trx id 0 93789797 lock_mode X locks rec but not gap waiting
Record lock, heap no 77 PHYSICAL RECORD: n_fields 15; compact format; info bits 0 
 0: len 4; hex 80474fd6; asc  GO ;; 1: len 6; hex 000005970680; asc       ;; 2: len 7; hex 000017c02b176c; asc     + l;; 3: len 4; hex 80000003; asc     ;; 4: len 8; hex 800000000da0c93a; asc        :;; 5: len 8; hex 800000000eb2ea7e; asc        ~;; 6: len 4; hex c771fe44; asc  q D;; 7: len 4; hex 8000003e; asc    >;; 8: len 8; hex 8000123eb9e5dfd5; asc    >    ;; 9: len 4; hex 8000003a; asc    :;; 10: len 8; hex 8000123eb9e43603; asc    >  6 ;; 11: len 4; hex 80000035; asc    5;; 12: len 8; hex 8000123eb9d6c130; asc    >   0;; 13: len 4; hex 80000033; asc    3;; 14: len 8; hex 8000123eb9c7c853; asc    >   S;;
 
---------------------
---TRANSACTION 0 93789679, ACTIVE 31082 sec, process no 9535, OS thread id 388972583 starting index read, thread declared inside InnoDB 6
mysql tables in use 4, locked 4
11614 lock struct(s), heap size 683328
MySQL thread id 23731, query id 194861117 elpaso 192.168.0.31 robot


Notice the first transaction has been waiting 20 seconds for a lock to be granted, and it tells you which table and index as above. The other transaction I included (there were many in this section, but I omitted most) says it has 4 tables open and 4 locked. What it doesnt say is which ones.

Again, theres some information here, but not a lot. If you issue a query and it hangs and waits for a lock, knowing what lock its waiting for isnt really helpful. And knowing some other transaction holds a lock isntalways helpful either.

It can be useful sometimes though, and thats better than nothing. If you only see two transactions with locks, you know the one thatnot waiting for a lock is probably the one that holds them. Notice something scary in the information above? Transaction 0 93789771, on connection 23731, has been active for… eight and a half hours! Whoa. Its time to find out what owns that connection and possibly kill it.

The take-away here is, if youre getting blocked on an InnoDB table, and youre lucky enough to see only one other transaction with locks, its probably the one blocking you.

What about table locks?

Ah, good question. What if the table isnt InnoDB, or what if someone locked it with LOCK TABLES, and it doesnt show up in the output of SHOW ENGINE INNODB STATUS? As far as I know, youre helpless. I dont know how to get any information on whos locking the table then. Table lock information doesnt seem to be exposed in any fashion — only row lock information.

In fact, if youre in a transaction, LOCK TABLES seems to kick you out” of the transaction. Try experimenting with START TRANSACTION and LOCK TABLES on an InnoDB table, and youll see what I mean. If you lock a table for writing, then try to select from it in another connection, the other connection will block. If you then issueSTART TRANSACTION on the first connection, the second connection will immediately unblock, and the first connections transaction will disappear from the InnoDB status text.

Who wants to read all that mess?

Who, indeed? The text I included above is a pain to read, and its not even representative of what youll really be looking at. For one thing, you might have to scan through 40 or more transactions to find the ones you care about, and then theres all the other information in the output, some of which can be voluminous (such as deadlocks). What a hassle!

Fortunately, theres a tool to do that for you: innotop. This tool formats the output neatly and gives you filtering options to display only transactions with locks (or just sort them to the top of the display). Heres how you can do that:

Start innotop and use the T” key to enter InnoDB Transaction mode, if its not already in that mode. You will see a list of transactions. Next, make the Locks,” “Tbl Used,” and Tbl Lck” columns visible. Press the c” key to activate the choose columns” dialog:

Press Return and you should see something that looks like this:

Now sort transactions with locks to the top by pressing the s” key and choosing lock_structs” as the sort column. You may need to press the r” key afterwards to reverse the sort order if they go to the bottom instead. Alternatively, you can use the w” key to add a filter on the lock_structs” column, such as [1-9]” to match only rows where the column isnt zero (this is a handy filter to add in general, just so you can see how many transactions have locks).

Heres a screenshot of me changing the sort column, and adding a filter:

And heres a screenshot of the result:

In this example you could see the locks without hiding the other rows, but when you have a very busy server it can really help to hide all the transactions without locks.

Isnt that easier than digging through the output of SHOW ENGINE INNODB STATUS? I think so.

Is there more?

Though Ive searched the Internet, searched the source code and the MySQL manual, I havent been able to find any other ways to get information on current locks in MySQL. But Id be delighted if you prove me wrong! If you have anything to add, please comment.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!