textOnline DDL is only supported in MySQL 5.6. In versions 5.5 and earlier, using commands such as alter table/create index to modify the table structure will lock the table, which is obviously unacceptable in a production environment. In MySQL 5.7, Online DDL has been continuously optimized in terms of performance and stability. It has significant performance advantages, has little impact on business load, and has controllable downtime. Compared with pt-osc/gh-ost, it does not require the installation of third-party dependency packages. It also supports Online DDL of the Inplace algorithm. Since there is no need to copy tables, the required disk space is also smaller. Let's first look at a common DDL statement: ALTER TABLE tbl_name ADD PRIMARY KEY (column), ALGORITHM=INPLACE, LOCK=NONE; Among them, LOCK describes the degree of concurrency during the DDL operation, and ALGORITHM describes the implementation method of DDL. LOCK parameter
ALGORITHM parameters
COPY TABLE Process
At the same time, in order to maintain data consistency during this process, the table is locked and read-only during the intermediate data copying (Copy Table). If a write request comes in, the service will not be able to be provided, which will cause the number of connections to explode. IN-PLACE Process
During this process, the alter statement acquires the MDL write lock when it is started, but this write lock degenerates into a read lock before the data is actually copied. That is to say, during the most time-consuming process of copying data to a temporary file, the original table can be operated with DML. It is only locked during the final switching phase between the old and new tables. This rename process is very fast. Allow concurrent DML and DDL operations
Although Online DDL is allowed for operations marked as expensive cost, they will impose a high burden on the server IO and CPU. They will also cause replication blockage, which will cause another form of slave replication delay. Therefore, if the table is large, it is recommended to execute it during off-peak hours. DDL operations that do not allow concurrent DML
The above is the detailed content of the detailed explanation of the use of MySQL Online DDL. For more information about the use of MySQL Online DDL, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Implementation process of the magnifying glass effect in the Javascript example project
>>: Make a nice flip login and registration interface based on html+css
Sometimes some docker containers exit after a per...
Table of contents Overview 1. Global Registration...
I believe many programmers are familiar with MySQ...
Configure Tomcat First install Tomcat Installing ...
Introduction to jQuery The jQuery library can be ...
About password strength verification: [root@mysql...
Event bubbling, event capturing, and event delega...
This article uses examples to describe MySQL tran...
Preface nginx uses a multi-process model. When a ...
Table of contents JS obtains the .txt file conten...
Table of contents 1. Initialize the map 2. Map Po...
This article shares the MySQL 5.7.18 MSI installa...
Many people also asked me what books I read when ...
1. Resume nacos database Database name nacos_conf...
1. Indexing principle Indexes are used to quickly...