Rechercher dans le manuel MySQL
26.12.16.1 The clone_status Table
The Performance Schema table described here is available as of MySQL 8.0.17.
The clone_status
table shows the status of
the current or last executed cloning operation only. The table
only ever contains one row of data, or is empty.
The clone_status
table has these columns:
ID
A unique cloning operation identifier in the current MySQL server instance.
PID
Process list ID of the session executing the cloning operation.
STATE
Current state of the cloning operation. Values include
Not Started
,In Progress
,Completed
, andFailed
.BEGIN_TIME
A timestamp in
'
format that shows when the cloning operation started.YYYY-MM-DD hh:mm:ss
[.fraction
]'END_TIME
A timestamp in
'
format that shows when the cloning operation finished. Reports NULL if the operation has not ended.YYYY-MM-DD hh:mm:ss
[.fraction
]'SOURCE
The donor MySQL server address in '
HOST:PORT
' format. The column displays 'LOCAL INSTANCE
' for a local cloning operation.DESTINATION
The directory being cloned to. The column displays '
LOCAL INSTANCE
' when performing a local cloning operation.ERROR_NO
The error number reported for a failed cloning operation.
ERROR_MESSAGE
The error message string for a failed cloning operation.
BINLOG_FILE
The name of the binary log file up to which data is cloned.
BINLOG_POSITION
The binary log file offset up to which data is cloned.
GTID_EXECUTED
The GTID value for the last cloned transaction.
The clone_status
table is read-only. DDL,
including TRUNCATE TABLE
, is
not permitted.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-clone-status-table.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.