Rechercher dans le manuel MySQL
26.12.11 Performance Schema Replication Tables
[+/-]
- 26.12.11.1 The replication_connection_configuration Table
- 26.12.11.2 The replication_connection_status Table
- 26.12.11.3 The replication_applier_configuration Table
- 26.12.11.4 The replication_applier_status Table
- 26.12.11.5 The replication_applier_status_by_coordinator Table
- 26.12.11.6 The replication_applier_status_by_worker Table
- 26.12.11.7 The replication_applier_global_filters Table
- 26.12.11.8 The replication_applier_filters Table
- 26.12.11.9 The replication_group_members Table
- 26.12.11.10 The replication_group_member_stats Table
The Performance Schema provides tables that expose replication
information. This is similar to the information available from
the SHOW SLAVE STATUS
statement,
but representation in table form is more accessible and has
usability benefits:
SHOW SLAVE STATUS
output is useful for visual inspection, but not so much for programmatic use. By contrast, using the Performance Schema tables, information about slave status can be searched using generalSELECT
queries, including complexWHERE
conditions, joins, and so forth.Query results can be saved in tables for further analysis, or assigned to variables and thus used in stored procedures.
The replication tables provide better diagnostic information. For multithreaded slave operation,
SHOW SLAVE STATUS
reports all coordinator and worker thread errors using theLast_SQL_Errno
andLast_SQL_Error
fields, so only the most recent of those errors is visible and information can be lost. The replication tables store errors on a per-thread basis without loss of information.The last seen transaction is visible in the replication tables on a per-worker basis. This is information not avilable from
SHOW SLAVE STATUS
.Developers familiar with the Performance Schema interface can extend the replication tables to provide additional information by adding rows to the tables.
Replication Table Descriptions
The Performance Schema provides the following replication-related tables:
Tables that contain information about the connection of the slave server to the master server:
replication_connection_configuration
: Configuration parameters for connecting to the masterreplication_connection_status
: Current status of the connection to the master
Tables that contain general (not thread-specific) information about the transaction applier:
replication_applier_configuration
: Configuration parameters for the transaction applier on the slave.replication_applier_status
: Current status of the transaction applier on the slave.
Tables that contain information about specific threads responsible for applying transactions received from the master:
replication_applier_status_by_coordinator
: Status of the coordinator thread (empty unless the slave is multithreaded).replication_applier_status_by_worker
: Status of the applier thread or worker threads if the slave is multithreaded.
Tables that contain information about channel based replication filters:
replication_applier_filters
: Provides information about the replication filters configured on specific replication channels.replication_applier_global_filters
: Provides information about global replication filters, which apply to all replication channels.
Tables that contain information about Group Replication members:
replication_group_members
: Provides network and status information for group members.replication_group_member_stats
: Provides statistical information about group members and transactions in which they participate.
For more information see Section 18.3, “Monitoring Group Replication”.
The following Performance Schema replication tables continue to be populated when the Performance Schema is disabled:
The exception is local timing information (start and end
timestamps for transactions) in the replication tables
replication_connection_status
,
replication_applier_status_by_coordinator
,
and
replication_applier_status_by_worker
.
This information is not collected when the Performance Schema is
disabled.
The following sections describe each replication table in more
detail, including the correspondence between the columns
produced by SHOW SLAVE STATUS
and
the replication table columns in which the same information
appears.
The remainder of this introduction to the replication tables
describes how the Performance Schema populates them and which
fields from SHOW SLAVE STATUS
are
not represented in the tables.
Replication Table Life Cycle
The Performance Schema populates the replication tables as follows:
Prior to execution of
CHANGE MASTER TO
, the tables are empty.After
CHANGE MASTER TO
, the configuration parameters can be seen in the tables. At this time, there are no active slave threads, so theTHREAD_ID
columns areNULL
and theSERVICE_STATE
columns have a value ofOFF
.After
START SLAVE
, non-NULL
THREAD_ID
values can be seen. Threads that are idle or active have aSERVICE_STATE
value ofON
. The thread that connects to the master server has a value ofCONNECTING
while it establishes the connection, andON
thereafter as long as the connection lasts.After
STOP SLAVE
, theTHREAD_ID
columns becomeNULL
and theSERVICE_STATE
columns for threads that no longer exist have a value ofOFF
.The tables are preserved after
STOP SLAVE
or threads dying due to an error.The
replication_applier_status_by_worker
table is nonempty only when the slave is operating in multithreaded mode. That is, if theslave_parallel_workers
system variable is greater than 0, this table is populated whenSTART SLAVE
is executed, and the number of rows shows the number of workers.
SHOW SLAVE STATUS Information Not In the Replication Tables
The information in the Performance Schema replication tables
differs somewhat from the information available from
SHOW SLAVE STATUS
because the
tables are oriented toward use of global transaction identifiers
(GTIDs), not file names and positions, and they represent server
UUID values, not server ID values. Due to these differences,
several SHOW SLAVE STATUS
columns
are not preserved in the Performance Schema replication tables,
or are represented a different way:
The following fields refer to file names and positions and are not preserved:
Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Exec_Master_Log_Pos Until_Condition Until_Log_File Until_Log_Pos
The
Master_Info_File
field is not preserved. It refers to themaster.info
file used for the slave's master info repository, which has been superseded by crash-safe slave tables.The following fields are based on
server_id
, notserver_uuid
, and are not preserved:Master_Server_Id Replicate_Ignore_Server_Ids
The
Skip_Counter
field is based on event counts, not GTIDs, and is not preserved.These error fields are aliases for
Last_SQL_Errno
andLast_SQL_Error
, so they are not preserved:Last_Errno Last_Error
In the Performance Schema, this error information is available in the
LAST_ERROR_NUMBER
andLAST_ERROR_MESSAGE
columns of thereplication_applier_status_by_coordinator
table (andreplication_applier_status_by_worker
if the slave is multithreaded). Those tables provide more specific per-thread error information than is available fromLast_Errno
andLast_Error
.Fields that provide information about command-line filtering options is not preserved:
Replicate_Do_DB Replicate_Ignore_DB Replicate_Do_Table Replicate_Ignore_Table Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table
The
Slave_IO_State
andSlave_SQL_Running_State
fields are not preserved. If needed, these values can be obtained from the process list by using theTHREAD_ID
column of the appropriate replication table and joining it with theID
column in theINFORMATION_SCHEMA
PROCESSLIST
table to select theSTATE
column of the latter table.The
Executed_Gtid_Set
field can show a large set with a great deal of text. Instead, the Performance Schema tables show GTIDs of transactions that are currently being applied by the slave. Alternatively, the set of executed GTIDs can be obtained from the value of thegtid_executed
system variable.The
Seconds_Behind_Master
andRelay_Log_Space
fields are in to-be-decided status and are not preserved.
Status Variables Moved to Replication Tables
As of MySQL version 5.7.5, the following status variables
(previously monitored using SHOW
STATUS
) were moved to the Perfomance Schema
replication tables:
These status variables are now only relevant when a single replication channel is being used because they only report the status of the default replication channel. When multiple replication channels exist, use the Performance Schema replication tables described in this section, which report these variables for each existing replication channel.
Replication Channels
The first column of the replication Performance Schema tables is
CHANNEL_NAME
. This enables the tables to be
viewed per replication channel. In a non-multisource replication
setup there is a single default replication channel. When you
are using multiple replication channels on a slave, you can
filter the tables per replication channel to monitor a specific
replication channel. See Section 17.2.3, “Replication Channels”
and Section 17.1.4.3, “Multi-Source Replication Monitoring” for
more information.
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-performance-schema-replication-tables.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.