pt-online-schema-change
[root@mysql5 ~]# pt-online-schema-change --alter="drop column address" h=127.0.0.1,P=,u=root,p=1qaz2wsx,D=test,t=ddl_test --print --dry-run
Operation, tries, wait:
copy_rows, , 0.25
create_triggers, ,
drop_triggers, ,
swap_tables, ,
update_foreign_keys, ,
Starting a dry run. `test`.`ddl_test` will not be altered. Specify --execute instead of --dry-run to alter the table.
步骤1,创建空表,其命名规则是_+原表名+_new
Creating new table...
CREATE TABLE `test`.`_ddl_test_new` (
`id` int() NOT NULL AUTO_INCREMENT,
`name` varchar() NOT NULL DEFAULT '',
`age` int() DEFAULT '',
`address` varchar() NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT= DEFAULT CHARSET=utf8
Created new table test._ddl_test_new OK.
#步骤2,根据语句更新新表结构
Altering new table...
ALTER TABLE `test`.`_ddl_test_new` drop column address
Altered `test`.`_ddl_test_new` OK.
#步骤3,在原表上创建触发器,以便后续原表上的操作同步到新表
Not creating triggers because this is a dry run.
CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNORE FROM `test`.`_ddl_test_new` WHERE `test`.`_ddl_test_new`.`id` <=> OLD.`id`
CREATE TRIGGER `pt_osc_test_ddl_test_upd` AFTER UPDATE ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
CREATE TRIGGER `pt_osc_test_ddl_test_ins` AFTER INSERT ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
Not copying rows because this is a dry run.
步骤4,拷贝原表数据到新表,数据量大时会根据主键进行分段chunk插入
INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `age` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) AND ((`id` <= ?)) LOCK IN SHARE MODE /*pt-online-schema-change 26819 copy nibble*/
SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) ORDER BY `id` LIMIT ?, /*next chunk boundary*/ #最后清除临时生成的表、触发器。默认情况下会删除原表
Not swapping tables because this is a dry run.
Not dropping old table because this is a dry run.
Not dropping triggers because this is a dry run.
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_del`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_upd`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_ins`;
--29T15:: Dropping new table...
DROP TABLE IF EXISTS `test`.`_ddl_test_new`;
--29T15:: Dropped new table OK.
Dry run complete. `test`.`ddl_test` was not altered.
[root@mysql5 ~]# 因为这不是真正执行,真正执行有个过程
拷贝完成后,移走原表,用新表代替(RENAME TABLE)。其通过一个RENAME TABLE同时处理两个表,实现原子操作。
--29T16:: Copied rows OK.
--29T16:: Swapping tables...
RENAME TABLE `test`.`ddl_test` TO `test`.`_ddl_test_old`, `test`.`_ddl_test_new` TO `test`.`ddl_test`
--29T16:: Swapped original and new tables OK.
##如果原表有触发器
Oracle可以在一个触发器触发insert,delete,update事件,
MySQL 触发器 只支持一个事件,然后一个表允许三个事件触发器(insert,update,deleted),在5.7之前,一个表只能一类型的触发器,不能存在两个(update )事件触发器,假设已经有了一个update的事件触发器,那么使用pt-online-schema-change加三个事件触发期的时候会加不上,导致工具无法使用。
那么下面来看看,整个实验过程,
##首先,执行这个工具,前面不能有长事务(如:大查询,大范围更新插入语句),下面就来看看又大事务会咋样
(mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [(none)]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | NULL | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) 哈哈,有前面大查询一样要等待MDL锁,MDL锁这个坑很大,所以有在线DDL也不能随心所欲的执行 测试一下删除字段 (mysql5.-)root@localhost [(none)]>
[root@mysql5 ~]# pt-online-schema-change --alter="drop column address" h=127.0.0.1,P=,u=root,p=1qaz2wsx,D=test,t=ddl_test --charset=utf8 --print --execute
No slaves found. See --recursion-method if host mysql5. has slaves.
Not checking slave lag because no slaves were found and --check-slave-lag was not specified.
Operation, tries, wait:
copy_rows, , 0.25
create_triggers, ,
drop_triggers, ,
swap_tables, ,
update_foreign_keys, ,
Altering `test`.`ddl_test`...
Creating new table...
CREATE TABLE `test`.`_ddl_test_new` (
`id` int() NOT NULL AUTO_INCREMENT,
`name` varchar() NOT NULL DEFAULT '',
`age` int() DEFAULT '',
`address` varchar() NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT= DEFAULT CHARSET=utf8
Created new table test._ddl_test_new OK.
Altering new table...
ALTER TABLE `test`.`_ddl_test_new` drop column address
Altered `test`.`_ddl_test_new` OK.
--29T15:: Creating triggers...
CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNORE FROM `test`.`_ddl_test_new` WHERE `test`.`_ddl_test_new`.`id` <=> OLD.`id`
CREATE TRIGGER `pt_osc_test_ddl_test_upd` AFTER UPDATE ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
CREATE TRIGGER `pt_osc_test_ddl_test_ins` AFTER INSERT ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
--29T15:: Created triggers OK.
--29T15:: Copying approximately rows...
INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `age` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) AND ((`id` <= ?)) LOCK IN SHARE MODE /*pt-online-schema-change 26826 copy nibble*/
SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) ORDER BY `id` LIMIT ?, /*next chunk boundary*/
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
--29T16:: Copied rows OK.
--29T16:: Swapping tables...
RENAME TABLE `test`.`ddl_test` TO `test`.`_ddl_test_old`, `test`.`_ddl_test_new` TO `test`.`ddl_test`
--29T16:: Swapped original and new tables OK.
--29T16:: Dropping old table...
DROP TABLE IF EXISTS `test`.`_ddl_test_old`
--29T16:: Dropped old table `test`.`_ddl_test_old` OK.
--29T16:: Dropping triggers...
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_del`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_upd`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_ins`;
--29T16:: Dropped triggers OK.
Successfully altered `test`.`ddl_test`.
[root@mysql5 ~]# (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> delete from ddl_test where id=;
Query OK, row affected (0.05 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec)
###执行一下DML语句
(mysql5.-)root@localhost [test]> update ddl_test set name='12eswq' where id=;
Query OK, rows affected (0.00 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> update ddl_test set name='12eswq' where id=;
Query OK, row affected (0.00 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ' |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> ##增加字段测试
[root@mysql5 ~]# pt-online-schema-change --alter="add column address varchar(100) not null default ''" h=127.0.0.1,P=,u=root,p=1qaz2wsx,D=test,t=ddl_test --print --execute
No slaves found. See --recursion-method if host mysql5. has slaves.
Not checking slave lag because no slaves were found and --check-slave-lag was not specified.
Operation, tries, wait:
copy_rows, , 0.25
create_triggers, ,
drop_triggers, ,
swap_tables, ,
update_foreign_keys, ,
Altering `test`.`ddl_test`...
Creating new table...
CREATE TABLE `test`.`_ddl_test_new` (
`id` int() NOT NULL AUTO_INCREMENT,
`name` varchar() NOT NULL DEFAULT '',
`age` int() DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT= DEFAULT CHARSET=utf8
Created new table test._ddl_test_new OK.
Altering new table...
ALTER TABLE `test`.`_ddl_test_new` add column address varchar() not null default ''
Altered `test`.`_ddl_test_new` OK.
--29T16:: Creating triggers...
CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNORE FROM `test`.`_ddl_test_new` WHERE `test`.`_ddl_test_new`.`id` <=> OLD.`id`
CREATE TRIGGER `pt_osc_test_ddl_test_upd` AFTER UPDATE ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
CREATE TRIGGER `pt_osc_test_ddl_test_ins` AFTER INSERT ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
--29T16:: Created triggers OK.
--29T16:: Copying approximately rows...
INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `age` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) AND ((`id` <= ?)) LOCK IN SHARE MODE /*pt-online-schema-change 26858 copy nibble*/
SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) ORDER BY `id` LIMIT ?, /*next chunk boundary*/
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
--29T16:: Copied rows OK.
--29T16:: Swapping tables...
RENAME TABLE `test`.`ddl_test` TO `test`.`_ddl_test_old`, `test`.`_ddl_test_new` TO `test`.`ddl_test`
--29T16:: Swapped original and new tables OK.
--29T16:: Dropping old table...
DROP TABLE IF EXISTS `test`.`_ddl_test_old`
--29T16:: Dropped old table `test`.`_ddl_test_old` OK.
--29T16:: Dropping triggers...
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_del`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_upd`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_ins`;
--29T16:: Dropped triggers OK.
Successfully altered `test`.`ddl_test`.
[root@mysql5 ~]# (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ' |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) ##来个DML看看
(mysql5.-)root@localhost [test]> delete from ddl_test where id=;
Query OK, rows affected (0.03 sec) (mysql5.-)root@localhost [test]> delete from ddl_test where id=;
Query OK, rows affected (0.00 sec) (mysql5.-)root@localhost [test]> update ddl_test set name='adfadf' where id=;
Query OK, rows affected (0.00 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `a |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> ###
[root@mysql5 ~]# pt-online-schema-change --alter="add column address varchar(100) not null default ''" h=127.0.0.1,P=,u=root,p=1qaz2wsx,D=test,t=ddl_test --print --execute
No slaves found. See --recursion-method if host mysql5. has slaves.
Not checking slave lag because no slaves were found and --check-slave-lag was not specified.
Operation, tries, wait:
copy_rows, , 0.25
create_triggers, ,
drop_triggers, ,
swap_tables, ,
update_foreign_keys, ,
Altering `test`.`ddl_test`...
Creating new table...
CREATE TABLE `test`.`_ddl_test_new` (
`id` int() NOT NULL AUTO_INCREMENT,
`name` varchar() NOT NULL DEFAULT '',
`age` int() DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT= DEFAULT CHARSET=utf8
Created new table test._ddl_test_new OK.
Altering new table...
ALTER TABLE `test`.`_ddl_test_new` add column address varchar() not null default ''
Altered `test`.`_ddl_test_new` OK.
--29T16:: Creating triggers...
CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNORE FROM `test`.`_ddl_test_new` WHERE `test`.`_ddl_test_new`.`id` <=> OLD.`id`
CREATE TRIGGER `pt_osc_test_ddl_test_upd` AFTER UPDATE ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
CREATE TRIGGER `pt_osc_test_ddl_test_ins` AFTER INSERT ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`)
--29T16:: Created triggers OK.
--29T16:: Copying approximately rows...
INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`) SELECT `id`, `name`, `age` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) AND ((`id` <= ?)) LOCK IN SHARE MODE /*pt-online-schema-change 26858 copy nibble*/
SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) ORDER BY `id` LIMIT ?, /*next chunk boundary*/
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
--29T16:: Copied rows OK.
--29T16:: Swapping tables...
RENAME TABLE `test`.`ddl_test` TO `test`.`_ddl_test_old`, `test`.`_ddl_test_new` TO `test`.`ddl_test`
--29T16:: Swapped original and new tables OK.
--29T16:: Dropping old table...
DROP TABLE IF EXISTS `test`.`_ddl_test_old`
--29T16:: Dropped old table `test`.`_ddl_test_old` OK.
--29T16:: Dropping triggers...
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_del`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_upd`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_ins`;
--29T16:: Dropped triggers OK.
Successfully altered `test`.`ddl_test`.
[root@mysql5 ~]# pt-online-schema-change --alter="modify column address varchar(255) not null default ''" h=127.0.0.1,P=,u=root,p=1qaz2wsx,D=test,t=ddl_test --print --execute
No slaves found. See --recursion-method if host mysql5. has slaves.
Not checking slave lag because no slaves were found and --check-slave-lag was not specified.
Operation, tries, wait:
copy_rows, , 0.25
create_triggers, ,
drop_triggers, ,
swap_tables, ,
update_foreign_keys, ,
Altering `test`.`ddl_test`...
Creating new table...
CREATE TABLE `test`.`_ddl_test_new` (
`id` int() NOT NULL AUTO_INCREMENT,
`name` varchar() NOT NULL DEFAULT '',
`age` int() DEFAULT '',
`address` varchar() NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT= DEFAULT CHARSET=utf8
Created new table test._ddl_test_new OK.
Altering new table...
ALTER TABLE `test`.`_ddl_test_new` modify column address varchar() not null default ''
Altered `test`.`_ddl_test_new` OK.
--29T16:: Creating triggers...
CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNORE FROM `test`.`_ddl_test_new` WHERE `test`.`_ddl_test_new`.`id` <=> OLD.`id`
CREATE TRIGGER `pt_osc_test_ddl_test_upd` AFTER UPDATE ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`, `address`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`, NEW.`address`)
CREATE TRIGGER `pt_osc_test_ddl_test_ins` AFTER INSERT ON `test`.`ddl_test` FOR EACH ROW REPLACE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`, `address`) VALUES (NEW.`id`, NEW.`name`, NEW.`age`, NEW.`address`)
--29T16:: Created triggers OK.
--29T16:: Copying approximately rows...
INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`, `address`) SELECT `id`, `name`, `age`, `address` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) AND ((`id` <= ?)) LOCK IN SHARE MODE /*pt-online-schema-change 26897 copy nibble*/
SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ?)) ORDER BY `id` LIMIT ?, /*next chunk boundary*/
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
Copying `test`.`ddl_test`: % : remain
--29T16:: Copied rows OK.
--29T16:: Swapping tables...
RENAME TABLE `test`.`ddl_test` TO `test`.`_ddl_test_old`, `test`.`_ddl_test_new` TO `test`.`ddl_test`
--29T16:: Swapped original and new tables OK.
--29T16:: Dropping old table...
DROP TABLE IF EXISTS `test`.`_ddl_test_old`
--29T16:: Dropped old table `test`.`_ddl_test_old` OK.
--29T16:: Dropping triggers...
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_del`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_upd`;
DROP TRIGGER IF EXISTS `test`.`pt_osc_test_ddl_test_ins`;
--29T16:: Dropped triggers OK.
Successfully altered `test`.`ddl_test`.
[root@mysql5 ~]# (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | Waiting for table metadata lock | select count(*) from ddl_test |
| | root | localhost | test | Query | | starting | show processlist |
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_del` AFTER DELETE ON `test`.`ddl_test` FOR EACH ROW DELETE IGNO |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Query | | optimizing | select count(*) from ddl_test |
| | root | localhost | test | Query | | starting | show processlist |
| | root | localhost | test | Sleep | | | NULL |
| | root | 127.0.0.1: | test | Query | | Waiting for table metadata lock | CREATE TRIGGER `pt_osc_test_ddl_test_upd` AFTER UPDATE ON `test`.`ddl_test` FOR EACH ROW REPLACE INT |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+---------------------------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]>
(mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | localhost | test | Sleep | | | NULL |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`, `address`) SELECT `id`, |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> update ddl_test set name='12eswq' where id=;
Query OK, rows affected (0.00 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> update ddl_test set name='12eswq' where id=;
Query OK, rows affected (0.00 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> update ddl_test set name='12eswq' where id=;
Query OK, row affected (0.24 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | localhost | test | Sleep | | | NULL |
| | root | 127.0.0.1: | test | Query | | Sending data | SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ' |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]> update ddl_test set name='12eswq' where id=;
Query OK, row affected (0.08 sec)
Rows matched: Changed: Warnings: (mysql5.-)root@localhost [test]> delete from ddl_test where id=;
Query OK, row affected (0.01 sec) (mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | localhost | test | Sleep | | | NULL |
| | root | 127.0.0.1: | test | Query | | Sending data | SELECT /*!40001 SQL_NO_CACHE */ `id` FROM `test`.`ddl_test` FORCE INDEX(`PRIMARY`) WHERE ((`id` >= ' |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec)
(mysql5.-)root@localhost [test]> show processlist;
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
| | root | localhost | test | Sleep | | | NULL |
| | root | localhost | test | Query | | starting | show processlist |
| | root | localhost | test | Sleep | | | NULL |
| | root | 127.0.0.1: | test | Query | | Sending data | INSERT LOW_PRIORITY IGNORE INTO `test`.`_ddl_test_new` (`id`, `name`, `age`, `address`) SELECT `id`, |
| | root | 127.0.0.1: | test | Sleep | | | NULL |
+----+------+-----------------+------+---------+------+--------------+------------------------------------------------------------------------------------------------------+
rows in set (0.00 sec) (mysql5.-)root@localhost [test]>
注意事项 --critical-load type: Array; default: Threads_running=50 Examine SHOW GLOBAL STATUS after every chunk, and abort if the load is too high. The option accepts a comma-separated list of MySQL status variables and thresholds. An optional =MAX_VALUE (or :MAX_VALUE) can follow each variable. If not given, the tool determines a threshold by examining the current value at startup and doubling it. See --max-load for further details. These options work similarly, except that this option will abort the tool’s operation instead of pausing it, and the default value is computed differently if you specify no threshold. The reason for this option is as a safety check in case the triggers on the original table add so much load to the server that it causes downtime. There is probably no single value of Threads_running that is wrong for every server, but a default of 50 seems likely to be unacceptably high for most servers, indicating that the operation should be canceled immediately. 大致的意思如下: 每次chunk操作前后,会根据show global status统计指定的状态量的变化,默认是统计Thread_running。 目的是为了安全,防止原始表上的触发器引起负载过高。这也是为了防止在线DDL对线上的影响。 超过设置的阀值,就会终止操作,在线DDL就会中断。提示的异常如上报错信息。
还有一个--max-load 参数也要考虑 --max-load type: Array; default: Threads_running=25 Examine SHOW GLOBAL STATUS after every chunk, and pause if any status variables are higher than their thresholds. The option accepts a comma-separated list of MySQL status variables. An optional =MAX_VALUE (or :MAX_VALUE) can follow each variable. If not given, the tool determines a threshold by examining the current value and increasing it by 20%. For example, if you want the tool to pause when Threads_connected gets too high, you can specify “Threads_connected”, and the tool will check the current value when it starts working and add 20% to that value. If the current value is 100, then the tool will pause when Threads_connected exceeds 120, and resume working when it is below 120 again. If you want to specify an explicit threshold, such as 110, you can use either “Threads_connected:110” or “Threads_connected=110”. The purpose of this option is to prevent the tool from adding too much load to the server. If the data-copy queries are intrusive, or if they cause lock waits, then other queries on the server will tend to block and queue. This will typically cause Threads_running to increase, and the tool can detect that by running SHOW GLOBAL STATUS immediately after each query finishes. If you specify a threshold for this variable, then you can instruct the tool to wait until queries are running normally again. This will not prevent queueing, however; it will only give the server a chance to recover from the queueing. If you notice queueing, it is best to decrease the chunk time. --max-load 选项定义一个阀值,在每次chunk操作后,查看show global status状态值是否高于指定的阀值。
注意这个参数不会像--critical-load终止操作,而只是暂停操作。当status值低于阀值时,则继续往下操作。
最好加上--max-load="Threads_running=100" --critical-load="Threads_running=200"。
--chunk-size type: size; default: 1000
Number of rows to select for each chunk copied. Allowable suffixes are k, M, G.
This option can override the default behavior, which is to adjust
chunk size dynamically to try to make chunks run in exactly
"--chunk-time" seconds. When this option isn’t set explicitly, its
default value is used as a starting point, but after that, the tool
ignores this option’s value. If you set this option explicitly,
however, then it disables the dynamic adjustment behavior and tries
to make all chunks exactly the specified number of rows.
There is a subtlety: if the chunk index is not unique, then it’s
possible that chunks will be larger than desired. For example, if a
table is chunked by an index that contains 10,000 of a given value,
there is no way to write a WHERE clause that matches only 1,000 of
the values, and that chunk will be at least 10,000 rows large.
Such a chunk will probably be skipped because of
"--chunk-size-limit".
结论: 有大查询一样要等待MDL锁,跟官方DDL比,修改列这个情况不锁表,可以DML,因为是按chunk来拷贝数据可以比较平稳的运行,IO比较均衡,就是有个表复制的情况,也就是全表select,会冲刷innodb_buffer_poo,热数据给冲刷掉,IO有压力,也不建议在繁忙的线上使用。
pt-online-schema-change的更多相关文章
- schema change + ogg 变更手册
Check OGG until no data queuing in replication process:testRO:a)login test5 –l oggmgrb)oggc)#ggsci ...
- Online Schema Change for MySQL
It is great to be able to build small utilities on top of an excellent RDBMS. Thank you MySQL. This ...
- AppBoxFuture(四). 随需而变-Online Schema Change
需求变更是信息化过程中的家常便饭,而在变更过程中如何尽可能小的影响在线业务是比较头疼的事情.举个车联网监控的例子:原终端设备上传车辆的经纬度数据,新的终端设备支持同时上传速度数据,而旧的车辆状态表 ...
- Online, Asynchronous Schema Change in F1
F1: A Distributed SQL Database That Scales http://disksing.com/understanding-f1-schema-change ma ...
- Online Schema Upgrade in MySQL Galera Cluster using TOI Method
http://severalnines.com/blog/online-schema-upgrade-mysql-galera-cluster-using-toi-method As a fo ...
- Schema 与数据类型优化
这是<高性能 MySQL(第三版)>第四章<Schema 与数据类型优化>的读书笔记. 1. 选择优化的数据类型 数据类型的选择原则: 越小越好:选择满足需求的最小类型.注意, ...
- Awesome Go精选的Go框架,库和软件的精选清单.A curated list of awesome Go frameworks, libraries and software
Awesome Go financial support to Awesome Go A curated list of awesome Go frameworks, libraries a ...
- MyCat源码分析系列之——SQL下发
更多MyCat源码分析,请戳MyCat源码分析系列 SQL下发 SQL下发指的是MyCat将解析并改造完成的SQL语句依次发送至相应的MySQL节点(datanode)的过程,该执行过程由NonBlo ...
- SQLite剖析之存储模型
前言 SQLite作为嵌入式数据库,通常针对的应用的数据量相对于DBMS的数据量小.所以它的存储模型设计得非常简单,总的来说,SQLite把一个数据文件分成若干大小相等的页面,然后以B树的形式来组织这 ...
- erlang 分布式数据库Mnesia 实现及应用
先推荐一篇:mnesia源码分析(yufeng) - linear hash ETS/DETS/mnesia 都使用了linear hash算法 http://en.wikipedia.org ...
随机推荐
- Java eclipse export jar包 包括第三方引入的jar
1.安装fatjar插件 2.export jar 说明:安装后,操作说明以官网为准,不同的版本会有不同的右键菜单,我的版本(Eclipse Java EE IDE for Web Developer ...
- 定位表的数据块并且dump出来
SQL> select * from city; ID NAME ---------- ---------- 7 Chicago 6 Jers ...
- Ubuntu中设置环境变量详解
1, 为单一用户:.bashrc: 为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取.打开用户主目录下的.bashrc,在这个文件中加入export PA ...
- Java中的main()方法详解
在Java中,main()方法是Java应用程序的入口方法,也就是说,程序在运行的时候,第一个执行的方法就是main()方法,这个方法和其他的方法有很大的不同,比如方法的名字必须是main,方法必须是 ...
- 外企iOS开发的笔试题
一组外企iOS开发的笔试题,您能回答出来吗?从群里收集来的. (miki西游@mikixiyou的文档,原文链接: http://mikixiyou.iteye.com/blog/1546376 转 ...
- 有关UIView、subview的几个基础知识点-IOS开发 (实例)
环境是xcode4.3 首先要弄懂几个基本的概念. 一)三个结构体:CGPoint.CGSize.CGRect 1. CGPoint /* Points. */ struct CGPoint { C ...
- mysql笔记整理
删除整个表 TRUNCATE TABLE 表名; 持久链接 自动提交
- owin 中间件 katana 如何解密cookie
.NET MVC5 默认的用户登录组件是AspNet.Identity ,支持owin,并且微软自己实现的一套owin 中间件叫 katana 补充一下 katana项目源码地址:https://ka ...
- Timer 的缺陷
java.util.Timer计时器有管理任务延迟执行("如1000ms后执行任务")以及周期性执行("如每500ms执行一次该任务").但是,Timer存在一 ...
- IntelliJ IDEA 比较当前版本文件与历史文件
前言: 写代码修改后怎样比较与历史文件的区别呢?idea提供了2种比较方式(目前笔者所了解到的) 一.SVN的版本比较 二.当前文件与历史版本比较