码迷,mamicode.com
首页 > 其他好文 > 详细

pt-online-schema-change工具简介

时间:2015-04-15 23:41:43      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:mysq 在线修改表结构 无阻塞 pt-online-schema-change

1、工具简介

    pt-online-schema-change是percona提供的一个mysql在线修改表结构的工具

2、使用场景

    当需要修改线上数据库中某个表的表结构时,发现这个表的数据量比较大,如果使用alter table语句的话可能会阻塞较长的时间,那么可以考虑使用pt-online-schema-change在线修改表结构,而不用担心阻塞应用

3、工作原理

    对于要修改表结构的表,pt-online-schema-change首先会创建一个该表的拷贝,这里只拷贝表结构而不涉及到数据,然后对这个拷贝来修改表结构,由于这个临时表没有数据,且没有应用访问,因此修改会很快且不会影响业务,临时表表结构修改完成后,会将原来的表中的数据拷贝到修改后的临时表中。那么如何保证在开始拷贝数据到数据拷贝完成后这个时间段中原表数据的增量也拷贝到临时表中去呢?pt-online-schema-change通过在原表上创建触发器来实现原表数据的增量导入到临时表中去。当拷贝完成后,通过原子性的rename table操作完成临时表和原表的切换。如下:

    原表:test

    假设临时表为test_new

    原子性的rename table操作:mysql> rename table test to test_old,test_new to test;

    当完成原子性表切换之后,pt-online-schema-change会删除原来的表,此时这张表已经没有应用访问了,所以delete对应用是没有影响的

4、使用限制

    a、pt-online-schema-change操作的表需要有主键或者是唯一性索引

    b、当修改的表中主键是其他表的外键时,默认情况下会失败,需要使用--alter-foreign-keys-method选项来处理

5、应用实例

命令格式如:

    pt-online-schema-change -uroot -p123456 --alter=‘modify name varchar(20) ‘ --execute D=mydb,t=pt_test

    ## -u 用户名

    ## -p 密码

    ## --alter 修改的内容

    ## --execute 只有加了这个这条命令才会真正的执行

    ## D 数据库名

    ## t 表名

## 有pt_test表,结构如下
mysql> show create table pt_test\G
*************************** 1. row ***************************
       Table: pt_test
Create Table: CREATE TABLE `pt_test` (
  `id` int(11) DEFAULT NULL,
  `name` char(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

## 将pt_test表的name字段由char修改为varchar
[root@test opt]# pt-online-schema-change -uroot -p123456 --alter=‘modify name varchar(20) ‘ --execute D=mydb,t=pt_test
No slaves found.  See --recursion-method if host dcmaster01.dba.com has slaves.
Not checking slave lag because no slaves were found and --check-slave-lag was not specified.
Operation, tries, wait:
  copy_rows, 10, 0.25
  create_triggers, 10, 1
  drop_triggers, 10, 1
  swap_tables, 10, 1
  update_foreign_keys, 10, 1
Altering `mydb`.`pt_test`...
Creating new table...
Created new table mydb._pt_test_new OK.
Altering new table...
Altered `mydb`.`_pt_test_new` OK.
2015-04-15T16:17:04 Creating triggers...
2015-04-15T16:17:04 Created triggers OK.
2015-04-15T16:17:04 Copying approximately 1 rows...
2015-04-15T16:17:04 Copied rows OK.
2015-04-15T16:17:04 Swapping tables...
2015-04-15T16:17:04 Swapped original and new tables OK.
2015-04-15T16:17:04 Dropping old table...
2015-04-15T16:17:04 Dropped old table `mydb`.`_pt_test_old` OK.
2015-04-15T16:17:04 Dropping triggers...
2015-04-15T16:17:04 Dropped triggers OK.
Successfully altered `mydb`.`pt_test`.

## 再次查看pt_test的表结构
mysql> show create table pt_test\G
*************************** 1. row ***************************
       Table: pt_test
Create Table: CREATE TABLE `pt_test` (
  `id` int(11) NOT NULL,
  `name` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

针对外键的处理,需要加--alter-foreign-keys-method选项

## 表dept结构
mysql> show create table dept\G
*************************** 1. row ***************************
       Table: dept
Create Table: CREATE TABLE `dept` (
  `deptno` int(11) NOT NULL,
  `dname` char(20) DEFAULT NULL,
  PRIMARY KEY (`deptno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

## 表emp结构
mysql> show create table emp\G
*************************** 1. row ***************************
       Table: emp
Create Table: CREATE TABLE `emp` (
  `empno` int(11) NOT NULL,
  `ename` char(20) DEFAULT NULL,
  `deptno` int(11) DEFAULT NULL,
  PRIMARY KEY (`empno`),
  KEY `_emp_ibfk_1` (`deptno`),
  CONSTRAINT `_emp_ibfk_1` FOREIGN KEY (`deptno`) REFERENCES `dept` (`deptno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

## 修改表dept的dname字段的类型为varchar
[root@dcmaster01 opt]# pt-online-schema-change -uroot -p123456 --alter=‘modify dname varchar(20) ‘ --alter-foreign-keys-method rebuild_constraints --execute D=mydb,t=dept 
No slaves found.  See --recursion-method if host dcmaster01.dba.com has slaves.
Not checking slave lag because no slaves were found and --check-slave-lag was not specified.
Operation, tries, wait:
  copy_rows, 10, 0.25
  create_triggers, 10, 1
  drop_triggers, 10, 1
  swap_tables, 10, 1
  update_foreign_keys, 10, 1
Child tables:
  `mydb`.`emp` (approx. 3 rows)
Will use the rebuild_constraints method to update foreign keys.
Altering `mydb`.`dept`...
Creating new table...
Created new table mydb._dept_new OK.
Altering new table...
Altered `mydb`.`_dept_new` OK.
2015-04-15T16:27:14 Creating triggers...
2015-04-15T16:27:14 Created triggers OK.
2015-04-15T16:27:14 Copying approximately 3 rows...
2015-04-15T16:27:14 Copied rows OK.
2015-04-15T16:27:14 Swapping tables...
2015-04-15T16:27:14 Swapped original and new tables OK.
2015-04-15T16:27:14 Rebuilding foreign key constraints...
2015-04-15T16:27:14 Rebuilt foreign key constraints OK.
2015-04-15T16:27:14 Dropping old table...
2015-04-15T16:27:14 Dropped old table `mydb`.`_dept_old` OK.
2015-04-15T16:27:14 Dropping triggers...
2015-04-15T16:27:14 Dropped triggers OK.
Successfully altered `mydb`.`dept`.

## 再次查看dept和emp的表结构
mysql> show create table dept\G
*************************** 1. row ***************************
       Table: dept
Create Table: CREATE TABLE `dept` (
  `deptno` int(11) NOT NULL,
  `dname` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`deptno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

mysql> show create table emp\G
*************************** 1. row ***************************
       Table: emp
Create Table: CREATE TABLE `emp` (
  `empno` int(11) NOT NULL,
  `ename` char(20) DEFAULT NULL,
  `deptno` int(11) DEFAULT NULL,
  PRIMARY KEY (`empno`),
  KEY `__emp_ibfk_1` (`deptno`),
  CONSTRAINT `__emp_ibfk_1` FOREIGN KEY (`deptno`) REFERENCES `dept` (`deptno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

    --alter-foreign-keys-method选项的取值有4种,分别为:

    a、auto

    b、rebuild_constraints

    c、drop_swap

    d、none

    rebuild_constraints,就是先drop外键约束,最后再建回来,percona官方建议使用这种方式。

    drop_swap,是通过关闭外键约束的检查(FOREIGN_KEY_CHECKS=0),在临时表重命名成原表之前删除掉原表,这种方式速度快,无阻塞,但是不安全。对数据完整性有高要求的慎重。

    auto,就是会根据实际情况自动的选择使用rebuild_constraints还是drop_swap。

    none,使用这种方式可以完成表结构的修改,但是子表的外键约束会失效,需要dba手动来处理。



本文出自 “勇敢向前,坚决向左” 博客,请务必保留此出处http://quenlang.blog.51cto.com/4813803/1633023

pt-online-schema-change工具简介

标签:mysq 在线修改表结构 无阻塞 pt-online-schema-change

原文地址:http://quenlang.blog.51cto.com/4813803/1633023

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!