Skip to content

Commit

Permalink
NOTES
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Dec 24, 2023
1 parent c7fc388 commit 85e2272
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# TODO

- snapshots
- cleanup
- delete invalid versions by constructing the chain and deleting everything not on it
- delete old versions (older than some particular age, older than latest snapshot)
- delete old snapshots
- actions to build with various features enabled/disabled
- update TC docs

# CAS notes

compare_and_swap(name, old, new)

S3: impossible

Azure:
- read(name)
- if content != old, fail
- if not found, write new value unconditionally, start over with compare_and_swap(name, new, new)
- write with condition on etag from first step

GCP:
- read(name)
- if content != old, fail
- write with condition on generation, or zero if not found

0 comments on commit 85e2272

Please sign in to comment.