1. 程式人生 > >MySQL DDL 操作實踐

MySQL DDL 操作實踐

ble 相關 inno 臨時 sql mysql sso copy reat 參數

根據網上的DDL 樹狀圖,自己copy了一份:http://assets.processon.com/chart_image/5c331a29e4b0fa03ce8eb139.png?_=1547952296662

對不同版本的add index的處理方式,這篇文章寫得不錯:https://www.jb51.net/article/75217.htm

--
相關實踐

表結構:

CREATE TABLE `tt` (
`id` int(11) DEFAULT NULL,
`age` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
row in set (0.01 sec)

行數:

[email protected]:3306 test>select count(*) from tt;
+----------+
| count(*) |
+----------+
| 12582912 |
+----------+

[email protected]:3306 test>alter table tt add index idx_id(id);
Query OK, 0 rows affected (27.49 sec)
Records: 0  Duplicates: 0  Warnings: 0

增加id索引
臨時表:只增加了#sql-1e65_68.frm,未增加idb

數據量變化:448M -> 676M

[email protected]:3306 test>alter table tt add name1 varchar(12);
Query OK, 0 rows affected (44.72 sec)
Records: 0  Duplicates: 0  Warnings: 0

新增字段
臨時表:增加#sql-1e65_68.frm, #sql-ib231-4246726206.ibd,完成時增加#sql-ib255-4246726207.ibd沒有tt.ibd,最後生成tt.idb
數據量變化:臨時表一直增加到和新表同樣的數據量後,最後完成新表替換,新表 676M->740M

-rw-r-----  1 mysql mysql 740M 1月   8 11:30 #sql-ib231-4246726206.ibd
-rw-r-----  1 mysql mysql 8.4K 1月   8 11:06 tt.frm
-rw-r-----  1 mysql mysql 676M 1月   8 11:08 tt.ibd
[root@dbtest-21 test]# ll -ah
-rw-r-----  1 mysql mysql 8.5K 1月   8 11:30 #sql-1e65_68.frm
-rw-r-----  1 mysql mysql 740M 1月   8 11:30 #sql-ib231-4246726206.ibd
-rw-r-----  1 mysql mysql 8.4K 1月   8 11:06 tt.frm
-rw-r-----  1 mysql mysql 676M 1月   8 11:08 tt.ibd
[root@dbtest-21 test]# ll -ah
-rw-r-----  1 mysql mysql 8.5K 1月   8 11:30 #sql-1e65_68.frm
-rw-r-----  1 mysql mysql 740M 1月   8 11:30 #sql-ib231-4246726206.ibd
-rw-r-----  1 mysql mysql 676M 1月   8 11:08 #sql-ib255-4246726207.ibd
-rw-r-----  1 mysql mysql 8.4K 1月   8 11:06 tt.frm
[root@dbtest-21 test]# ll -ah
-rw-r-----  1 mysql mysql 8.5K 1月   8 11:30 tt.frm
-rw-r-----  1 mysql mysql 740M 1月   8 11:30 tt.ibd

[email protected]:3306 test>alter table tt modify age varchar(20);
Query OK, 12582912 rows affected (2 min 36.80 sec)
Records: 12582912  Duplicates: 0  Warnings: 0

修改字段
臨時表:增加#sql-1e65_68.frm, #sql-ib231-4246726206.ibd,完成時增加#sql-ib255-4246726207.ibd沒有tt.ibd,最後生成tt.idb
數據量變化:臨時表一直增加到和新表同樣的數據量後,最後完成新表替換
時間增加
TIPS:
1.新增空字段,磁盤會額外占用新加字段的空間。
2.修改增加的新的空字段類型,可以瞬間完成。

--

algorithm = copy/inplace
copy會一直創建臨時表,inplace在不同場景(rebuild、no-rebuild)下都會創建、不創建臨時表
copy :copy to tmp table,期間不允許DML
inplace :altering table 允許並發DML,使用了參數innodb_online_alter_log_max_size緩存新的寫

MySQL DDL 操作實踐