-
-
Notifications
You must be signed in to change notification settings - Fork 742
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about required disk size #1810
Comments
If I understand correctly, you want to backup the files from server (2) on the disks in server (1), correct? In that case you will need ~200 GB of storage on server (1), where the repository is. Mounting the files to backup from server (2) won't need extra disk space on server (1). (Answer 2b.) sshfs on server (1), making the files from (2) available, would work. borg-create then runs on server (1) (perhaps with --ignore-inode). |
Yes, correct. So it's cheaper to use borg create from sshfs directory, instead of first rsync to local directory and next add from local directory to borg repository. Thank you for your answers. |
I tested borg backups via sshfs, it can't be solution for backuping production systems with media directories bigger several Gbs because of it will take days or weeks to end backup task... It's take extremely long time to process requests... Looks like rsync to local folder + borg backup from local folder is better solution for now even if it require twice more disk space. |
I added feature request, which can help to solve this issue. #1811 |
Closing (as the size question, which was the topic of this issue, was answered). |
Let's assume, we have two servers:
My questions:
a.) 400Gb ( ~200Gb [repository size] plus ~200Gb [full size of last version of image folder on storage server])
or
b.) ~200Gb [repository size] + some more than 5Mb?
If answer is a.), can we improve something in borg create function to get answer b.) ?..
The text was updated successfully, but these errors were encountered: