Remix.run Logo
faangguyindia 7 hours ago

I backup my data to s3 and r2 using local scripts, never had any issues

Don't even know why people rely on these guis which can show their magic anytime

CodesInChaos 6 hours ago | parent | next [-]

* S3 is super expensive, unless you use Glacier, but that has a high overhead per file, so you should bundle them before uploading.

* If your value your privacy, you need to encrypt the files on the client before uploading.

* You need to keep multiple revisions of each file, and manage their lifecycle. Unless you're fine with losing any data that was overwritten at the time of the most recent backup.

* You need to de-duplicate files, unless you want bloat whenever you rename a file or folder.

* Plus you need to pay for Amazon's extortionate egress prices if you actually need to restore your data.

I certainly wouldn't want to handle all that on my own in a script. What can make sense is using open source backup software with S3/R2/B2 as backing storage.

faangguyindia 6 hours ago | parent [-]

which service you recommend?

gpm 17 minutes ago | parent [-]

In terms of software I've been impressed by restic, and as a developer who wants to be able to not back-up gitignored files the rustic clone of restic.

In terms of cloud storage... well I was using backblaze's b2 but the issues here are definitely making me reconsidering doing business with the company even if my use of it is definitely not impacted by any of them.

ralfd 7 hours ago | parent | prev | next [-]

> Don't even know why people

Most people (my mom) don't know what s3 and r2 is or how to use it.

palata 7 hours ago | parent | prev | next [-]

This. I use Restic, the cloud service doesn't know about what I send, it's just encrypted blobs as far as it is concerned.

Terr_ 7 hours ago | parent [-]

> encrypted blobs

I like how you can set multiple keys (much like LUKS) so that the key used by scheduled backups can be changed without messing with the key that I have memorized to restore with when disaster strikes.

It also means you can have multiple computers backing up (sequentially, not simultaneously) to the same repository, each with their own key.

bjord 7 hours ago | parent | prev [-]

you don't understand why pre-rolled critical backup solutions might be appealing to (especially non-technical) people?

also, you pay per-GB. the author is on backblaze's unlimited plan.