Yes, that is exactly the question, of how to keep going the deletion even in the background.
I have made suggestions for that:
- Customers uplink sends out as many deletion requests as it is fine with. Could be 0, 1 … n
- Customers uplink passes the request to at least 1 node and node passes it on p2p: 1, 2, 4, , 16, … This is where we would need definitely an acknowlede by the node so the request does not get lost.
- The satellite sends out the deletion requests on behalf of customers uplink
- The satellite puts the information which pieces to delete into a log and nodes download this log
- Always: Final clear-out with Bloom filter
Yes, but we may not even need the acknowledgement from the node. I think we should have it definitely if it is p2p. But maybe not even then as long as the satellite knows about the file deletion request. The nodes that have successfully received the request will delete the piece and send orders to confirm deletion so the satellite knows what has been deleted and what is still there. Those that have not received the deletion request from uplink will receive deletion request or deletion log from the satellite and if they miss even that final delete with a Bloom filter.
Most important ack is from satellite. Then subsequently it may be enough that customers uplink spits out as many requests to nodes as it is fine with without waiting for an acknowledgment.
But even if we wait for 1 (the fastest) acknowledgement, it would be as fast as if downloading a file today. I don’t know what the average time to first byte is on downloads today. But an acknowledgement from a single node should not take longer.
Yes I see that.
Let me first quote this:
I don’t know how quickly the satellite can determine which pieces to delete or when it would be safe to do so. Ideally it would pass the correct list to the customers uplink so that it would be safe to delete anything that uplink has received. If that is not possible and we rely on the satellite to coordinate the deletion anyway, then I would say the satellite should know which pieces can be deleted and which pieces need to stay and either send out requests or prepare the logs accordingly.