pt-online-schema-change的概述:alter a table's structure without blocking reads or writes.Specify the database and tablein the DSN.Do not use this tool before reading
its documentation and checking your backups carefully.
DSN:Data Source Name(数据库源名称)
工作原理是创建一个和你要执行alter操作的表一样的空表结构,执行表结构修改,然后从原表
中copy原始数据到表结构修改后的表,当数据copy完成以后就会将原表移走,用新表代替原表,默认
动作是将原表drop掉。在copy数据的过程中,任何在原表的更新操作都会更新到新表,因为这个工具
在会在原表上创建触发器,触发器会将在原表上更新的内容更新到新表(转自飞鸿大哥的)
关键参数介绍:
这里有两个参数需要介绍一下:
--dry-run 这个参数不建立触发器,不拷贝数据,也不会替换原表。只是创建和更改新表。
--execute 这个参数的作用和前面工作原理的介绍的一样,会建立触发器,来保证最新变更的数据会影响至新表。注意:如果不加这个参数,这个工具会在执行一些检查后退出。这一举措是为了让使用这充分了解了这个工具的原理,同时阅读了官方文档。
实例:
- use test;
- set names gbk;
- CREATE TABLE baike_student(
- `userid` int(11) NOT NULL DEFAULT '0',
- `username` varchar(12) NOT NULL DEFAULT '',
- PRIMARY KEY (`userid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='百科学生表';
现在有加一个字段,code字段:
- pt-online-schema-change --lock-wait-time=120 -uzsd -p'zsdzsd' -S /data/3307/mysql.sock --alter "add code smallint(6) NOT NULL DEFAULT '0'" D=test,t=baike_student --execute
从下面的日志中可以看出它的执行过程:
- Altering `test`.`baike_student`...
- Creating new table...
- Created new table test._baike_student_new OK.
- Altering new table...
- Altered `test`.`_baike_student_new` OK.
- Creating triggers...
- Created triggers OK.
- Copying approximately 1 rows...
- Copied rows OK.
- Swapping tables...
- Swapped original and new tables OK.
- Dropping old table...
- Dropped old table `test`.`_baike_student_old` OK.
- Dropping triggers...
- Dropped triggers OK.
- Successfully altered `test`.`baike_student`.
部分转自飞鸿大哥的。
实例是自己做的。
阅读(2702) | 评论(0) | 转发(0) |