From 28be225bf3eea4a74ab3a845aabcfbc4a35d534b Mon Sep 17 00:00:00 2001 From: drwtsn32x Date: Fri, 16 Aug 2019 11:12:42 -0700 Subject: [PATCH 1/2] Add auto-compact-interval and auto-vacuum-interval --- docs/06-advanced-options.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/06-advanced-options.md b/docs/06-advanced-options.md index dfbb57f..4d53622 100644 --- a/docs/06-advanced-options.md +++ b/docs/06-advanced-options.md @@ -39,6 +39,10 @@ When performing asynchronous uploads, Duplicati will create volumes that can be `--auto-cleanup = false` If a backup is interrupted there will likely be partial files present on the backend. Using this flag, Duplicati will automatically remove such files when encountered. +### auto-compact-interval +`--auto-compact-interval = 0m` +The minimum amount of time that must elapse after the last compaction before another will be automatically triggered at the end of a backup job. Automatic compaction can be a long-running process and may not be desirable to run after every single backup. + ### auto-update `--auto-update = false` Set this option if you prefer to have the commandline version automatically update @@ -47,6 +51,10 @@ Set this option if you prefer to have the commandline version automatically upda `--auto-vacuum = false` Some operations that manipulate the local database leave unused entries behind. These entries are not deleted from a hard drive until a VACUUM operation is run. This operation saves disk space in the long run but needs to temporarily create a copy of all valid entries in the database. Setting this to true will allow Duplicati to perform VACUUM operations at its discretion. +### auto-vacuum-interval +`--auto-vacuum-interval = 0m` +The minimum amount of time that must elapse after the last vacuum before another will be automatically triggered at the end of a backup job. Automatic vacuum can be a long-running process and may not be desirable to run after every single backup. + ### backup-name `--backup-name = Duplicati.CommandLine` A display name that is attached to this backup. Can be used to identify the backup when sending mail or running scripts. From 2f5b624e99e6842d9be0191540e67de0a9ae8249 Mon Sep 17 00:00:00 2001 From: drwtsn32x Date: Fri, 16 Aug 2019 11:15:06 -0700 Subject: [PATCH 2/2] tweaks --- docs/06-advanced-options.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/06-advanced-options.md b/docs/06-advanced-options.md index 4d53622..63c93d1 100644 --- a/docs/06-advanced-options.md +++ b/docs/06-advanced-options.md @@ -40,7 +40,7 @@ When performing asynchronous uploads, Duplicati will create volumes that can be If a backup is interrupted there will likely be partial files present on the backend. Using this flag, Duplicati will automatically remove such files when encountered. ### auto-compact-interval -`--auto-compact-interval = 0m` +`--auto-compact-interval = 0m` The minimum amount of time that must elapse after the last compaction before another will be automatically triggered at the end of a backup job. Automatic compaction can be a long-running process and may not be desirable to run after every single backup. ### auto-update @@ -52,7 +52,7 @@ Set this option if you prefer to have the commandline version automatically upda Some operations that manipulate the local database leave unused entries behind. These entries are not deleted from a hard drive until a VACUUM operation is run. This operation saves disk space in the long run but needs to temporarily create a copy of all valid entries in the database. Setting this to true will allow Duplicati to perform VACUUM operations at its discretion. ### auto-vacuum-interval -`--auto-vacuum-interval = 0m` +`--auto-vacuum-interval = 0m` The minimum amount of time that must elapse after the last vacuum before another will be automatically triggered at the end of a backup job. Automatic vacuum can be a long-running process and may not be desirable to run after every single backup. ### backup-name