共计 1158 个字符,预计需要花费 3 分钟才能阅读完成。
本篇内容介绍了“MySQL 中双主情况下跳过 Event 的方式是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
双主情况下跳过相同 server id Event 的方式:
IO 线程 通过对比 SERVER_ID 进行跳过操作
{ mi- set_master_log_pos(mi- get_master_log_pos() + inc_pos);
memcpy(rli- ign_master_log_name_end, mi- get_master_log_name(), FN_REFLEN);
DBUG_ASSERT(rli- ign_master_log_name_end[0]);
rli- ign_master_log_pos_end= mi- get_master_log_pos();
}
SQL 线程构造一个 Rotate_log_event
if (rli- ign_master_log_name_end[0])
{
/* We generate and return a Rotate, to make our positions advance */
DBUG_PRINT(info ,( seeing an ignored end segment));
ev= new Rotate_log_event(rli- ign_master_log_name_end,
0, rli- ign_master_log_pos_end, exec_relay_log_event
Rotate_log_event::DUP_NAME);
rli- ign_master_log_name_end[0]= 0;
mysql_mutex_unlock(log_lock);exec_relay_log_event
if (unlikely(!ev))
{
errmsg= Slave SQL thread failed to create a Rotate event
(out of memory?), SHOW SLAVE STATUS may be inaccurate
goto err;
}
ev- server_id= 0; // don t be ignored by slave SQL thread
DBUG_RETURN(ev);
}
这样这些 Event 不会写入到 relay log,SQL 线程也不会读取,同时 pos 也会做相应的增加。
“MySQL 中双主情况下跳过 Event 的方式是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!
正文完