copy | inplace | pt-osc | gh-ost | instant | |
---|---|---|---|---|---|
数据读取 | 允许 | 允许 | 允许 | 允许 | 允许 |
数据写入 | 不允许 | 允许 | 允许 | 允许 | 允许 |
MDL | 需要 | 需要 | 需要 | 需要 | 需要 |
执行时间 | 非常长 | 长 | 长 | 长 | 短 |
同步延迟 | 非常大 | 大 | 小 | 小 | 小 |
MySQL 8.0.12 中,如下 Alter 操作已经默认使用了 instant 算法:
alter table user add column test varchar(128),algorithm=copy;
alter table user drop column test,algorithm=copy;
alter table user? add column test varchar(128),algorithm=inplace;
alter table user drop column test,algorithm=inplace;
alter table user add column test varchar(128),algorithm=instant;