DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

(mysql.info) mysql-cluster-backup-concepts

Info Catalog (mysql.info) mysql-cluster-backup (mysql.info) mysql-cluster-backup (mysql.info) mysql-cluster-backup-using-management-server
 
 15.6.5.1 Cluster Backup Concepts
 ................................
 
 A backup is a snapshot of the database at a given time. The backup
 consists of three main parts:
 
    * *Metadata*: the names and definitions of all database tables
 
    * *Table records*: the data actually stored in the database tables
      at the time that the backup was made
 
    * *Transaction log*: a sequential record telling how and when data
      was stored in the database
 
 Each of these parts is saved on all nodes participating in the backup.
 During backup, each node saves these three parts into three files on
 disk:
 
    * `BACKUP-BACKUP_ID.NODE_ID.ctl'
 
      A control file containing control information and metadata. Each
      node saves the same table definitions (for all tables in the
      cluster) to its own version of this file.
 
    * `BACKUP-BACKUP_ID-0.NODE_ID.data'
 
      A data file containing the table records, which are saved on a
      per-fragment basis. That is, different nodes save different
      fragments during the backup. The file saved by each node starts
      with a header that states the tables to which the records belong.
      Following the list of records there is a footer containing a
      checksum for all records.
 
    * `BACKUP-BACKUP_ID.NODE_ID.log'
 
      A log file containing records of committed transactions.  Only
      transactions on tables stored in the backup are stored in the log.
      Nodes involved in the backup save different records because
      different nodes host different database fragments.
 
 In the listing above, BACKUP_ID stands for the backup identifier and
 NODE_ID is the unique identifier for the node creating the file.
 
Info Catalog (mysql.info) mysql-cluster-backup (mysql.info) mysql-cluster-backup (mysql.info) mysql-cluster-backup-using-management-server
automatically generated byinfo2html