Bug #9363
open[keep-balance] Avoid deleting recently-referenced blocks
0%
Description
- Write data blocks
- Save collection
- Wait for original blob signature TTLs (from step 1) to expire
- Retrieve the collection (setting aside a copy in memory)
- Update the collection to remove references to some (or all) blocks
- Wait for keep-balance to do a garbage-collection sweep
- Update the collection (or save a new one) using the blocks/signatures set aside in step 4
If the only reference to a block is the one in this collection, the block may be deleted during step 6, resulting in a collection being saved successfully in step 7 even though some of its data is missing.
Proposed solution:
When updating a collection, detect block references that are being dropped2; if there are any, save a temporary collection (trashed, readable only by admin) referencing all of the dropped blocks. These will be cleaned up when they expire, and in the meantime they will be seen by keep-balance, thus protecting them until even their new signatures (issued in step 4) expire.
1 If any client has a signed block locator with a future timestamp, that block either [i] is newer than BlobSignatureTTL according to the timestamp stored on the backend, and therefore won't be deleted; or [ii] appears in a collection record where keep-balance can see it, and therefore won't be deleted.
2 This might be done during the (existing) strip_signatures_and_update_replication_confirmed
hook where we detect whether references to new blocks have been added, so we know whether to reset the replication_confirmed
columns.
Updated by Tom Clegg over 5 years ago
- Subject changed from [keep-balance] Avoid deleting recently-referenced blocks (based on data in logs table) to [keep-balance] Avoid deleting recently-referenced blocks
- Description updated (diff)
- Category set to Keep
Updated by Tom Morris over 5 years ago
What current client(s) exercise(s) this scenario? I can't think of a circumstance in which it would occur.
Updated by Tom Morris over 5 years ago
- Target version changed from To Be Groomed to Arvados Future Sprints
Updated by Peter Amstutz over 3 years ago
- Target version deleted (
Arvados Future Sprints)