From 28ba4655c1d9f890f59f3470771a20db6325cc94 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Fri, 16 Jun 2023 12:24:28 +0300 Subject: [PATCH] added note about the disk space when creating backups --- core/base_backup.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/base_backup.go b/core/base_backup.go index 60698f5b..90d9dfbf 100644 --- a/core/base_backup.go +++ b/core/base_backup.go @@ -31,6 +31,9 @@ const CacheKeyActiveBackup string = "@activeBackup" // The backup is executed within a transaction, meaning that new writes // will be temporary "blocked" until the backup file is generated. // +// To safely perform the backup, it is recommended to have free disk space +// for at least 2x the size of the pb_data directory. +// // By default backups are stored in pb_data/backups // (the backups directory itself is excluded from the generated backup). //