Hacker News new | ask | show | jobs
by bjoveski 3258 days ago
The file is encrypted locally before uploading to the network. Then the file is sharded, and the shards are replicated among the nodes. Once a shard falls below a certain replication threshold, it will get copied to a new node.

There are other schemes that don't require a copy of each shard, allowing you to reconstruct the file if any subset of the nodes is online.

1 comments

> allowing you to reconstruct the file if any subset of the nodes is online.

Any subset? Surely there's some minimum number of nodes (>1) that need to be online. Unless each node has a complete copy.