原理

percona xtrabackup备份过程主要分为以下几点:

1、xtrabackup在启动时会记住LSN(log sequence number),然后复制所有的数据文件

2、xtrabackup会运行一个后台进程,用于监控事务日志(redo.log),并从事务日志中复制最新的修改

3、准备过程(prepare),xtrabackup使用之前复制的事务日志,对各个数据文件执行灾难恢复

4、执行flush tables with read lock来阻止新的写入进来,并把MyISAM表数据刷写到硬盘上,之后复制MyISAM数据文件,最后释放锁。

其中1-3步骤是xtrabackup来实现,第4步由innobackupex来实现。

备份MyISAM和Innodb表最终会处于一致,在prepare过程结束后,Innodb表数据已经前滚到整个备份数据结束的点,而不是回滚到xtrabackuo刚开始的点。

通过复制数据文件、日志文件和提交日志到数据文件(前滚)实现各种复合备份方式。

innobackupex备份对MyISAM表之前要对全库进行加READ LOCK,阻塞写操作,对Innodb表备份不会阻塞读写。

备份演练

、创建备份目录
mkdir -p /data1/backup 、拷贝全量数据
innobackupex --defaults-file=/data1/mysql6011/my6011.cnf --user=root --password='xxx' --tmpdir=/data1/tmp/ --socket=/tmp/mysql6011.sock --no-timestamp --slave-info /data1/backup/mysql6011 > innobackupex.log >& 注意点:
a、设置tmp为目录较大的位置
b、设置no-timestamp,否则以时间作为前缀
c、设置备份的目录,/data1/backup先提前创建好,然后再以mysql6011作为备份的目录名称
d、配置文件中character_set_client=utf8,导致错误 、拷贝配置文件到另一台机器上 4、回放redolog(apply-log)

如果给主库搭建从库:

http://www.percona.com/doc/percona-xtrabackup/2.1/howtos/setting_up_replication.html

binlog点的位置为xtrabackup_binlog_info文件中

apply-log产生的日志:

[root@eos177 data1]# innobackupex -defaults-file=/data1/mysql6011/my6011.cnf --apply-log /data1/mysql6011/

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright ,  Innobase Oy
and Percona Inc -. All Rights Reserved. This software is published under
the GNU GENERAL PUBLIC LICENSE Version , June . IMPORTANT: Please check that the apply-log run completes successfully.
At the end of a successful apply-log run innobackupex
prints "completed OK!". :: innobackupex: Starting ibbackup with command: xtrabackup_55 --defaults-file="/data1/mysql6011/my6011.cnf" --prepare --target-dir=/data1/mysql6011 xtrabackup_55 version 1.6. for Percona Server 5.5. Linux (x86_64) (revision id: )
xtrabackup: cd to /data1/mysql6011
xtrabackup: This target seems to be not prepared yet.
xtrabackup: xtrabackup_logfile detected: size=, start_lsn=()
xtrabackup: Temporary instance for recovery is set as followings.
xtrabackup: innodb_data_home_dir = ./
xtrabackup: innodb_data_file_path = ibdata1:100M:autoextend
xtrabackup: innodb_log_group_home_dir = ./
xtrabackup: innodb_log_files_in_group =
xtrabackup: innodb_log_file_size =
:: InnoDB: Using Linux native AIO
xtrabackup: Starting InnoDB instance for recovery.
xtrabackup: Using bytes for buffer pool (set by --use-memory parameter)
:: InnoDB: The InnoDB memory heap is disabled
:: InnoDB: Mutexes and rw_locks use GCC atomic builtins
:: InnoDB: Compressed tables use zlib 1.2.
:: InnoDB: Using Linux native AIO
:: InnoDB: Warning: innodb_file_io_threads is deprecated. Please use innodb_read_io_threads and innodb_write_io_threads instead
:: InnoDB: Initializing buffer pool, size = 100.0M
:: InnoDB: Completed initialization of buffer pool
:: InnoDB: highest supported file format is Barracuda.
InnoDB: Log scan progressed past the checkpoint lsn
:: InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Doing recovery: scanned up to log sequence number ( %)
:: InnoDB: Starting an apply batch of log records to the database...
InnoDB: Progress in percents:
InnoDB: Apply batch completed
InnoDB: Last MySQL binlog file position , file name ./mysql-bin.
:: InnoDB: Waiting for the background threads to start
:: Percona XtraDB (http://www.percona.com) 1.1.5-20.0 started; log sequence number 37043837591 [notice (again)]
If you use binary log and don't use any hack of group commit,
the binary log position seems to be:
InnoDB: Last MySQL binlog file position , file name ./mysql-bin. xtrabackup: starting shutdown with innodb_fast_shutdown =
:: InnoDB: Starting shutdown...
:: InnoDB: Shutdown completed; log sequence number :: innobackupex: Restarting xtrabackup with command: xtrabackup_55 --defaults-file="/data1/mysql6011/my6011.cnf" --prepare --target-dir=/data1/mysql6011
for creating ib_logfile* xtrabackup_55 version 1.6. for Percona Server 5.5. Linux (x86_64) (revision id: )
xtrabackup: cd to /data1/mysql6011
xtrabackup: This target seems to be already prepared.
xtrabackup: notice: xtrabackup_logfile was already used to '--prepare'.
xtrabackup: Temporary instance for recovery is set as followings.
xtrabackup: innodb_data_home_dir = ./
xtrabackup: innodb_data_file_path = ibdata1:100M:autoextend
xtrabackup: innodb_log_group_home_dir = ./
xtrabackup: innodb_log_files_in_group =
xtrabackup: innodb_log_file_size =
:: InnoDB: Using Linux native AIO
xtrabackup: Starting InnoDB instance for recovery.
xtrabackup: Using bytes for buffer pool (set by --use-memory parameter)
:: InnoDB: The InnoDB memory heap is disabled
:: InnoDB: Mutexes and rw_locks use GCC atomic builtins
:: InnoDB: Compressed tables use zlib 1.2.
:: InnoDB: Using Linux native AIO
:: InnoDB: Warning: innodb_file_io_threads is deprecated. Please use innodb_read_io_threads and innodb_write_io_threads instead
:: InnoDB: Initializing buffer pool, size = 100.0M
:: InnoDB: Completed initialization of buffer pool
:: InnoDB: Log file ./ib_logfile0 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile0 size to MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Progress in MB:
:: InnoDB: Log file ./ib_logfile1 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile1 size to MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Progress in MB:
:: InnoDB: Log file ./ib_logfile2 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile2 size to MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Progress in MB:
:: InnoDB: highest supported file format is Barracuda.
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
:: InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Last MySQL binlog file position , file name ./mysql-bin.
:: InnoDB: Waiting for the background threads to start
:: Percona XtraDB (http://www.percona.com) 1.1.5-20.0 started; log sequence number 37043847180 [notice (again)]
If you use binary log and don't use any hack of group commit,
the binary log position seems to be:
InnoDB: Last MySQL binlog file position , file name ./mysql-bin. xtrabackup: starting shutdown with innodb_fast_shutdown =
:: InnoDB: Starting shutdown...
:: InnoDB: Shutdown completed; log sequence number
:: innobackupex: completed OK!

copy-back

innobackupex: Error: Original data directory '/data1/mysql6011' does not exist! at /etc/dbCluster/innobackupex line .
[root@eos177 data1]# innobackupex -defaults-file=/data1/backup/mysql6011/my6011.cnf /data1/backup/mysql6011 --copy-back

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright ,  Innobase Oy
and Percona Inc -. All Rights Reserved. This software is published under
the GNU GENERAL PUBLIC LICENSE Version , June . IMPORTANT: Please check that the copy-back run completes successfully.
At the end of a successful copy-back run innobackupex
prints "completed OK!". innobackupex: Starting to copy MyISAM tables, indexes,
innobackupex: .MRG, .TRG, .TRN, .ARM, .ARZ, .CSM, .CSV, .opt, and .frm files
innobackupex: in '/data1/backup/mysql6011'
innobackupex: back to original data directory '/data1/mysql6011'
innobackupex: Copying directory '/data1/backup/mysql6011/performance_schema'
innobackupex: Copying file '/data1/backup/mysql6011/xtrabackup_checkpoints'
innobackupex: Copying file '/data1/backup/mysql6011/xtrabackup_slave_info'
innobackupex: Copying directory '/data1/backup/mysql6011/mysql'
innobackupex: Copying file '/data1/backup/mysql6011/xtrabackup_binary'
innobackupex: Copying file '/data1/backup/mysql6011/xtrabackup_binlog_info'
innobackupex: Copying directory '/data1/backup/mysql6011/zjmdmm'
innobackupex: Copying file '/data1/backup/mysql6011/my6011.cnf'
innobackupex: Copying directory '/data1/backup/mysql6011/elink'
innobackupex: Copying file '/data1/backup/mysql6011/xtrabackup_binlog_pos_innodb'
innobackupex: Copying directory '/data1/backup/mysql6011/test' innobackupex: Starting to copy InnoDB tables and indexes
innobackupex: in '/data1/backup/mysql6011'
innobackupex: back to original InnoDB data directory '/data1/mysql6011'
innobackupex: Copying file '/data1/backup/mysql6011/ibdata1' innobackupex: Starting to copy InnoDB log files
innobackupex: in '/data1/backup/mysql6011'
innobackupex: back to original InnoDB log directory '/data1/mysql6011'
innobackupex: Copying file '/data1/backup/mysql6011/ib_logfile0'
innobackupex: Copying file '/data1/backup/mysql6011/ib_logfile2'
innobackupex: Copying file '/data1/backup/mysql6011/ib_logfile1'
innobackupex: Finished copying back files. :: innobackupex: completed OK!

使用xtrabackup进行备份数据的压缩和加密

http://noops.me/?p=159

percona_xtrabackup的更多相关文章

随机推荐

  1. Python学习手册 :Python 学习笔记第一天

    获取当前目录路径: import os os.getcwd() 在输入python程序时,尽量让不是嵌套结构的语句处于最左侧,要不然系统或许会出现"SyntaxError"错误 获 ...

  2. HDU2036 改革春风吹满地

    第一次看到这题果断放弃,毕竟几何白痴,第二次刷没做的题的时候突然想到这个三角形面积的向量法:S=|x1*y2-x2*y1|  但是此题可能是凹多边形,所以不能加绝对值,可以画个凹四边形看看. HDU2 ...

  3. html加载时事件触发顺序

    一般情况下页面的响应加载顺序时,域名解析-加载html-加载js和css-加载图片等其他信息. jq ready()的方法就是Dom Ready,他的作用或者意义就是:在DOM加载完成后就可以可以对D ...

  4. asp.net mvc5中使用缓存依赖SqlCacheDependency

    缓存是用来提高应用性能,降低服务器压力.适用于数据不易变,数据易通用的情景, 对于动态查询数据,例如数据分析,最好放弃使用缓存.使用缓存最麻烦的就是保持源数据和缓存的中的数据一致. 缓存(Cache) ...

  5. web.xml中<init-param>报错

    报错信息如下图: 控制台报错:严重: Servlet /*** threw load() exceptionjava.lang.ClassNotFoundException: MyApplicatio ...

  6. LeetCode 167. Two Sum II - Input array is sorted (两数之和之二 - 输入的是有序数组)

    Given an array of integers that is already sorted in ascending order, find two numbers such that the ...

  7. 【20171026早】alert(1) to win - 第六、七、八题

    早上7点起床,又写了一篇小说发在了起点网上,有兴趣的可以看看.点击这里 忙完后,继续练习,刚开始发现自己答题的速度有些慢,可能是因为对于html,javascript知识不是很精通,但是话又说回来,谁 ...

  8. 两个HTML地址栏传中文参数乱码

    这个不叫乱码,我非专业.这个是url编码,js本身就是读取url编码的.对于js获取url的中文你可以尝试用escape() encodeURI() encodeURIComponent() deco ...

  9. linux虚拟机局域网网卡配置

    1:配置虚拟机        1-1:打开:虚拟机下编辑->虚拟网络编辑器             选择VMnet信息下的桥接模式,在“桥接到”下拉列表里选择自己的网卡.            ...

  10. hdu 3001 Travelling(状态压缩 三进制)

    Travelling Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...