A newer version of this documentation is available.

View Latest

cbbackupmgr merge

      +

      Merges two or more backups together

      SYNOPSIS

      cbbackupmgr merge [--archive <archive_dir>] [--repo <repo_name>]
                        [--start <start>] [--end <end>]
                        [--date-range <range>] [--threads <num>]
                        [--no-progress-bar]

      DESCRIPTION

      The merge command is an Enterprise Edition command which can be used to merge two or more backups together. Since cbbackupmgr is a utility that always attempts to take incremental backups it is necessary to reclaim disk space from time to time. Merging data will deduplicate similar keys in backup files being merged together in order to create a single smaller backup file. Doing merges should replace the full backup step by taking multiple incremental backups of a Couchbase cluster and converting them into a single full backup. Since this process takes place in the backup archive there is no cluster overhead to merging data together. See cbbackupmgr-strategies for suggestions on using the merge command in your backup process.

      OPTIONS

      Below are a list of required parameters for the merge command.

      Required

      -a,--archive <archive_dir>

      The archive directory to merge data in.

      -r,--repo <repo_name>

      The name of the backup repository to merge data in.

      Optional

      --start <start>

      The first backup to merge. See START AND END for information on what values are accepted.

      --end <end>

      The final backup to merge. See START AND END for information on what values are accepted.

      --date-range <range>

      This flag will accept a comma separated range in the same formats as --start and --end. See START AND END section for more information on the accepted formats.

      -t,--threads <num>

      Specifies the number of concurrent vBuckets that will be merged at a time. Increasing the threads will make the merge faster but will also increase the resource used by the client. This parameter defaults to 1 but it is recommended to increase it to match the number of CPUs in the client machine.

      --no-progress-bar

      By default, a progress bar is printed to stdout so that the user can see how long the merge is expected to take, the amount of data that is being transferred per second, and the amount of data that has been merged. Specifying this flag disables the progress bar and is useful when running automated jobs.

      START AND END

      This sub-command accepts a --start and --end flag. These flags accept multiple values to allow you to flexibly operate on a range of backups.

      Indexes

      Indexes may be supplied to operate on a range of backups, for example --start 1 --end 2 will include start at the first backup and will finish with the second backup. Note that the first backup is 1 and not 0 and that the --end flag is inclusive.

      Short Dates

      Short dates may be supplied in the format day-month-year. For example --start 01-08-2020 --end 31-08-2020 will operate on all the backups which were taken during August of 2020. Note that the end date is inclusive.

      When supplying short dates, you may supply start or oldest as a placeholder for the date on which the first backup in this repository was taken. The keywords end or latest may be used as a placeholder for the date last backup in the repository was taken.

      Backup Names

      Backup names may be supplied as they exist on disk. For example --start 2020-08-13T20_01_08.894226137+01_00 --end 2020-08-13T20_01_12.348300092+01_00 will cause the sub-command to operate on all the backups which inclusively fall between these two backups.

      When supplying backup names, you may supply start or oldest as a placeholder for the first backup in the repository. The keywords end or latest may be used as a placeholder for the final backup in the repository.

      EXAMPLES

      In order to merge data, you need to have a backup repository with at least two backups. Below is an example of merging a backup repository named "example" that has two backups in it. The first backup contains the initial dataset. The second backup was taken after four items were updated.

      $ cbbackupmgr info -a /data/backups -r example --all
      Name     | Size    | # Backups  |
      example  | 2.44MB  | 2          |
      
      +  Backup                           | Size    | Type  | Source                 | Cluster UUID                      | Range  | Events  | Aliases  | Complete  |
      +  2020-06-02T07_58_32.42306+01_00  | 2.38MB  | FULL  | http://localhost:8091  | c044f5eeb1dc16d0cd49dac29074b5f9  | N/A    | 0       | 1        | true      |
      
      -    Bucket   | Size    | Items  | Mutations  | Tombstones  | Views  | FTS  | Indexes  | CBAS  |
      -    example  | 2.38MB  | 8192   | 8192       | 0           | 0      | 0    | 0        | 0     |
      
      +  Backup                           | Size     | Type  | Source                 | Cluster UUID                      | Range  | Events  | Aliases  | Complete  |
      +  2020-06-03T08_00_22.62763+01_00  | 65.47KB  | INCR  | http://localhost:8091  | c044f5eeb1dc16d0cd49dac29074b5f9  | N/A    | 0       | 1        | true      |
      
      -    Bucket   | Size     | Items  | Mutations  | Tombstones  | Views  | FTS  | Indexes  | CBAS  |
      -    example  | 65.25KB  | 4      | 4          | 0           | 0      | 0    | 0        | 0     |
      
      $ cbbackupmgr merge -a /data/backup -r example --start 2020-06-02T07_58_32.42306+01_00 \
       --end 2020-06-03T08_00_22.62763+01_00
      
      $ cbbackupmgr info -a /data/backups -r example --all
      Name     | Size    | # Backups  |
      example  | 2.38MB  | 1          |
      
      +  Backup                           | Size    | Type          | Source  | Cluster UUID                      | Range                                      | Events  | Aliases  | Complete  |
      +  2020-06-03T08_00_22.62763+01_00  | 2.38MB  | MERGE - FULL  | Merge   | c044f5eeb1dc16d0cd49dac29074b5f9  | 2020-06-02T07_58_32-2020-06-02T08_00_22:2  | 0       | 1        | true      |
      
      -    Bucket   | Size    | Items  | Mutations  | Tombstones  | Views  | FTS  | Indexes  | CBAS  |
      -    example  | 2.38MB  | 8192   | 8192       | 0           | 0      | 0    | 0        | 0     |

      Upon completion of the merge the number of items in the backup files is the same. This is because the keys in the second backup were also contained in the first backup, but the keys in the second backup contained newer values and overwrote the keys in the first backup during the merge. The timestamp of the backup folder is also the same as the timestamp of the latest backup because the new backup is a snapshot of the cluster at that point in time.

      DISCUSSION

      It is important that internally the merge command is able to merge backups together without corrupting the backup archive or leaving it in an intermediate state. In order to ensure this behavior cbbackupmgr always creates a new backup and completely merges all data before removing any backup files. When a merge is started a .merge_status file is created in the backup repository to track the merge progress. cbbackupmgr then copies the first backup to the .merge folder and begins merging the other backups into .merge folder. After each backup is merged the .merge_status file is updated to track the merge progress. if all backups are merged together successfully, cbbackupmgr will start deleting the old backups and then copy the fully merged backup into a folder containing the same name as the backup specified by the --end flag. If the cbbackupmgr utility fails during this process, then the merge will either be completed or the partial merge files will be removed from the backup repository during the next invocation of the cbbackupmgr.

      Since the merge command creates a new backup file before it removes the old ones it is necessary to have at least as much free space as the backups that are to be merge together.

      For more information on suggestions for how to use the merge command in your backup process see cbbackupmgr-strategies

      ENVIRONMENT AND CONFIGURATION VARIABLES

      CB_ARCHIVE_PATH

      Specifies the path to the backup archive. If the archive path is supplied as a command line argument then this value is overridden.

      FILES

      .merge_status

      File storing information on the progress of the merge.

      .merge

      Directory storing intermediate merge data.

      CBBACKUPMGR

      Part of the cbbackupmgr suite