| ▲ | benbjohnson 2 days ago | |||||||
Author here. We've done some proof-of-concept work on creating distributed leases using S3. We have some use cases internally where we've considered adding write capabilities to the VFS but we haven't started any work on it yet. | ||||||||
| ▲ | reactordev 2 days ago | parent | next [-] | |||||||
It’s a tricky problem that goes beyond the fs as you know. Since it’s cloud and since it’s distributed, a manager wouldn’t be that far fetched that could issue CRDT like messages across the cluster of nodes to issue a “write” or utilize the sync mechanism you have to propagate a “master” db that you write to (aggregate or designate, either way). I did some work on this on a go based database graph and ended up doing a gossip sync crdt message bus. | ||||||||
| ||||||||
| ▲ | hobo_mark 2 days ago | parent | prev [-] | |||||||
Is this VFS for read-only databases? Or can I query a database that has a single litestream writer somewhere continously making updates and backing them up to S3? | ||||||||
| ||||||||