Rechercher dans le manuel MySQL
15.7.6 Transaction Scheduling
InnoDB
uses the Contention-Aware Transaction
Scheduling (CATS) algorithm to prioritize transactions that are
waiting for locks. When multiple transactions are waiting for a
lock on the same object, the CATS algorithm determines which
transaction receives the lock first.
The CATS algorithm prioritizes waiting transactions by assigning a scheduling weight, which is computed based on the number of transactions that a transaction blocks. For example, if two transactions are waiting for a lock on the same object, the transaction that blocks the most transactions is assigned a greater scheduling weight. If weights are equal, priority is given to the longest waiting transaction.
Prior to MySQL 8.0.20, InnoDB
also uses a
First In First Out (FIFO) algorithm to schedule transactions,
and the CATS algorithm is used under heavy lock contention only.
CATS algorithm enhancements in MySQL 8.0.20 rendered the FIFO
algorithm redundant, permitting its removal. Transaction
scheduling previously performed by the FIFO algorithm is
performed by the CATS algorithm as of MySQL 8.0.20. In some
cases, this change may affect the order in which transactions
are granted locks.
You can view transaction scheduling weights by querying the
TRX_SCHEDULE_WEIGHT
column in the
INFORMATION_SCHEMA.INNODB_TRX
table.
Weights are computed for waiting transactions only. Waiting
transactions are those in a LOCK WAIT
transaction execution state, as reported by the
TRX_STATE
column. A transaction that is not
waiting for a lock reports a NULL
TRX_SCHEDULE_WEIGHT
value.
INNODB_METRICS
counters are provided
for monitoring of code-level transaction scheduling events. For
information about using
INNODB_METRICS
counters, see
Section 15.15.6, “InnoDB INFORMATION_SCHEMA Metrics Table”.
lock_rec_release_attempts
The number of attempts to release record locks. A single attempt may lead to zero or more record locks being released, as there may be zero or more record locks in a single structure.
lock_rec_grant_attempts
The number of attempts to grant record locks. A single attempt may result in zero or more record locks being granted.
lock_schedule_refreshes
The number of times the wait-for graph was analyzed to update the scheduled transaction weights.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-innodb-transaction-scheduling.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.