Rechercher dans le manuel MySQL
15.12.5 Online DDL Failure Conditions
The failure of an online DDL operation is typically due to one of the following conditions:
An
ALGORITHM
clause specifies an algorithm that is not compatible with the particular type of DDL operation or storage engine.A
LOCK
clause specifies a low degree of locking (SHARED
orNONE
) that is not compatible with the particular type of DDL operation.A timeout occurs while waiting for an exclusive lock on the table, which may be needed briefly during the initial and final phases of the DDL operation.
The
tmpdir
orinnodb_tmpdir
file system runs out of disk space, while MySQL writes temporary sort files on disk during index creation. For more information, see Section 15.12.3, “Online DDL Space Requirements”.The operation takes a long time and concurrent DML modifies the table so much that the size of the temporary online log exceeds the value of the
innodb_online_alter_log_max_size
configuration option. This condition causes aDB_ONLINE_LOG_TOO_BIG
error.Concurrent DML makes changes to the table that are allowed with the original table definition, but not with the new one. The operation only fails at the very end, when MySQL tries to apply all the changes from concurrent DML statements. For example, you might insert duplicate values into a column while a unique index is being created, or you might insert
NULL
values into a column while creating a primary key index on that column. The changes made by the concurrent DML take precedence, and theALTER TABLE
operation is effectively rolled back.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-innodb-online-ddl-failure-conditions.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.