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 ...
随机推荐
- 0x02全局变量和局部变量
全局变量在什么地方定义? .data和.data? 格式如下: 变量名 类型 初始值1,初始值2... 变量名 类型 重复数 dup(初始值1,初始值2,...) 变量名 类型 ? 类型有哪些? 字节 ...
- C#中读取二维数组每位的长度
C#中的二维数组,如int[,] A=new int[a,b];则 a=A.GetLength(0);即可获得二维数组中第一维的长度. b=A.GetLength(1);即可获得二维数组中第二维的长度 ...
- Qt入门之信号与槽机制
一. 简介 就我个人来理解,信号槽机制与Windows下消息机制类似,消息机制是基于回调函数,Qt中用信号与槽来代替函数指针,使程序更安全简洁. 信号和槽机制是 Qt 的核心机制,可以让编程人员将互不 ...
- ffmpeg 从视频流中抓取图片
从视频中不断抓取图片的基本流程:打开视频流地址->获取视频流packt->解码成图片帧->输出图片 一.初始化Ffmpeg void ffmpegInit(){ av_registe ...
- Openmeeting 网页打开缓慢,视频卡的一个解决方法
在初次安装完openmeeting以后,从浏览器打开后发现网页缓慢,视频有卡顿的现象. 原因:为openmeeting分配的内存太小. 解决方法: 找到根目录的red5.bat,打开后查找“set J ...
- cookieContainer应用
PublicSharedFunctionGetCookiesSetByPage(ByVal strUrl AsString,ByVal cookieToProvide AsString)AsIEnum ...
- struts2 ,web.xml中配置为/*.action,运行报错Invalid <url-pattern> /*.action in filter mapp
首先,修改成: <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/ ...
- NHibernate 基础
install-package nhibernate install-package nunit Customer.cs public class Customer { public virtual ...
- Java Servlet Filter(转)
做web开发的人对于Filter应该不会陌生,一直在很简单的使用,但是一直没有系统的总结一下,随着年纪的慢慢长大,喜欢总结一些事情,下面说说我对Filter的理解,官方给出的Filter的定义是在请求 ...
- WPF 显示初始化界面
今天在看<WPF编程宝典>时,看到了Application类,该类可以做很多事情,我认为比较实用的是显示初始化界面,因为之前有个项目在打开的时候要加载好多dll,非常耗时,让客户等的蛋疼, ...