是什么
成都創(chuàng)新互聯(lián)公司專注于雙灤企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城網(wǎng)站制作。雙灤網(wǎng)站建設(shè)公司,為雙灤等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站設(shè)計,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)歡迎關(guān)注我的《深入理解MySQL主從原理 32講 》,如下:
如果圖片不能顯示可查看下面鏈接:
https://www.jianshu.com/p/d636215d767f
整個尋找過程應(yīng)該找到key_BINLOG_COND_done這個取值,然后去看他是在那里被定義到相應(yīng)的mutex/cond上,然后查找mutex/cond的作用即可。
定義:
static PSI_cond_info all_server_conds[]=
{
{ &key_PAGE_cond, “PAGE::cond”, 0},
{ &key_COND_active, “TC_LOG_MMAP::COND_active”, 0},
{ &key_COND_pool, “TC_LOG_MMAP::COND_pool”, 0},
{ &key_BINLOG_COND_done, “MYSQL_BIN_LOG::COND_done”, 0},
{ &key_BINLOG_update_cond, “MYSQL_BIN_LOG::update_cond”, 0},
注冊:
register_cond_class
初始化:
MYSQL_BIN_LOG::set_psi_keys
Stage_manager::init
*/
if (!leader) //如果不是 leader
{
mysql_mutex_lock(&m_lock_done);//加鎖
while (thd->get_transaction()->m_flags.pending) //喚醒時 設(shè)置每個事物的狀態(tài) 為ture
mysql_cond_wait(&m_cond_done, &m_lock_done);//釋放鎖 等待條件滿足 pending=false
mysql_mutex_unlock(&m_lock_done);//解鎖
}
Breakpoint 2, MYSQL_BIN_LOG::set_psi_keys (this=0x2e83640, key_LOCK_index=7, key_LOCK_commit=3, key_LOCK_commit_queue=4, key_LOCK_done=5, key_LOCK_flush_queue=6,
key_LOCK_log=8, key_LOCK_binlog_end_pos=9, key_LOCK_sync=10, key_LOCK_sync_queue=11, key_LOCK_xids=12, key_COND_done=4, key_update_cond=5, key_prep_xids_cond=6,
key_file_log=2, key_file_log_index=4, key_file_log_cache=3, key_file_log_index_cache=5) at /mysqldata/percona-server-locks-detail-5.7.22/sql/binlog.h:539
539 m_key_COND_done= key_COND_done;
(gdb) bt
#0 MYSQL_BIN_LOG::set_psi_keys (this=0x2e83640, key_LOCK_index=7, key_LOCK_commit=3, key_LOCK_commit_queue=4, key_LOCK_done=5, key_LOCK_flush_queue=6,
key_LOCK_log=8, key_LOCK_binlog_end_pos=9, key_LOCK_sync=10, key_LOCK_sync_queue=11, key_LOCK_xids=12, key_COND_done=4, key_update_cond=5, key_prep_xids_cond=6,
key_file_log=2, key_file_log_index=4, key_file_log_cache=3, key_file_log_index_cache=5) at /mysqldata/percona-server-locks-detail-5.7.22/sql/binlog.h:539
#1 0x0000000000edcee4 in init_common_variables () at /mysqldata/percona-server-locks-detail-5.7.22/sql/mysqld.cc:2974
#2 0x0000000000ee117f in mysqld_main (argc=82, argv=0x2f26738) at /mysqldata/percona-server-locks-detail-5.7.22/sql/mysqld.cc:4938
#3 0x0000000000ed8504 in main (argc=4, argv=0x7fffffffe3f8) at /mysqldata/percona-server-locks-detail-5.7.22/sql/main.cc:25
建立條件變量
Breakpoint 3, Stage_manager::init (this=0x2e84858, key_LOCK_flush_queue=6, key_LOCK_sync_queue=11, key_LOCK_commit_queue=4, key_LOCK_done=5, key_COND_done=4)
at /mysqldata/percona-server-locks-detail-5.7.22/sql/binlog.h:156
156 mysql_mutex_init(key_LOCK_done, &m_lock_done, MY_MUTEX_INIT_FAST);
(gdb) bt
#0 Stage_manager::init (this=0x2e84858, key_LOCK_flush_queue=6, key_LOCK_sync_queue=11, key_LOCK_commit_queue=4, key_LOCK_done=5, key_COND_done=4)
at /mysqldata/percona-server-locks-detail-5.7.22/sql/binlog.h:156
#1 0x000000000187cbea in MYSQL_BIN_LOG::init_pthread_objects (this=0x2e83640) at /mysqldata/percona-server-locks-detail-5.7.22/sql/binlog.cc:3601
#2 0x0000000000edcef3 in init_common_variables () at /mysqldata/percona-server-locks-detail-5.7.22/sql/mysqld.cc:2983
#3 0x0000000000ee117f in mysqld_main (argc=82, argv=0x2f26738) at /mysqldata/percona-server-locks-detail-5.7.22/sql/mysqld.cc:4938
#4 0x0000000000ed8504 in main (argc=4, argv=0x7fffffffe3f8) at /mysqldata/percona-server-locks-detail-5.7.22/sql/main.cc:25