In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
How to use mysql to observe MDL locks, I believe that many inexperienced people do not know what to do. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.
When you add a field to a small watch, you can't get the lock and report an error:
ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction
During the show processlist view, ddl is waiting for the MDL lock. MySQL's Metadata Lock mechanism is designed to protect the consistency of concurrent access to data objects, and showps does not see active transactions.
How to find the source of the MDL lock? Innodb_locks cannot see the information about the MDL lock. There is a table under performance_schema called metadata_locks.
Mysql > desc metadata_locks +-- +-+ | Field | Type | Null | Key | Default | Extra | +- -+-+ | OBJECT_TYPE | varchar (64) | NO | | NULL | | OBJECT_SCHEMA | varchar (64) | YES | | NULL | | | OBJECT_NAME | varchar (64) | YES | | NULL | | OBJECT_INSTANCE_BEGIN | bigint (20) unsigned | NO | | NULL | | LOCK_TYPE | varchar (32) | NO | | NULL | | LOCK_DURATION | varchar (32) | NO | NULL | LOCK | _ STATUS | varchar (32) | NO | | NULL | | SOURCE | varchar (64) | YES | | NULL | | OWNER_THREAD_ID | bigint (20) unsigned | YES | | NULL | | OWNER_EVENT_ID | bigint (20) unsigned | YES | NULL | +- -+-+ 10 rows in set (0.00 sec)
The instrument of metadata needs to be enabled by default to get the information of MDL lock.
Call sys.ps_setup_enable_instrument ('wait/lock/metadata/sql/mdl%') or: UPDATE performance_schema.setup_consumers SET ENABLED =' YES' WHERE NAME = 'global_instrumentation';UPDATE performance_schema.setup_instruments SET ENABLED =' YES' WHERE NAME = 'wait/lock/metadata/sql/mdl'
When enabled, re-execute the DDL statement, and then observe
Mysql > select * from performance_schema.metadata_locks where object_name='t'\ gateway * 1. Row * * OBJECT_TYPE: TABLE OBJECT_SCHEMA: ming OBJECT_NAME: tOBJECT_INSTANCE_BEGIN: 87772208 LOCK_TYPE: SHARED _ READ LOCK_DURATION: TRANSACTION LOCK_STATUS: GRANTED SOURCE: OWNER_THREAD_ID: 29 OWNER_EVENT_ID: 990 row * * OBJECT_TYPE: TABLE OBJECT_ SCHEMA: ming OBJECT_NAME: tOBJECT_INSTANCE_BEGIN: 140151695148016 LOCK_TYPE: SHARED_UPGRADABLE LOCK_DURATION: TRANSACTION LOCK_STATUS: GRANTED SOURCE: OWNER_THREAD_ID: 31 OWNER_EVENT_ID: 178 OWNER_EVENT_ID * 3. Row * * OBJECT_TYPE: TABLE OBJECT_SCHEMA: ming OBJECT_NAME: tOBJECT_INSTANCE_BEGIN: 140151695148992 LOCK_TYPE: EXCLUSIVE LOCK_DURATION: TRANSACTION LOCK_STATUS: PENDING SOURCE: OWNER_THREAD_ID: 31 OWNER_EVENT_ID: 2373 rows in set (0.00 sec)
You can see that the session has been granted (GRANTED) an MDL lock of type SHARED_READ. The DDL session is first granted to SHARED_UPGRADABLE, and then needs to be granted the lock of EXCLUSIVE, but it cannot be obtained, so it is in the PENDING state. So all you have to do is find out which GRANTED session is and kill it.
MDL_SHARED_READ, / * A shared metadata lock for cases when there is an intention to modify (and not just read) data in the table. A connection holding SW lock can read table metadata and modify or read table data (after acquiring appropriate table and row-level locks). To be used for tables to be modified by INSERT, UPDATE, DELETE statements, but not LOCK TABLE... WRITE or DDL). Also taken by SELECT... FOR UPDATE. * / MDL_SHARED_UPGRADABLE, / * A shared metadata lock for cases when we need to read data from table and block all concurrent modifications to it (for both data and metadata). Used by LOCK TABLES READ statement.
Find through perforamnce_schema.threads:
Mysql > select * from performance_schema.threads where thread_id=29\ G * * 1. Row * * THREAD_ID: 29 NAME: thread/sql/one_connection TYPE: FOREGROUND PROCESSLIST_ID: 2 PROCESSLIST_USER: Root PROCESSLIST_HOST: localhost PROCESSLIST_DB: mingPROCESSLIST_COMMAND: Sleep PROCESSLIST_TIME: 107PROCESSLIST_STATE: NULL PROCESSLIST_INFO: NULL PARENT_THREAD_ID: 1 ROLE: NULL INSTRUMENTED: YES HISTORY: YES CONNECTION_TYPE: Socket THREAD_OS_ID: 28221 row in set (0.00 sec)
Just take processlist_id,kill and drop the session.
Mysql > kill 2th query OK, 0 rows affected (0.00 sec) mysql > alter table t add c4 int;Query OK, 0 rows affected (3 min 58.00 sec) Records: 0 Duplicates: 0 Warnings: 0
Check pstack: the source of blocking
Thread 9 (Thread 0x7f77c3043700 (LWP 2822)): # 0 0x00007f77f1debf0d in poll () from / lib64/libc.so.6#1 0x00000000012c48df in vio_io_wait (vio=, event=, timeout=28800000) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/vio/viosocket.c:786#2 0x00000000012c49d3 in vio_socket_io_wait (vio= Event=) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/vio/viosocket.c:77#3 0x00000000012c5008 in vio_read (vio=0x505ab10, buf=0x5372800 "\ 32013917", size=4) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/vio/viosocket.c:132#4 0x0000000000c6e4a3 in net_read_raw_loop (net=0x50683f8 Count=4) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/net_serv.cc:672#5 0x0000000000c6ed3b in net_read_packet_header (net=0x50683f8) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/net_serv.cc:756#6 net_read_packet (net= Complen=0x7f77c3042cf8) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/net_serv.cc:822#7 0x0000000000c6efec in my_net_read (net=0x50683f8) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/net_serv.cc:899#8 0x0000000000c7c88c in Protocol_classic::read_packet (this=0x5067c98) at / export/home/pb2/build/sb_0-32013917-1545390211 .74/mysql-5.7.25/sql/protocol_classic.cc:808#9 0x0000000000c7b622 in Protocol_classic::get_command (this=0x5067c98 Com_data=0x7f77c3042da0 Cmd=0x7f77c3042dcc) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/protocol_classic.cc:965#10 0x0000000000d1e3d7 in do_command (thd=0x5066c40) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_parse.cc:964#11 0x0000000000defb14 in handle_connection (arg=) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5. 7.25/sql/conn_handler/connection_handler_per_thread.cc:306#12 0x000000000125d3f4 in pfs_spawn_thread (arg=0x50008f0) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/storage/perfschema/pfs.cc:2190#13 0x00007f77f333ce25 in start_thread () from / lib64/libpthread.so.0#14 0x00007f77f1df6bad in clone () from / lib64/libc.so.6
Blocked:
Thread 7 (Thread 0x7f77c2fdf700 (LWP 2869)): # 0 0x00007f77f3340d42 in pthread_cond_timedwait@@GLIBC_2.3.2 () from / lib64/libpthread.so.0#1 0x0000000000c67d40 in native_cond_timedwait (abstime=0x7f77c2fda790, mutex=0x7f779c000b78, cond=0x7f779c000ba8) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/include/thr_cond.h:129#2 my_cond_timedwait (abstime=0x7f77c2fda790, mp=0x7f779c000b78 Cond=0x7f779c000ba8) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/include/thr_cond.h:182#3 inline_mysql_cond_timedwait (src_line=1861, src_file=0x140f5d0 "/ export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/mdl.cc", abstime=0x7f77c2fda790, mutex=0x7f779c000b78 That=0x7f779c000ba8) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/include/mysql/psi/mysql_thread.h:1229#4 MDL_wait::timed_wait (this=0x7f779c000b78, owner=0x7f779c000ae0, abs_timeout=0x7f77c2fda790, set_status_on_timeout=false, wait_state_name=) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/mdl.cc:1861#5 0x0000000000c6a917 in MDL_context::acquire_lock (this=0x7f779c000b78, mdl_request=0x7f77c2fda810 Lock_wait_timeout=) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/mdl.cc:3655#6 0x0000000000c6b68f in MDL_context::upgrade_shared_lock (this=0x7f779c000b78, mdl_ticket=0x7f779c0103f0, new_type=MDL_EXCLUSIVE, lock_wait_timeout=31536000) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/mdl.cc:3919#7 0x0000000000d82ad7 in mysql_inplace_alter_table (thd=0x7f779c000ae0, table_list=0x7f779c005fe0, table=0x7f779c01af60 Altered_table=0x7f779c068980, ha_alter_info=0x7f77c2fdc1e0, inplace_supported=HA_ALTER_INPLACE_NO_LOCK_AFTER_PREPARE, target_mdl_request=0x7f77c2fdc9a0, alter_ctx=0x7f77c2fdac40) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_table.cc:7449#8 0x0000000000d8550e in mysql_alter_table (thd=0x7f779c000ae0, new_db=0x7f779c068980 "\ 36022\ 006\ 234w\ 177", new_name=0x7f77c2fdc1e0"\ 300323\ 375\ 302w\ 177", create_info=0x7f77c2fdd3c0, table_list=0x7f779c005fe0 Alter_info=0x7f77c2fdd4c0) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_table.cc:9798#9 0x0000000000e8de2c in Sql_cmd_alter_table::execute (this=, thd=0x7f779c000ae0) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_alter.cc:327#10 0x0000000000d17f2a in mysql_execute_command (thd=0x7f779c000ae0 First_level=true) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_parse.cc:4835#11 0x0000000000d1c3fd in mysql_parse (thd=0x7f779c000ae0, parser_state=) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_parse.cc:5570#12 0x0000000000d1d625 in dispatch_command (thd=0x7f779c000ae0, com_data=0x7f77c2fdeda0 Command=COM_QUERY) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_parse.cc:1484#13 0x0000000000d1e4d4 in do_command (thd=0x7f779c000ae0) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/sql/sql_parse.cc:1025#14 0x0000000000defb14 in handle_connection (arg=) at / export/home/pb2/build/sb_0-32013917-1545390211.74ql- 5.7.25/sql/conn_handler/connection_handler_per_thread.cc:306#15 0x000000000125d3f4 in pfs_spawn_thread (arg=0x5d629c0) at / export/home/pb2/build/sb_0-32013917-1545390211.74/mysql-5.7.25/storage/perfschema/pfs.cc:2190#16 0x00007f77f333ce25 in start_thread () from / lib64/libpthread.so.0 read the above Have you learned how to use mysql to observe MDL locks? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.