How do people who would use this kind of thing manage to have remote servers with terabytes of available disk space on them? Anything is possible with money, of course, but how is this anything other than really expensive? For example AWS S3 would be $235/month (that's $2,820/year!) for 3TB not even including any data-out transfer charges. Sure there are others that are cheaper but only marginally so. Is this really…
Bup: Efficient file backup system based on the git packfile format
31–40 of 63 posts
Re: Bup: Efficient file backup system based on the git packfile format
#32a 'backup system' that runs on python. how oxymoron.
Re: Bup: Efficient file backup system based on the git packfile format
#33How do people who would use this kind of thing manage to have remote servers with terabytes of available disk space on them? Anything is possible with money, of course, but how is this anything other than really expensive? For example AWS S3 would be $235/month (that's $2,820/year!) for 3TB not even including any data-out transfer charges. Sure there are others that are cheaper but only marginally so. Is this really…
What I'd consider is essentially the Crashplan model: P2P / external backups locally (i.e. full LAN speed) and an off-site replica which can be cheaper and slower as long as you have a high confidence that it'll be available eventually. This way normal operations are fast but if the building burns down you're covered and presumably have higher priorities than waiting for a restore to run.
Re: Bup: Efficient file backup system based on the git packfile format
#34a 'backup system' that runs on python. how oxymoron.
It may be that some languages or runtimes host consistently more reliable software than others, but I'd bet that the individual programmer, coding style and practice have more of an effect on reliability.
Re: Bup: Efficient file backup system based on the git packfile format
#35Another backup possibility I currently use: ZFS on a backup server (not necessarily ZFS on the system that should be backed up), pull data with rsync on the backup host to a ZFS, after that make a snapshot for an "incremental backup". So simplified it's like: rsync -avx remote:/etc /backup/ && zfs snapshot backup@`date` With zfSnap ( https://github.com/graudeejs/zfSnap ) you can tell how long incremental backups/snap…
Re: Bup: Efficient file backup system based on the git packfile format
#36Bup is lovely. I used it to back up my huge home folder and only switched away to rdiff-backup because (at the time) there was no support for deleting old revisions. Is there any support for that? (Of course, for a large enough hard drive, it's not much of a problem...)
I wrote ddar, which is basically this but solves that particular problem, by using something other than the git packfile format. http://www.synctus.com/ddar and http://github.com/basak/ddar It's recently been made available on Homebrew, too.
Re: Bup: Efficient file backup system based on the git packfile format
#37Bup is lovely. I used it to back up my huge home folder and only switched away to rdiff-backup because (at the time) there was no support for deleting old revisions. Is there any support for that? (Of course, for a large enough hard drive, it's not much of a problem...)
I wrote ddar, which is basically this but solves that particular problem, by using something other than the git packfile format. http://www.synctus.com/ddar and http://github.com/basak/ddar It's recently been made available on Homebrew, too.
Re: Bup: Efficient file backup system based on the git packfile format
#38* on the webpage, there is no new release since 2009.
* has no de-duplication.
I was considering moving my 5+ years old rdiff-backup system to any of those new, promising programs:
* obnam [http://liw.fi/obnam/]
* attic [https://pythonhosted.org/Attic/]
They both do automatic de-duplication, old backup deletion and remote encryption.
Re: Bup: Efficient file backup system based on the git packfile format
#39I hear about rdiff-backup, but I think its two main drawbacks are: * on the webpage, there is no new release since 2009. * has no de-duplication. I was considering moving my 5+ years old rdiff-backup system to any of those new, promising programs: * obnam [ http://liw.fi/obnam/ ] * attic [ https://pythonhosted.org/Attic/ ] They both do automatic de-duplication, old backup deletion and remote encryption.
I'm using obnam now.
Re: Bup: Efficient file backup system based on the git packfile format
#40why on earth isnt there already a perfect cross platform open source backup program? :)
I know,i know..why dont i make one myself? because we dont need a nother half done solution :-b