Rechercher dans le manuel MySQL
This section describes locking information as exposed by the
Performance Schema data_locks
and
data_lock_waits
tables, which
supersede the INFORMATION_SCHEMA
INNODB_LOCKS
and
INNODB_LOCK_WAITS
tables in MySQL
8.0. For similar discussion written in terms of
the older INFORMATION_SCHEMA
tables, see
Persistence and Consistency of InnoDB Transaction and Locking Information
in MySQL 5.7 Reference Manual.
The data exposed by the transaction and locking tables
(INFORMATION_SCHEMA
INNODB_TRX
table, Performance
Schema data_locks
and
data_lock_waits
tables) represents
a glimpse into fast-changing data. This is not like user tables,
where the data changes only when application-initiated updates
occur. The underlying data is internal system-managed data, and
can change very quickly:
Data might not be consistent between the
INNODB_TRX
,data_locks
, anddata_lock_waits
tables.The
data_locks
anddata_lock_waits
tables expose live data from theInnoDB
storage engine, to provide lock inormation about the transactions in theINNODB_TRX
table. Data retrieved from the lock tables exists when theSELECT
is executed, but might be gone or changed by the time the query result is consumed by the client.Joining
data_locks
withdata_lock_waits
can show rows indata_lock_waits
that identify a parent row indata_locks
that no longer exists or does not exist yet.Data in the transaction and locking tables might not be consistent with data in the
INFORMATION_SCHEMA
PROCESSLIST
table or Performance Schemathreads
table.For example, you should be careful when comparing data in the
InnoDB
transaction and locking tables with data in thePROCESSLIST
table. Even if you issue a singleSELECT
(joiningINNODB_TRX
andPROCESSLIST
, for example), the content of those tables is generally not consistent. It is possible forINNODB_TRX
to reference rows that are not present inPROCESSLIST
or for the currently executing SQL query of a transaction shown inINNODB_TRX.TRX_QUERY
to differ from the one inPROCESSLIST.INFO
.
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-information-schema-internal-data.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.