Rechercher dans le manuel MySQL
15.12 InnoDB and Online DDL
[+/-]
The online DDL feature provides support for instant and in-place table alterations and concurrent DML. Benefits of this feature include:
Improved responsiveness and availability in busy production environments, where making a table unavailable for minutes or hours is not practical.
For in-place operations, the ability to adjust the balance between performance and concurrency during DDL operations using the
LOCK
clause. See The LOCK clause.Less disk space usage and I/O overhead than the table-copy method.
ALGORITHM=INSTANT
support is available for
ADD COLUMN
and other operations in MySQL
8.0.12.
Typically, you do not need to do anything special to enable online DDL. By default, MySQL performs the operation instantly or in place, as permitted, with as little locking as possible.
You can control aspects of a DDL operation using the
ALGORITHM
and LOCK
clauses of
the ALTER TABLE
statement. These
clauses are placed at the end of the statement, separated from the
table and column specifications by commas. For example:
The LOCK
clause may be used for operations that
are performed in place and is useful for fine-tuning the degree of
concurrent access to the table during operations. Only
LOCK=DEFAULT
is supported for operations that are
performed instantly. The ALGORITHM
clause is
primarily intended for performance comparisons and as a fallback to
the older table-copying behavior in case you encounter any issues.
For example:
To avoid accidentally making the table unavailable for reads, writes, or both, during an in-place
ALTER TABLE
operation, specify a clause on theALTER TABLE
statement such asLOCK=NONE
(permit reads and writes) orLOCK=SHARED
(permit reads). The operation halts immediately if the requested level of concurrency is not available.To compare performance between algorithms, run a statement with
ALGORITHM=INSTANT
,ALGORITHM=INPLACE
andALGORITHM=COPY
. You can also run a statement with theold_alter_table
configuration option enabled to force the use ofALGORITHM=COPY
.To avoid tying up the server with an
ALTER TABLE
operation that copies the table, includeALGORITHM=INSTANT
orALGORITHM=INPLACE
. The statement halts immediately if it cannot use the specified algorithm.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-innodb-online-ddl.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.