码迷,mamicode.com
首页 > 其他好文 > 详细

带有临时表的slave停止stop或者修改表结构

时间:2017-09-11 18:01:43      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:临时表   主从同步   从库   temp_tables   io_thread   

带有临时表的从库 stop slave,操作步骤

 在stop slave之前一定要确定变量“Slave_open_temp_tables”是否为0,确定该从库是否有打开临时表。如果在不为0时,还有临时表,停止了从库或slave sql thread(IO同步进程),当从库重新开启后,之前对temporary table临时表上的update更新操作不可用,因为未被IO写入磁盘。

正确停从库步骤如下

1.
mysql> stop slave io_thread

2.
mysql> show status like ‘Slave_open_temp_tables‘;

3.
如果‘Slave_open_temp_tables‘不为0,就执行如下,否则跳到第四步
mysql> start slave io_thread

4.
#service mysqld stop

即先停主从的IO进程,确认临时表上的更新是否都写入磁盘,临时表是否为0,若不为0,等IO完了,再关从库


存在临时表的数据更新步骤,主从同步中

  1. 调用IO_thread,将主库的binlog日志同步到从库

  2. 调用sql_thread进程,根据同步到本地的binlog更新数据库。因为存在临时表,sql_thread只是更新临时表中的数据。

  3. 调用IO_thread进程,将临时表中的更新写回原表(表数据修改直接修改磁盘中内容)



带有临时表的slave停止stop或者修改表结构

标签:临时表   主从同步   从库   temp_tables   io_thread   

原文地址:http://jschu.blog.51cto.com/5594807/1964358

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!