innobackupex per table
Posted moss_tan_jun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了innobackupex per table相关的知识,希望对你有一定的参考价值。
#innobackupex export table
innobackupex --defaults-file=/etc/my.cnf --sock=/data/3306/mysql_3306.sock --user=root \
--password=oldboy123 --include=‘tpcc.item‘ --slave-info --safe-slave-backup /data/backup
#innobackupex --apply-log and export cfg and ibd
innobackupex --apply-log --export /data/backup/2018-04-15_04-51-46
#create table item
CREATE TABLE `item` (
`i_id` int(11) NOT NULL,
`i_im_id` int(11) DEFAULT NULL,
`i_name` varchar(24) DEFAULT NULL,
`i_price` decimal(5,2) DEFAULT NULL,
`i_data` varchar(50) DEFAULT NULL,
PRIMARY KEY (`i_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
# discard tablespace
alter table item discard tablespace;
#cp cfg and ibd
cp /data/backup/2018-04-15_04-51-46/tpcc/{item.cfg,item.ibd} /data/3306/data/d3307
#chowm mysql
chown mysql:mysql item.*
#import tablespace
alter table item import tablespace;
以上是关于innobackupex per table的主要内容,如果未能解决你的问题,请参考以下文章
innobackupex:Error:xtrabackup child process has died at /usr/bin/innobackupex