The question is referenced from: https://www.zhihu.com/question/440231149. In MySQL, there are 300 million data in a table, which is not divided into tables. The requirement is to add a column of data to this large table. The database cannot be stopped, and there are still addition, deletion and modification operations. How do I do this? The answer is original The old version of MySQL used to add a column: ALTER TABLE your table ADD COLUMN new column char(128); Will cause table lock, the simple process is as follows:
If the amount of data is extremely large, the table lock time will be very long, during which time all table updates will be blocked and online business cannot be executed normally. For versions earlier than MySQL 5.6 (not included) , triggers are used to repeat updates to one table on another table and synchronize data. When data synchronization is complete, the business changes the table name to a new table and publishes it. Business will not be suspended. The trigger setup is similar to: create trigger person_trigger_update AFTER UPDATE on original table for each row begin set @x = "trigger UPDATE"; Replace into new table SELECT * from original table where new table.id = original table.id; END IF; end; MySQL 5.6 and later versions introduce the online DDL feature : Alter table your table, ALGORITHM [=] {DEFAULT|INSTANT|INPLACE|COPY}, LOCK [=] { DEFAULT| NONE| SHARED| EXCLUSIVE } The parameters are: ALGORITHM:
LOCK:
Comparison of online DDL modification algorithms supported by various versions: Reference Documents: MySQL 5.6: https://dev.mysql.com/doc/refman/5.6/en/innodb-online-ddl-operations.htmlMySQL 5.7: https://dev.mysql.com/doc/refman/5.7/en/innodb-online-ddl-operations.htmlMySQL 8.0: https://dev.mysql.com/doc/refman/8.0/en/innodb-online-ddl-operations.html This can be done by: ALTER TABLE your table ADD COLUMN new column char(128), ALGORITHM=INSTANT, LOCK=NONE; Similar statements are used to add fields online. It is best to specify ALGORITHM and LOCK so that when executing DDL, you can clearly know how much impact it will have on online business . At the same time, the process of executing online DDL is roughly as follows: It can be seen that metadata lock is required in the initial stage. Metadata lock was introduced to MySQL in 5.5. There were similar mechanisms for protecting metadata before, but the concept of metadata lock was not clearly proposed. However, there is a significant difference between versions before 5.5 (such as 5.1) and versions after 5.5 in terms of metadata protection. 5.1 protects metadata at the statement level, while 5.5 protects metadata at the transaction level. The so-called statement level means that after the statement is executed, its table structure can be updated by other sessions regardless of whether the transaction is committed or rolled back; while the transaction level means that the metadata lock is released only after the transaction ends. The introduction of metadata lock mainly solves two problems. One is the transaction isolation problem. For example, under the repeatable isolation level, if session A modifies the table structure during two queries, the two query results will be inconsistent and cannot meet the repeatable read requirements. The other is the data replication problem. For example, if session A executes multiple update statements and another session B changes the table structure and commits it first, the slave will first redo the alter and then redo the update, which will cause replication errors. If there are many transactions currently being executed, and there are transactions that contain large queries, such as: START TRANSACTION; select count(*) from your table This will cause transactions that take a long time to execute and will also be blocked. So, in principle:
This is the end of this article about how to add a column to a large MySQL table. For more information about how to add a column to a large MySQL table, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: JavaScript static scope and dynamic scope explained with examples
>>: Implementation of navigation bar and drop-down menu in CSS
This article shares the specific code for WeChat ...
This article shares the specific code for JavaScr...
Three tables are connected. Field a of table A co...
This article introduces how to install Chrome bro...
Table of contents need: Function Points Rendering...
Installing Electron cnpm install electron -g Inst...
Some students said that they encountered the prob...
Causes and consequences 1. When using the ansible...
Today I will share with you a picture marquee eff...
Table of contents Global Object Global objects an...
This article mainly introduces how to implement a...
Today, when verifying the concurrency problem of ...
Since I have parsed HTML before, I want to use Vu...
This article records the creation of a USB boot d...
mysql-5.7.17-winx64 is the latest version of MySQ...