Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1987071
  • 博文数量: 176
  • 博客积分: 1857
  • 博客等级: 上尉
  • 技术积分: 2729
  • 用 户 组: 普通用户
  • 注册时间: 2012-04-14 22:55
个人简介

吾生有涯,而知无涯,适当止学.循序渐进,步步提升 Talk is cheap, show me the code.

文章分类

全部博文(176)

文章存档

2019年(1)

2018年(14)

2017年(20)

2016年(31)

2015年(15)

2014年(5)

2013年(10)

2012年(80)

分类: Mysql/postgreSQL

2012-10-30 11:47:27

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  这个参数的作用和前面工作原理的介绍的一样,会建立触发器,来保证最新变更的数据会影响至新表。注意:如果不加这个参数,这个工具会在执行一些检查后退出。这一举措是为了让使用这充分了解了这个工具的原理,同时阅读了官方文档。


实例:

  1. use test;

  2. set names gbk;

  3. CREATE TABLE baike_student(
  4. `userid` int(11) NOT NULL DEFAULT '0',
  5. `username` varchar(12) NOT NULL DEFAULT '',
  6. PRIMARY KEY (`userid`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='百科学生表';

现在有加一个字段,code字段:

  1. 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

从下面的日志中可以看出它的执行过程:

  1. Altering `test`.`baike_student`...
  2. Creating new table...
  3. Created new table test._baike_student_new OK.
  4. Altering new table...
  5. Altered `test`.`_baike_student_new` OK.
  6. Creating triggers...
  7. Created triggers OK.
  8. Copying approximately 1 rows...
  9. Copied rows OK.
  10. Swapping tables...
  11. Swapped original and new tables OK.
  12. Dropping old table...
  13. Dropped old table `test`.`_baike_student_old` OK.
  14. Dropping triggers...
  15. Dropped triggers OK.
  16. Successfully altered `test`.`baike_student`.

部分转自飞鸿大哥的。

实例是自己做的。


阅读(2702) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~