Rechercher dans le manuel MySQL
26.12.12.2 The data_lock_waits Table
The data_lock_waits
table
implements a many-to-many relationship showing which data lock
requests in the data_locks
table
are blocked by which held data locks in the
data_locks
table. Held locks in
data_locks
appear in
data_lock_waits
only if they
block some lock request.
This information enables you to understand data lock dependencies between sessions. The table exposes not only which lock a session or transaction is waiting for, but which session or transaction currently holds that lock.
Example data lock wait information:
- *************************** 1. row ***************************
- REQUESTING_ENGINE_LOCK_ID: 140211201964816:2:4:2:140211086465800
- REQUESTING_ENGINE_TRANSACTION_ID: 1555
- REQUESTING_THREAD_ID: 47
- REQUESTING_EVENT_ID: 5
- REQUESTING_OBJECT_INSTANCE_BEGIN: 140211086465800
- BLOCKING_ENGINE_LOCK_ID: 140211201963888:2:4:2:140211086459880
- BLOCKING_ENGINE_TRANSACTION_ID: 1554
- BLOCKING_THREAD_ID: 46
- BLOCKING_EVENT_ID: 12
- BLOCKING_OBJECT_INSTANCE_BEGIN: 140211086459880
Unlike most Performance Schema data collection, there are no instruments for controlling whether data lock information is collected or system variables for controlling data lock table sizes. The Performance Schema collects information that is already available in the server, so there is no memory or CPU overhead to generate this information or need for parameters that control its collection.
Use the data_lock_waits
table to
help diagnose performance problems that occur during times of
heavy concurrent load. For InnoDB
, see the
discussion of this topic at
Section 15.14.2, “InnoDB INFORMATION_SCHEMA Transaction and Locking Information”.
Because the columns in the
data_lock_waits
table are similar
to those in the data_locks
table,
the column descriptions here are abbreviated. For more
detailed column descriptions, see
Section 26.12.12.1, “The data_locks Table”.
The data_lock_waits
table has
these columns:
ENGINE
The storage engine that requested the lock.
REQUESTING_ENGINE_LOCK_ID
The ID of the lock requested by the storage engine. To obtain details about the lock, join this column with the
ENGINE_LOCK_ID
column of thedata_locks
table.REQUESTING_ENGINE_TRANSACTION_ID
The storage engine internal ID of the transaction that requested the lock.
REQUESTING_THREAD_ID
The thread ID of the session that requested the lock.
REQUESTING_EVENT_ID
The Performance Schema event that caused the lock request in the session that requested the lock.
REQUESTING_OBJECT_INSTANCE_BEGIN
The address in memory of the requested lock.
BLOCKING_ENGINE_LOCK_ID
The ID of the blocking lock. To obtain details about the lock, join this column with the
ENGINE_LOCK_ID
column of thedata_locks
table.BLOCKING_ENGINE_TRANSACTION_ID
The storage engine internal ID of the transaction that holds the blocking lock.
BLOCKING_THREAD_ID
The thread ID of the session that holds the blocking lock.
BLOCKING_EVENT_ID
The Performance Schema event that caused the blocking lock in the session that holds it.
BLOCKING_OBJECT_INSTANCE_BEGIN
The address in memory of the blocking lock.
The data_lock_waits
table has
these indexes:
Index on (
REQUESTING_ENGINE_LOCK_ID
,ENGINE
)Index on (
BLOCKING_ENGINE_LOCK_ID
,ENGINE
)Index on (
REQUESTING_ENGINE_TRANSACTION_ID
,ENGINE
)Index on (
BLOCKING_ENGINE_TRANSACTION_ID
,ENGINE
)Index on (
REQUESTING_THREAD_ID
,REQUESTING_EVENT_ID
)Index on (
BLOCKING_THREAD_ID
,BLOCKING_EVENT_ID
)
TRUNCATE TABLE
is not permitted
for the data_lock_waits
table.
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-data-lock-waits-table.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.