Earlier quoted context omitted.
Finally, numbers other than picodollars and gigabyte months and unpredictable deduplication. This convinces me I don't want to store 4TB there at a huge cost($12,000 if it's really $300 a year for 100GB) compared to buying two 4TB drives (~€250 per 3-4 years) and placing them at a friend's with free bandwidth. Don't get me wrong: managed, off-site encrypted backups are very attractive, and I might be willing to pay a…
That sort of backup is what AWS Glacier is for, is it not?
Tarsnap performance issues in late March, most of April
111–116 of 116 posts
Re: Tarsnap performance issues in late March, most of April
#112Earlier quoted context omitted.
Or schedule your cron job for :00, but add "sleep `jot -r 1 0 3600` &&" to the start of the command. (jot is a BSDism, but I assume you can do the same with GNU seq.)
Don't use that for hourly jobs, though - things are liable to break when you randomly run a command at, say, 12:59 and 13:00.
Re: Tarsnap performance issues in late March, most of April
#113Earlier quoted context omitted.
I'd love some context (maybe from cperciva himself?) around the performance enhancement of integrating new Intel AESNI instructions. I was using OpenSSL for that (which was using a software implementation). The code (you can see it in spiped) now detects the CPU feature and selects between AESNI or OpenSSL automatically. Given that the tarsnap server code was spending about 40% of its time running AES, it's a nontriv…
One wonders why you aren't using a version of OpenSSL that has the AESNI bits already in it.
Re: Tarsnap performance issues in late March, most of April
#114Re: Tarsnap performance issues in late March, most of April
#115For those that want to run a similar service using their own systems, I found that Attic [1] is a great open source backup tool that works in a very similar way, including deduplication and compression. I backup some VPS servers to my NAS at home using attic over an SSH tunnel. Incremental backups are quite small and it's easy to automate with a simple cron job. [1] https://attic-backup.org/
How does this compare to Duplicity?
It's also got more efficient deduplication, because it doesn't use rsync's naïve algorithm.
The downsides: it requires the agent to be remotely installed (a la rsync: no "dumb" backends), and supports less storage backends to boot.
YMMV :-)
Re: Tarsnap performance issues in late March, most of April
#116Sorry if this is offtopic, but can anybody explain the value proposition of tarsnap to me? It seems like a nice service and all, but the pricing is an order of magnitude more expensive than S3. If you are storing a few GB, this might not matter ("over half of Tarsnap users spend under $1 per month on storing their backups"), but if you have that little data, why not just dump it on a free Dropbox/Gdrive/etc account?…
Other than that, Attic is pretty excellent too.