• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

mysql 5.6 新特性 主从推延

mysql 搞代码 7年前 (2018-06-05) 143次浏览 已收录 0个评论

mysql 5.6 新特性 主从延迟

     前面一篇文章《mysql replication 主从间如何延迟 — 某大型互联网面试题》已经写到如何延迟主从配置,在5.6里已经实现了这个功能,那么我们看一下官方文档介绍吧 :

http://dev.mysql.com/doc/refman/5.6/en/replication-delayed.html

MySQL 5.6 supports delayed replication such that a slave server deliberately lags behind the master by at least a specified amount of time. The default delay is 0 seconds. Use theMASTER_DELAY option forCHANGE MASTER TO to set the delay to N seconds:

CHANGE MASTER TO MASTER_DELAY = N; 

欢迎大家阅读《mysql 5.6 新特性 主从推延》,跪求各位点评,by 搞代码

An event received from the master is not executed until at least N seconds later than its execution on the master. The exceptions are that there is no delay for format description events or log file rotation events, which affect only the internal state of the SQL thread. 

    mysql 5.6提供了slave服务器指定落后于master服务器一段时间这样的功能.默认没有延迟,通过指定master_delay=n选项来设置延迟n秒:

   change master to master_delay=n;

从master接受的event事件等到过了n秒后才在slave上面执行。不会产生异常,仅仅影响sql线程的内部状态。

Delayed replication can be used for several purposes:

  • To protect against user mistakes on the master. A DBA can roll back a delayed slave to the time just before the disaster.

  • To test how the system behaves when there is a lag. For example, in an application, a lag might be caused by a heavy load on the slave. However, it can be difficult to generate this load level. Delayed replication can simulate the lag without having to simulate the load. It can also be used to debug conditions related to a lagging slave.

  • To inspect what the database looked like long ago, without having to reload a backup. For example, if the delay is one week and the DBA needs to see what the database looked like before the last few days’ worth of development, the delayed slave can be inspected.

         延迟复制用于下面的一些场景:

       1  保护master上的用户错误。dba可以通过延迟回滚到灾难发生前。

       2  当有延迟的时候,测试系统活动状况。如以下例子:在slave上面因为一个大量加载可能导致延迟,那么我们就可以人为模拟这个延迟,虽然大量加载不一定导致延迟。

       3 检查数据库之前的一些状况。

START SLAVE andSTOP SLAVE take effect immediately and ignore any delay.RESET SLAVE resets the delay to 0.

SHOW SLAVE STATUS has three fields that provide information about the delay:

  • SQL_Delay: A nonnegative integer indicating the number of seconds that the slave must lag the master.

  • SQL_Remaining_Delay: When Slave_SQL_Running_State isWaiting until MASTER_DELAY seconds after master executed event, this field contains an integer indicating the number of seconds left of the delay. At other times, this field isNULL.

  • Slave_SQL_Running_State: A string indicating the state of the SQL thread (analogous toSlave_IO_State). The value is identical to theState value of the SQL thread as displayed by SHOW PROCESSLIST

  • 通过 show slave status 查看到三个方面的信息关于延迟
  •  sql_delay :非负整数表明延迟与master
  • sql_remaining_delay: 当发生等待时,这个地方会有非负整数值。平时,这个地方是null。
  • slave_sql_running_state:字符串指定sql线程状态(类似于 slave_io_state)。这个状态与通过show processlist 显示的状态值一致。

When the slave SQL thread is waiting for the delay to elapse before executing an event,SHOW PROCESSLIST displays its State value as Waiting until MASTER_DELAY seconds after master executed event.

The relay-log.info file now contains the delay value, so the file format has changed. SeeSection 16.2.2.2, “Slave Status Logs”. In particular, the first line of the file now indicates how many lines are in the file. If you downgrade a slave server to a version older than MySQL 5.6, the older server will not read the file correctly. To address this, modify the file in a text editor to delete the initial line containing the number of lines.

当slave sql thread  线程正在延迟等待时,show  processlist 显示的它的状态值是等待。the relay-log.info 文件也包含延迟值,因此这个文件格式已经改变。具体看官方文档。

第一次翻译,有些可能不太通顺,欢迎指正探讨。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:mysql 5.6 新特性 主从推延

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址