您的位置:首页 > 其它

innodb在线备份的新方法

2008-11-22 22:15 183 查看
google code
google-mysql-tools公布了一个innodb在线备份的新方法:在不关闭mysql服务器的情况下,可以禁止掉所有的innodb文件的
写,但不阻塞读,这个时候可以利用操作系统的文件拷贝命令进行在线备份。要实现这个功能,需要打一个google的mysql开发团队弄出的一个patch.

下面是这个patch的详细介绍:

InnodbFreeze
Freeze Innodb file system activity
Commands
set global innodb_disallow_writes=ON
set global innodb_disallow_writes=OFF
Purpose
These
enable and disable all Innodb file system activity except for reads. If
you want to take a database backup without stopping the server and you
don't use LVM, ZFS or some other storage software that provides
snapshots, then you can use this to halt all destructive file system
activity from InnoDB and then backup the InnoDB data files. Note that
it is not sufficient to run FLUSH TABLES WITH READ LOCK as there are
background IO threads used by InnoDB that may still do IO.

5.0.37 Patch
从一个网友的回复中,看到基本上可以达到相同效果的另外一种方法:

Any chance that you can
accomplish a similar mechanism by setting innodb_max_dirty_pages_pct to
zero and then waiting for dirty buffers to equal zero... then
performing the snapshot (of course with a READ LOCK) on all the tables.

I generally think this patch is a bit more elegant though.

Kevin Burton (spinn3r.com)
总的来说,mysql的备份与ORACLE的备份相比,还有许多需要去改进的地方。google自己的mysql开发团队一直都在努力改变着mysql的代码,可以根据自己的需求去定制mysql,什么时候我们也可以这样做呢?






--EOF--
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: