Rechercher dans le manuel MySQL
26.12.7.1 The events_transactions_current Table
The events_transactions_current
table contains current transaction events. The table stores
one row per thread showing the current status of the thread's
most recent monitored transaction event, so there is no system
variable for configuring the table size. For example:
- *************************** 1. row ***************************
- THREAD_ID: 26
- EVENT_ID: 7
- END_EVENT_ID: NULL
- EVENT_NAME: transaction
- STATE: ACTIVE
- TRX_ID: NULL
- GTID: 3E11FA47-71CA-11E1-9E33-C80AA9429562:56
- XID: NULL
- XA_STATE: NULL
- SOURCE: transaction.cc:150
- TIMER_START: 420833537900000
- TIMER_END: NULL
- TIMER_WAIT: NULL
- ISOLATION_LEVEL: REPEATABLE READ
- AUTOCOMMIT: NO
- NUMBER_OF_SAVEPOINTS: 0
- NUMBER_OF_ROLLBACK_TO_SAVEPOINT: 0
- NUMBER_OF_RELEASE_SAVEPOINT: 0
- OBJECT_INSTANCE_BEGIN: NULL
- NESTING_EVENT_ID: 6
- NESTING_EVENT_TYPE: STATEMENT
Of the tables that contain transaction event rows,
events_transactions_current
is
the most fundamental. Other tables that contain transaction
event rows are logically derived from the current events. For
example, the
events_transactions_history
and
events_transactions_history_long
tables are collections of the most recent transaction events
that have ended, up to a maximum number of rows per thread and
globally across all threads, respectively.
For more information about the relationship between the three transaction event tables, see Section 26.9, “Performance Schema Tables for Current and Historical Events”.
For information about configuring whether to collect transaction events, see Section 26.12.7, “Performance Schema Transaction Tables”.
The events_transactions_current
table has these columns:
THREAD_ID
,EVENT_ID
The thread associated with the event and the thread current event number when the event starts. The
THREAD_ID
andEVENT_ID
values taken together uniquely identify the row. No two rows have the same pair of values.END_EVENT_ID
This column is set to
NULL
when the event starts and updated to the thread current event number when the event ends.EVENT_NAME
The name of the instrument from which the event was collected. This is a
NAME
value from thesetup_instruments
table. Instrument names may have multiple parts and form a hierarchy, as discussed in Section 26.6, “Performance Schema Instrument Naming Conventions”.STATE
The current transaction state. The value is
ACTIVE
(afterSTART TRANSACTION
orBEGIN
),COMMITTED
(afterCOMMIT
), orROLLED BACK
(afterROLLBACK
).TRX_ID
Unused.
GTID
The GTID column contains the value of
gtid_next
, which can be one ofANONYMOUS
,AUTOMATIC
, or a GTID using the formatUUID:NUMBER
. For transactions that usegtid_next=AUTOMATIC
, which is all normal client transactions, the GTID column changes when the transaction commits and the actual GTID is assigned. Ifgtid_mode
is eitherON
orON_PERMISSIVE
, the GTID column changes to the transaction's GTID. Ifgtid_mode
is eitherOFF
orOFF_PERMISSIVE
, the GTID column changes toANONYMOUS
.XID_FORMAT_ID
,XID_GTRID
, andXID_BQUAL
The components of the XA transaction identifier. They have the format described in Section 13.3.8.1, “XA Transaction SQL Syntax”.
XA_STATE
The state of the XA transaction. The value is
ACTIVE
(afterXA START
),IDLE
(afterXA END
),PREPARED
(afterXA PREPARE
),ROLLED BACK
(afterXA ROLLBACK
), orCOMMITTED
(afterXA COMMIT
).On a replication slave, the same XA transaction can appear in the
events_transactions_current
table with different states on different threads. This is because immediately after the XA transaction is prepared, it is detached from the slave applier thread, and can be committed or rolled back by any thread on the slave. Theevents_transactions_current
table displays the current status of the most recent monitored transaction event on the thread, and does not update this status when the thread is idle. So the XA transaction can still be displayed in thePREPARED
state for the original applier thread, after it has been processed by another thread. To positively identify XA transactions that are still in thePREPARED
state and need to be recovered, use theXA RECOVER
statement rather than the Performance Schema transaction tables.SOURCE
The name of the source file containing the instrumented code that produced the event and the line number in the file at which the instrumentation occurs. This enables you to check the source to determine exactly what code is involved.
TIMER_START
,TIMER_END
,TIMER_WAIT
Timing information for the event. The unit for these values is picoseconds (trillionths of a second). The
TIMER_START
andTIMER_END
values indicate when event timing started and ended.TIMER_WAIT
is the event elapsed time (duration).If an event has not finished,
TIMER_END
is the current timer value andTIMER_WAIT
is the time elapsed so far (TIMER_END
−TIMER_START
).If an event is produced from an instrument that has
TIMED = NO
, timing information is not collected, andTIMER_START
,TIMER_END
, andTIMER_WAIT
are allNULL
.For discussion of picoseconds as the unit for event times and factors that affect time values, see Section 26.4.1, “Performance Schema Event Timing”.
ACCESS_MODE
The transaction access mode. The value is
READ WRITE
orREAD ONLY
.ISOLATION_LEVEL
The transaction isolation level. The value is
REPEATABLE READ
,READ COMMITTED
,READ UNCOMMITTED
, orSERIALIZABLE
.AUTOCOMMIT
Whether autcommit mode was enabled when the transaction started.
NUMBER_OF_SAVEPOINTS
,NUMBER_OF_ROLLBACK_TO_SAVEPOINT
,NUMBER_OF_RELEASE_SAVEPOINT
The number of
SAVEPOINT
,ROLLBACK TO SAVEPOINT
, andRELEASE SAVEPOINT
statements issued during the transaction.OBJECT_INSTANCE_BEGIN
Unused.
NESTING_EVENT_ID
The
EVENT_ID
value of the event within which this event is nested.NESTING_EVENT_TYPE
The nesting event type. The value is
TRANSACTION
,STATEMENT
,STAGE
, orWAIT
. (TRANSACTION
will not appear because transactions cannot be nested.)
The events_transactions_current
table has these indexes:
Primary key on (
THREAD_ID
,EVENT_ID
)
TRUNCATE TABLE
is permitted for
the events_transactions_current
table. It removes the rows.
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-events-transactions-current-table.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.