How is the status regarding PostgreSQL db backup & restore. Is there something planned/some ETA for this?
Many managed database services out there offer some kind of PITR besides automatic snapshots.
I discovered volume snapshots but they have a an RPO of 24 hours?
Also: Read-replicas don’t protect against human error or malicious events (DROP TABLE
), as they propagate instantly. (Although having a delayed replication would work)…
We could set up all this ourselves using something like WAL-G, (here’s a nice tutorial), but that binds many resources - especially to get it right and have recovery tested properly, too.
Still, one should maybe backup to an external provider like AWS S3 for increased resilience.
I think a solid production ready DB setup is a pretty important feature for Fly, because when picking a cloud provider everything lives or dies with the database. The location of the database determines everything else, because even small latencies add up tremendously, when doing READ-WRITE-READ patterns etc.
What’s the current recommendation for disaster recovery? Is there something on the way? What’s your experience with that?
Thanks in advance!