[mapping]
vbr configuration files have one [Mapping] section that specifies all database nodes that are included in a backup. It also includes the backup host and directory of each node. If objects are replicated to an alternative database, the [Mapping] section maps the target database nodes to the source database backup locations.
If you edit an existing configuration file to add a Mapping in the current style, the new section must combine information from all existing mappings.
Note
[CloudStorage] and [Mapping] configuration sections are mutually exclusive. If you include both, the backup fails.Unlike other configuration file sections, the [Mapping] section does not use named parameters. Instead, it uses entries of the following format:
dbNode = backupHost:backupDir
The following table describes these three elements.
dbNode
- Name of the database node as recognized by Vertica. This value is not the node's host name; rather, it is the name Vertica uses internally to identify the node, usually in the form of:
v_dbname_node000int
To find database node names in your cluster, query the
node_name
column of the NODES system table. backupHost
- The target host name or IP address on which to store this node's backup. The
backupHost
name is different fromdbNode
. Thecopycluster
command uses this value to identify the target database node host name.Important
Although supported, backups to an NFS host might perform poorly, particularly on networks shared with rsync operations. backupDir
- The full path to the directory on the backup host or node where the backup will be stored. The following requirements apply this directory:
-
Already exists when you run vbr with the
--task backup
option -
Writable by the user account used to run vbr.
-
Unique to the database you are backing up. Multiple databases cannot share the same backup directory.
-
File system at this location supports
fcntl lockf
file locking.
-
For example:
[Mapping]
v_sec_node0001 = pri_bsrv01:/archive/backup
v_sec_node0002 = pri_bsrv02:/archive/backup
v_sec_node0003 = pri_bsrv03:/archive/backup
Mapping to the localhost
vbr does not support the special localhost name as a backup host. To back up a database node to its own disk, use empty square brackets for the hostname in the [Mapping] section of the configuration file.
[Mapping]
NodeName = []:/backup/path
Mapping to the same database
The following example shows a [Mapping] section that specifies a single node to back up: v_vmart_node0001
. The node is assigned to backup host srv01
and backup directory /home/dbadmin/backups
. Although a single-node cluster is backed up, and the backup host and the database node are the same system, they are specified differently.
Specify the backup host and directory using a colon (:
) as a separator:
[Mapping]
v_vmart_node0001 = srv01:/home/dbadmin/backups
Mapping to an alternative database
Note
Replicating objects to an alternative database requires the vbr configuration file to include a [NodeMapping] section. This section points source nodes to their target database nodes.To restore an alternative database, add mapping information as follows:
[Mapping]
targetNode = backupHost:backupDir
For example:
[Mapping]
v_sec_node0001 = pri_bsrv01:/archive/backup
v_sec_node0002 = pri_bsrv02:/archive/backup
v_sec_node0003 = pri_bsrv03:/archive/backup