Rechercher dans le manuel MySQL
22.6.9.2 Point-In-Time Recovery Using NDB Cluster Replication
Point-in-time
recovery—that is, recovery of data changes made since a
given point in time—is performed after restoring a full
backup that returns the server to its state when the backup was
made. Performing point-in-time recovery of NDB Cluster tables
with NDB Cluster and NDB Cluster Replication can be accomplished
using a native NDB
data backup
(taken by issuing CREATE
BACKUP
in the ndb_mgm client) and
restoring the ndb_binlog_index
table (from a
dump made using mysqldump).
To perform point-in-time recovery of NDB Cluster, it is necessary to follow the steps shown here:
Back up all
NDB
databases in the cluster, using theSTART BACKUP
command in the ndb_mgm client (see Section 22.5.3, “Online Backup of NDB Cluster”).At some later point, prior to restoring the cluster, make a backup of the
mysql.ndb_binlog_index
table. It is probably simplest to use mysqldump for this task. Also back up the binary log files at this time.This backup should be updated regularly—perhaps even hourly—depending on your needs.
(Catastrophic failure or error occurs.)
Locate the last known good backup.
Clear the data node file systems (using ndbd
--initial
or ndbmtd--initial
).NoteNDB Cluster Disk Data tablespace and log files are not removed by
--initial
. You must delete these manually.Use
DROP TABLE
orTRUNCATE TABLE
with themysql.ndb_binlog_index
table.Execute ndb_restore, restoring all data. You must include the
--restore-epoch
option when you run ndb_restore, so that thendb_apply_status
table is populated correctly. (See Section 22.4.23, “ndb_restore — Restore an NDB Cluster Backup”, for more information.)Restore the
ndb_binlog_index
table from the output of mysqldump and restore the binary log files from backup, if necessary.Find the epoch applied most recently—that is, the maximum
epoch
column value in thendb_apply_status
table—as the user variable@LATEST_EPOCH
(emphasized):Find the latest binary log file (
@FIRST_FILE
) and position (Position
column value) within this file that correspond to@LATEST_EPOCH
in thendb_binlog_index
table:Using mysqlbinlog, replay the binary log events from the given file and position up to the point of the failure. (See Section 4.6.8, “mysqlbinlog — Utility for Processing Binary Log Files”.)
See also Section 7.5, “Point-in-Time (Incremental) Recovery Using the Binary Log”, for more information about the binary log, replication, and incremental recovery.
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-mysql-cluster-replication-pitr.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.