您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“MySQL在線添加字段的方案有哪些”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
方案1:業(yè)務(wù)低峰期進(jìn)行alter table操作:
例如,凌晨1點(diǎn)或2點(diǎn)進(jìn)行:
mysql>ALTER TABLE `test` ADD `new_column` int not null default 0 comment '文本長(zhǎng)度';
方案2:創(chuàng)建臨時(shí)表、加字段、插入舊數(shù)據(jù),增量數(shù)據(jù)插入和重命名表名
1). 創(chuàng)建臨時(shí)表
mysql>create table test_tmp like test;
2). 在臨時(shí)表上添加字段
mysql>ALTER TABLE `test_tmp` ADD `new_column` int not null default 0 comment '文本長(zhǎng)度';
3). 向臨時(shí)表里插入舊數(shù)據(jù)
mysql>INSERT INTO test_tmp(id,name) (SELECT id,name from test);
4). 增量數(shù)據(jù)插入:
mysql>INSERT INTO test_tmp(id,name) (SELECT id,name from test WHERE `id` > (SELECT MAX(`id`) from `test_tmp`));
5). 重命名表名:
mysql>rename table test TO test_2018;
mysql>rename table test_tmp TO test;
方案3:用第三方開源工具實(shí)現(xiàn),具體實(shí)現(xiàn)步驟看鏈接:
oak-online-alter-table:
https://wing324.github.io/2015/10/13/oak-online-alter-table%E5%B7%A5%E5%85%B7/
pt-osc:
https://www.percona.com/doc/percona-toolkit/LATEST/pt-online-schema-change.html
gh-ost:
http://www.cnblogs.com/jiangwenju/p/5846743.html
facebook osc(Online Schema Change for MySQL):
https://github.com/facebookincubator/OnlineSchemaChange
http://cenalulu.github.io/mysql/open_source_osc/
方案4:在從庫進(jìn)行添加字段操作,然后進(jìn)行mysql主從切換
注意事項(xiàng):主從復(fù)制日志格式如果為row格式,添加的新列必須是在表的最后。
“MySQL在線添加字段的方案有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。