Mysql 增量备份方法:使用 binlog 和 change master:启用二进制日志并记录起始位点,使用 mysqldump 备份并更新起始位点。使用 pt-table-chec
Mysql 增量备份方法:使用 binlog 和 change master:启用二进制日志并记录起始位点,使用 mysqldump 备份并更新起始位点。使用 pt-table-checksum:创建初始快照,使用 pt-table-checksum 进行增量备份。
MySQL 提供了两种主要方法进行增量备份:
<a style="color:#f60; text-decoration:underline;" href="https://www.PHP.cn/zt/15713.html" target="_blank">mysql</a>dump -B --master-data=2 --start-position=START_POSITION --stop-position=STOP_POSITION DATABASE_NAME > backup.sql
pt-table-checksum --create DATABASE_NAME > snapshot.chk
pt-table-checksum --update DATABASE_NAME --base-checksum=snapshot.chk --snapshot=new_snapshot.chk > incremental.sql
方法 1 的优点:
方法 1 的缺点:
方法 2 的优点:
方法 2 的缺点:
以上就是mysql如何备份增量的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: mysql如何备份增量
本文链接: https://lsjlt.com/news/620172.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0