仅 MySQL 转储恢复增量
在工作中,我们有一个脚本每天晚上都会转储 mysql 数据。对于开发,我们通常需要使用最新转储中的数据。一段时间以来,我们每天都进行数据库恢复,但现在恢复每天需要花费近一个小时。有没有办法让我们在 mysql 中进行增量恢复或者只是进行增量转储。有点像补丁文件,但是是针对 mysql 的。任何有关此主题的帮助将不胜感激。
-赫里尼克
At work we have a script that does a mysql data dump everynight. For development we usually need to work with data from the most recent dump. We kept doing a database restore every day for some time but now we are getting to a point where the restore is taking close to an hour everyday. Is there a way for us to do a delta restore in mysql or maybe just do a delta dump. Kind of like a patch file but for mysql. Any help on this topic would be greatly appreciated.
-Hrithik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
增量备份可能是您的选择最好的选择。它使用日志文件创建类似于补丁文件的内容。
如果两台服务器运行相同版本的 MySQL,您只需 复制MySQL 文件。
An incremental backup will probably be your best option. Using a log file it creates something similar to a patch file.
If both servers are running the same version of MySQL you can simply copy the MySQL files.