<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>OpenText Analytics Database 26.2.x – Managing backups</title>
    <link>/en/admin/backup-and-restore/managing-backups/</link>
    <description>Recent content in Managing backups on OpenText Analytics Database 26.2.x</description>
    <generator>Hugo -- gohugo.io</generator>
    
	  <atom:link href="/en/admin/backup-and-restore/managing-backups/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Admin: Viewing backups</title>
      <link>/en/admin/backup-and-restore/managing-backups/viewing-backups/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/admin/backup-and-restore/managing-backups/viewing-backups/</guid>
      <description>
        
        
        &lt;p&gt;You can view backups in three ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#ListBackups&#34;&gt;vbr listbackup&lt;/a&gt; task: List backups on the local or remote backup host.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;../../../../en/sql-reference/system-tables/v-monitor-schema/db-backups/#&#34;&gt;DATABASE_BACKUPS&lt;/a&gt; system table: Query for historical information about backups.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;../../../../en/admin/backup-and-restore/troubleshooting-backup-and-restore/#vbrLogFile&#34;&gt;vbr log file&lt;/a&gt;: Check the status of a backup. The log file resides on the node where you ran &lt;code&gt;vbr&lt;/code&gt;, in the directory specified by the &lt;code&gt;vbr&lt;/code&gt; configuration parameter &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/misc/#tempDir&#34;&gt;tempDir&lt;/a&gt;, by default set to &lt;code&gt;/tmp/vbr&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a name=&#34;ListBackups&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;vbr-listbackup&#34;&gt;vbr listbackup&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;vbr&lt;/code&gt; task &lt;code&gt;listbackup&lt;/code&gt; returns a list of all backups on backup hosts, whether local or remote. If unqualified by task &lt;a href=&#34;#listbackupOptions&#34;&gt;options&lt;/a&gt;, &lt;code&gt;listbackup&lt;/code&gt; returns the list to standard output in columnar format.&lt;/p&gt;
&lt;p&gt;The following example lists two full backups of a three-node cluster, where each node is mapped to the same backup host, &lt;code&gt;bkhost&lt;/code&gt;. Backups are listed in reverse chronological order:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t listbackup -c fullbackup.ini
backup                            backup_type   epoch   objects   include_patterns   exclude_patterns   nodes(hosts)                                                                                        version            file_system_type
backup_snapshot_20220912_131918   full          3915                                                    v_vmart_node0001(10.20.100.247), v_vmart_node0002(10.20.100.248), v_vmart_node0003(10.20.100.249)   v12.0.2-20220911   [Linux]
backup_snapshot_20220909_122300   full          3910                                                    v_vmart_node0001(10.20.100.247), v_vmart_node0002(10.20.100.248), v_vmart_node0003(10.20.100.249)   v12.0.2-20220911   [Linux]
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The following table contains information about output columns that are returned from a &lt;code&gt;vbr&lt;/code&gt; &lt;code&gt;listbackup&lt;/code&gt; task:

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Column&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;backup&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;










&lt;p&gt;Identifies a backup by concatenating the configured &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/misc/#snapshotName&#34;&gt;snapshot name&lt;/a&gt; with the backup timestamp:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;code&gt;snapshot-name&lt;/code&gt;&lt;/em&gt;&lt;code&gt;_&lt;/code&gt;&lt;em&gt;&lt;code&gt;YYYYMMDD&lt;/code&gt;&lt;/em&gt;&lt;code&gt;_&lt;/code&gt;&lt;em&gt;&lt;code&gt;HHMMSS&lt;/code&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;For example, the following identifier identifies a backup generated by the configuration file that sets snapshotName to &lt;code&gt;monthlyBackup&lt;/code&gt; on April 14 2022, at 13:44:52.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;monthlyBackup_20220414_134452&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Use the timestamp portion of this identifier—&lt;code&gt;20220414_134452&lt;/code&gt;—to specify the archived backup you wish to restore.&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;backup_type&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Type of backup, full or object.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;epoch&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Epoch when the backup was created.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;objects&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Objects that were backed up, blank if a full backup.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;include_patterns&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Wildcard patterns included in object backup tasks using the &lt;code&gt;includeObjects&lt;/code&gt; parameter in your configuration file, blank for full backups.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;exclude_patterns&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Wildcard patterns included in your object backup tasks using the &lt;code&gt;excludeObjects&lt;/code&gt; parameter in your configuration file, blank for full backups.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;nodes (hosts)&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
(Enterprise Mode only) Names of database nodes and hosts that received the backup.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;version&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Version of OpenText™ Analytics Database used to create the backup.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;file_system_type&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Storage location file system of the database hosts that comprise this backup—for example, Linux or GCS.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;communal_storage&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
(Eon Mode only) Communal storage location for the backup.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;


&lt;div class=&#34;admonition important&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Important&lt;/h4&gt;
If you try to list backups on a local cluster with no database, the backup configuration node-host mappings must provide full paths. If the configuration maps to local hosts using the &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/mapping/#Mapping2LocalHost&#34;&gt;[] shortcut&lt;/a&gt;, the &lt;code&gt;listbackup&lt;/code&gt; task fails.
&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&lt;a name=&#34;listbackupOptions&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;listbackup-options&#34;&gt;Listbackup options&lt;/h3&gt;
&lt;p&gt;You can qualify the &lt;code&gt;listbackup&lt;/code&gt; task with one or more options:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;vbr --task listbackup [--list-all] [--json] [--list-output-file &lt;span class=&#34;code-variable&#34;&gt;filepath&lt;/span&gt;] --config-file &lt;span class=&#34;code-variable&#34;&gt;filepath&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
Option&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;--list-all&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Generate a list of all snapshots stored on the hosts and paths listed in the specified configuration file.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;--json&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Use JSON delimited format.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;
&lt;code&gt;--list-output-file&lt;/code&gt;&lt;/td&gt; 

&lt;td &gt;
Redirect output to the specified file.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;The following example qualifies the &lt;code&gt;listbackup&lt;/code&gt; task with the &lt;code&gt;--list-all&lt;/code&gt; option. The output shows three nightly backups from nodes &lt;code&gt;vmart_1&lt;/code&gt;, &lt;code&gt;vmart_2&lt;/code&gt;, and &lt;code&gt;v_mart3&lt;/code&gt;, which the configuration file &lt;code&gt;nightly.ini&lt;/code&gt; maps to their respective hosts &lt;code&gt;doca01&lt;/code&gt;, &lt;code&gt;doca02&lt;/code&gt;, and &lt;code&gt;doca03&lt;/code&gt;. The &lt;code&gt;listbackup&lt;/code&gt; output shows that these locations contain not only object backups that were generated with &lt;code&gt;nightly.ini&lt;/code&gt;, but also full backups created with a second configuration file, &lt;code&gt;weekly.ini&lt;/code&gt;, which maps to the same nodes and host:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr --task listbackup --list-all --config-file /home/dbadmin/nightly.ini

backup                   backup_type  epoch  objects      include_patterns  exclude_patterns  nodes(hosts)                                      version  file_system_type
weekly_20220508_183249   full         1720                                       vmart_1(doca01), vmart_2(doca02), vmart_3(doca03) v11.0.1  [Linux]
weekly_20220501_182816   full         1403                                       vmart_1(doca01), vmart_2(doca02), vmart_3(doca03) v11.0.1  [Linux]
weekly_20220424_192754   full         1109                                       vmart_1(doca01), vmart_2(doca02), vmart_3(doca03) v11.0.1  [Linux]
nightly_20220507_183034  object       1705   sales_schema                        vmart_1(doca01), vmart_2(doca02), vmart_3(doca03) v11.0.1  [Linux]
nightly_20220506_181808  object       1692   sales_schema                        vmart_1(doca01), vmart_2(doca02), vmart_3(doca03) v11.0.1  [Linux]
nightly_20220505_193906  object       1632   sales_schema                        vmart_1(doca01), vmart_2(doca02), vmart_3(doca03) v11.0.1  [Linux]
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;query-backup-history&#34;&gt;Query backup history&lt;/h2&gt;
&lt;p&gt;You can query the system table &lt;a href=&#34;../../../../en/sql-reference/system-tables/v-monitor-schema/db-backups/#&#34;&gt;DATABASE_BACKUPS&lt;/a&gt; to get historical information about backups. The &lt;code&gt;objects&lt;/code&gt; column lists which objects were included in object-level backups.

&lt;div class=&#34;admonition important&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Important&lt;/h4&gt;
Do not use the &lt;code&gt;backup_timestamp&lt;/code&gt; value to &lt;a href=&#34;../../../../en/admin/backup-and-restore/restoring-backups/&#34;&gt;restore an archive&lt;/a&gt;. Instead, use the values provided by vbr &lt;code&gt;listbackup&lt;/code&gt; task.
&lt;/div&gt;&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;=&amp;gt; SELECT * FROM v_monitor.database_backups;
-[ RECORD 1 ]----+------------------------------
backup_timestamp | 2013-05-10 14:41:12.673381-04
node_name        | v_vmart_node0003
snapshot_name    | schemabak
backup_epoch     | 174
node_count       | 3
file_system_type | [Linux]
objects          | public, store, online_sales
-[ RECORD 2 ]----+------------------------------
backup_timestamp | 2013-05-13 11:17:30.913176-04
node_name        | v_vmart_node0003
snapshot_name    | kantibak
backup_epoch     | 175
node_count       | 3
file_system_type | [Linux]
objects          |
-[ RECORD 13 ]---+------------------------------
backup_timestamp | 2013-05-16 07:02:23.721657-04
node_name        | v_vmart_node0003
snapshot_name    | objectbak
backup_epoch     | 180
node_count       | 3
file_system_type | [Linux]
objects          | test, test2
-[ RECORD 14 ]---+------------------------------
backup_timestamp | 2013-05-16 07:19:44.952884-04
node_name        | v_vmart_node0003
snapshot_name    | table1bak
backup_epoch     | 180
node_count       | 3
file_system_type | [Linux]
objects          | test
-[ RECORD 15 ]---+------------------------------
backup_timestamp | 2013-05-16 07:20:18.585076-04
node_name        | v_vmart_node0003
snapshot_name    | table2bak
backup_epoch     | 180
node_count       | 3
file_system_type | [Linux]
objects          | test2
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Admin: Checking backup integrity</title>
      <link>/en/admin/backup-and-restore/managing-backups/checking-backup-integrity/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/admin/backup-and-restore/managing-backups/checking-backup-integrity/</guid>
      <description>
        
        
        &lt;p&gt;OpenText™ Analytics Database can confirm the integrity of your backup files and the manifest that identifies them. By default, backup integrity checks output their results to the command line.&lt;/p&gt;
&lt;p&gt;&lt;a name=&#34;QuickCheck&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;quick-check&#34;&gt;Quick check&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;quick-check&lt;/code&gt; task gathers all backup metadata from the backup location specified in the configuration file and compares that metadata to the backup manifest. A quick check does not verify the objects themselves. Instead, this task outputs an exceptions list of any discrepancies between objects in the backup location and objects listed in the backup manifest.&lt;/p&gt;
&lt;p&gt;Use the following format to perform quick check task:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t quick-check -c &lt;span class=&#34;code-variable&#34;&gt;configfile.ini&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;For example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t quick-check -c backupconfig.ini
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a name=&#34;FullCheck&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;full-check&#34;&gt;Full check&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;full-check&lt;/code&gt; task verifies all objects listed in the backup manifest against filesystem metadata. A full check includes the same steps as a quick check. You can include the optional &lt;code&gt;--report-file&lt;/code&gt; parameter to output results to a delimited JSON file. This task outputs an exceptions list that identifies the following inconsistencies:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Incomplete restore points&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Damaged restore points&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Missing backup files&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unreferenced files&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Use the following template to perform a full check task:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t full-check -c &lt;span class=&#34;code-variable&#34;&gt;configfile.ini&lt;/span&gt; --report-file=&lt;span class=&#34;code-variable&#34;&gt;path/filename&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;For example:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t full-check -c backupconfig.ini --report-file=logging/fullintegritycheck.json
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Admin: Repairing backups</title>
      <link>/en/admin/backup-and-restore/managing-backups/repairing-backups/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/admin/backup-and-restore/managing-backups/repairing-backups/</guid>
      <description>
        
        
        &lt;p&gt;OpenText™ Analytics Database can reconstruct backup manifests and remove unneeded backup objects.&lt;/p&gt;
&lt;p&gt;&lt;a name=&#34;QuickRepair&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;quick-repair&#34;&gt;Quick repair&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;quick-repair&lt;/code&gt; task rebuilds the backup manifest, based on the manifests contained in the backup location.&lt;/p&gt;
&lt;p&gt;Use the following template to perform a quick repair task:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t quick-repair -c &lt;span class=&#34;code-variable&#34;&gt;configfile.ini&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a name=&#34;GarbageCollection&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;garbage-collection&#34;&gt;Garbage collection&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;collect-garbage&lt;/code&gt; task rebuilds your backup manifest and deletes any backup objects that do not appear in the manifest. You can include the optional &lt;code&gt;--report-file&lt;/code&gt; parameter to output results to a delimited JSON file.&lt;/p&gt;
&lt;p&gt;Use the following template to perform a garbage collection task:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t collect-garbage -c &lt;span class=&#34;code-variable&#34;&gt;configfile.ini&lt;/span&gt; --report-file=&lt;span class=&#34;code-variable&#34;&gt;path/filename&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Admin: Removing backups</title>
      <link>/en/admin/backup-and-restore/managing-backups/removing-backups/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/admin/backup-and-restore/managing-backups/removing-backups/</guid>
      <description>
        
        
        &lt;p&gt;You can remove existing backups and restore points using &lt;code&gt;vbr&lt;/code&gt;. When you use the &lt;code&gt;remove&lt;/code&gt; task, &lt;code&gt;vbr&lt;/code&gt; updates the manifests affected by the removal and maintains their integrity. If the backup archive contains multiple restore points, removing one does not affect the others. When you remove the last restore point, &lt;code&gt;vbr&lt;/code&gt; removes the backup entirely.

&lt;div class=&#34;alert admonition note&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;admonition-head&#34;&gt;Note&lt;/h4&gt;

OpenText™ Analytics Database does not support removing backups through the file system.

&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Use the following template to perform a remove task:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t remove -c &lt;span class=&#34;code-variable&#34;&gt;configfile.ini&lt;/span&gt; --archive &lt;span class=&#34;code-variable&#34;&gt;timestamp&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can remove multiple restore points using the archive parameter. To obtain the timestamp for a particular restore point, &lt;a href=&#34;../../../../en/admin/backup-and-restore/managing-backups/viewing-backups/&#34;&gt;use the listbackup task&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;To remove multiple restore points, use a comma separator:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;--archive=&amp;#34;&lt;span class=&#34;code-variable&#34;&gt;restore-point1&lt;/span&gt;,&lt;span class=&#34;code-variable&#34;&gt;restore-point2&lt;/span&gt;&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To remove an inclusive range of restore points, use a colon:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;--archive=&amp;#34;&lt;span class=&#34;code-variable&#34;&gt;oldest-restore-point&lt;/span&gt;:&lt;span class=&#34;code-variable&#34;&gt;newest-restore-point&lt;/span&gt;&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To remove all restore points, specify an archive value of &lt;code&gt;all&lt;/code&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;--archive all
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following example shows how you can remove a restore point from an existing backup:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$ vbr -t remove -c backup.ini --archive  20160414_134452
Removing restore points: 20160414_134452
Remove complete!
&lt;/code&gt;&lt;/pre&gt;
      </description>
    </item>
    
    <item>
      <title>Admin: Estimating log file disk requirements</title>
      <link>/en/admin/backup-and-restore/managing-backups/estimating-log-file-disk-requirements/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/admin/backup-and-restore/managing-backups/estimating-log-file-disk-requirements/</guid>
      <description>
        
        
        &lt;p&gt;One of the &lt;code&gt;vbr&lt;/code&gt; configuration parameters is &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/misc/#tempDir&#34;&gt;tempDir&lt;/a&gt; . This parameter specifies the database host location where &lt;code&gt;vbr&lt;/code&gt; writes its log files and some other temp files (of negligible size). The default location is the &lt;code&gt;/tmp/vbr&lt;/code&gt; directory on each database host. You can change the default location by specifying a different path in the configuration file.&lt;/p&gt;
&lt;p&gt;The temporary storage directory also contains local log files describing the progress, throughput, and any errors encountered for each node. Each time you run &lt;code&gt;vbr&lt;/code&gt;, the script creates a separate log file, each named with a timestamp. When using default settings, the log file typically uses about 4KB of space per node per backup.&lt;/p&gt;
&lt;p&gt;The &lt;code&gt;vbr&lt;/code&gt; log files are not removed automatically, so you must delete older log files manually, as necessary.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Admin: Allocating resources</title>
      <link>/en/admin/backup-and-restore/managing-backups/allocating-resources/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/admin/backup-and-restore/managing-backups/allocating-resources/</guid>
      <description>
        
        
        &lt;p&gt;By default, &lt;code&gt;vbr&lt;/code&gt; allows a single rsync connection (for Linux file systems), 10 concurrent threads (for cloud storage connections), and unlimited bandwidth for any backup or restore operation. You can change these values in your configuration file. See &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/#&#34;&gt;vbr configuration file reference&lt;/a&gt; for details about these parameters.&lt;/p&gt;
&lt;h2 id=&#34;connections&#34;&gt;Connections&lt;/h2&gt;
&lt;p&gt;You might want to increase the number of concurrent connections. If you have many database files, more connections can provide a significant performance boost as each connection increases the number of concurrent file transfers.&lt;/p&gt;
&lt;p&gt;For more information, refer to the following parameters in &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/transmission/#&#34;&gt;[transmission]&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;total_bwlimit_backup&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;total_bwlimit_restore&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;concurrency_backup&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;concurrency_restore&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;and the following parameters in &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/cloudstorage/#&#34;&gt;[CloudStorage]&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;cloud_storage_concurrency_backup&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;cloud_storage_concurrency_restore&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bandwidth-limits&#34;&gt;Bandwidth limits&lt;/h2&gt;
&lt;p&gt;You can limit network bandwidth use through the &lt;code&gt;total_bwlimit_backup&lt;/code&gt; and &lt;code&gt;total_bwlimit_restore&lt;/code&gt; data transmission parameters. For more information, refer to &lt;a href=&#34;../../../../en/admin/backup-and-restore/vbr-config-file-reference/transmission/#&#34;&gt;[transmission]&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
