MySQL8.0.16秒加欄位(instant add column)功能測試
Instant add column功能自MySQL 8.0.12版本引入,INSTANT操作僅修改資料字典中的後設資料。在準備和執行期間,
不會在表上採用獨佔後設資料鎖, 並且表資料不受影響,從而使操作立即生效。允許併發DML。
InnoDB僅支援INSTANT進行如下操作:
Change index option 更改索引選項
Rename table (in ALTER way) 重新命名錶(以ALTER方式)
SET/DROP DEFAULT 設定/刪除預設值
Add columns(non-generated) – We call this instant ADD COLUMN 新增列(非生成) - 我們稱之為立即加列
MODIFY COLUMN 修改列
Add/drop virtual columns 新增/刪除虛擬列
新增新列作為表中的最後一列。
新增生成的虛擬列。
刪除生成的虛擬列。
設定現有列的預設值。
刪除現有列的預設值。
更改具有ENUM或SET資料型別的列所允許的值列表。要求是列的儲存大小不會更改。
instant功能存在的限制:
僅支援在一個語句中新增列,即如果同一語句中存在其他非INSTANT操作,則無法立即執行
innodb行格式不能是COMPRESSED。
該表上不能有全文索引。
即時新增的列不能是PK。
只能順序加列, 僅支援在最後新增列,而不支援在現有列的中間新增列
不支援壓縮表
不支援包含任何全文索引的表
不支援臨時表,臨時表只能使用copy的方式執行DDL
不支援那些在資料詞典表空間中建立的表
資料字典中的表不能使用instant演算法
實驗如下:
mysql> CREATE TABLE `test` (
-> `ID` int(11) NOT NULL AUTO_INCREMENT,
-> `NAME` varchar(50) NOT NULL,
-> PRIMARY KEY (`ID`)
-> ) AUTO_INCREMENT=1000;
Query OK, 0 rows affected (0.19 sec)
mysql>delimiter $$
mysql> create procedure pro_test()
-> begin
-> declare id int;
-> set id = 100000;
-> while id>0 do
-> insert into test(name) values ('love');
-> set id = id-1;
-> end while;
-> end $$
Query OK, 0 rows affected (0.04 sec)
mysql>delimiter ;
mysql>call pro_test();
mysql>call pro_test();
mysql>call pro_test();
mysql>call pro_test();
mysql>call pro_test();
mysql>call pro_test();
mysql>call pro_test();
多執行幾次,生成更多的資料量。
mysql>select count(*) from test;
+----------+
| count(*) |
+----------+
| 20547289 |
+----------+
1 row in set (1 min 6.85 sec)
秒加欄位測試:
mysql>alter table test add addr varchar(10),ALGORITHM=INSTANT;
Query OK, 0 rows affected (4.06 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql>ALTER TABLE test ADD COLUMN c ENUM('a', 'b', 'c'), ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.12 sec)
Records: 0 Duplicates: 0 Warnings: 0
第一次用了4.06秒,第二次用了0.12秒
重新命名:
mysql>ALTER TABLE test RENAME TO t2, ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.19 sec)
mysql>ALTER TABLE t2 RENAME TO test, ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.10 sec)
設定列預設值:
mysql>ALTER TABLE test ALTER COLUMN name SET DEFAULT 100, ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.09 sec)
Records: 0 Duplicates: 0 Warnings: 0
刪除列預設值:
mysql>ALTER TABLE test alter COLUMN name DROP DEFAULT, ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.13 sec)
Records: 0 Duplicates: 0 Warnings: 0
修改列:
mysql>ALTER TABLE test MODIFY COLUMN c ENUM('a', 'b', 'c', 'd', 'e'), ALGORITHM=INSTANT;
Query OK, 0 rows affected (0.09 sec)
Records: 0 Duplicates: 0 Warnings: 0
更改索引,適用於表上已有索引:
mysql>>show index from test \G
*************************** 1. row ***************************
Table: test
Non_unique: 0
Key_name: PRIMARY
Seq_in_index: 1
Column_name: ID
Collation: A
Cardinality: 19998192
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
Visible: YES
Expression: NULL
*************************** 2. row ***************************
Table: test
Non_unique: 1
Key_name: name
Seq_in_index: 1
Column_name: NAME
Collation: A
Cardinality: 1
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
Visible: YES
Expression: NULL
2 rows in set (0.04 sec)
mysql>ALTER TABLE test DROP index name, ADD index name(name),ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.13 sec)
Records: 0 Duplicates: 0 Warnings: 0
但在其他無索引的列上加新索引是不支援的:
mysql>alter table test ADD index addr(addr),ALGORITHM = INSTANT;
ERROR 1845 (0A000): ALGORITHM=INSTANT is not supported for this operation.
Try ALGORITHM=COPY/INPLACE.
增加虛擬列:
ALTER TABLE test ADD COLUMN (d INT GENERATED ALWAYS AS (1 + 1) VIRTUAL), ALGORITHM = INSTANT;
Query OK, 0 rows affected (2.83 sec)
Records: 0 Duplicates: 0 Warnings: 0
ysql>desc test;
+-------+---------------------------+------+-----+---------+-------------------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------------------------+------+-----+---------+-------------------+
| ID | int(11) | NO | PRI | NULL | auto_increment |
| NAME | varchar(50) | NO | | NULL | |
| addr | varchar(10) | YES | | NULL | |
| ip | int(11) | YES | | NULL | |
| c | enum('a','b','c','d','e') | YES | | NULL | |
| d | int(11) | YES | | NULL | VIRTUAL GENERATED |
+-------+---------------------------+------+-----+---------+-------------------+
刪除虛擬列:
mysql>ALTER TABLE test DROP COLUMN d, ALGORITHM = INSTANT;
Query OK, 0 rows affected (0.48 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql>desc test;
+-------+---------------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------------------------+------+-----+---------+----------------+
| ID | int(11) | NO | PRI | NULL | auto_increment |
| NAME | varchar(50) | NO | MUL | NULL | |
| addr | varchar(10) | YES | | NULL | |
| ip | int(11) | YES | | NULL | |
| c | enum('a','b','c','d','e') | YES | | NULL | |
+-------+---------------------------+------+-----+---------+----------------+
5 rows in set (0.04 sec)
但刪除普通列不支援:
mysql>ALTER TABLE test DROP c, ALGORITHM = INSTANT;
ERROR 1845 (0A000): ALGORITHM=INSTANT is not supported for this operation.
Try ALGORITHM=COPY/INPLACE.
另外,使用者還可以透過來自information_schema的檢視觀察即時ADD COLUMN的結果:
mysql>SELECT table_id, name, instant_cols FROM information_schema.innodb_tables WHERE name LIKE 'test%';
+----------+----------------+--------------+
| table_id | name | instant_cols |
+----------+----------------+--------------+
| 1060 | test/child | 0 |
| 1064 | test/t1 | 0 |
| 1065 | test/tbl | 0 |
| 1068 | test/employees | 0 |
| 1072 | test/test_null | 0 |
| 1073 | test/test | 2 |
+----------+----------------+--------------+
6 rows in set (0.00 sec)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2645164/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL8.0大表秒加欄位,是真的嗎?MySql
- ORACLE 加密(TDE) 對欄位加密測試Oracle加密
- 給mybatis新增自動建表,自動加欄位的功能MyBatis
- redis對hash欄位加鎖Redis
- Oracle 11g enhancement add columnOracle
- pl/sql dev建表加欄位時建的欄位名都帶了“”SQLdev
- 【COLUMN】設定表欄位預設值僅對未來生效
- 軟體測試中的功能測試和非功能測試
- Using the Template Collection to Add a Template Column in WebDataGridWeb
- 功能測試
- ORA-00600[kluinit:new add column in directpath 2]UI
- 總結一下公共欄位(aop加自定義註解加反射)反射
- PostgreSQL10.0preview功能增強-兩段式索引(約束欄位+附加欄位)SQLView索引
- 門戶系統測試---功能測試
- 功能測試之審批流測試
- 欄位型別檢測指令碼型別指令碼
- 增加欄位的通用程式碼驗證功能
- pydantic 欄位欄位校驗
- 功能測試吐槽
- 介面測試和功能測試的區別
- 軟體測試中功能測試的測試工作流程
- 軟體測試之功能測試、效能測試經驗談
- 功能測試、自動化測試、效能測試的區別
- 軟體功能測試包含了哪些測試專案?功能測試報告收費標準測試報告
- 深圳 - 求職測試崗位求職
- 武漢 - 求職測試崗位求職
- 測試人員如何提高API功能測試效率?API
- 【轉】測試用例編寫(功能測試框架)框架
- 功能測試怎麼提升測試開發能力?
- 嫌功能測試薪資太低崗位太Low?3分鐘帶你入門自動化測試!
- 百萬資料查詢測試 只需1秒--Sql語句效率測試SQL
- 功能測試和非功能測試區別簡析,上海好口碑軟體測試公司推薦
- 介面自動化測試,一鍵快速校驗介面返回值全部欄位
- 功能測試點總結
- Oracle sqlldr工具功能測試OracleSQL
- MyBatis-Plus-實用的功能自動填充欄位MyBatis
- 編輯功能-載荷裡空欄位沒有傳
- 移動 APP 測試之基礎功能測試流程APP