-
Notifications
You must be signed in to change notification settings - Fork 51
Piece deletion #1453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LexLuthr
wants to merge
9
commits into
main
Choose a base branch
from
piece-deletion
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+999
−124
Open
Piece deletion #1453
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c469484
Pure AI draft
ZenGround0 b3501af
Some cleanup
ZenGround0 0100eb6
more cleanup
ZenGround0 5aa3aa2
chain piece deletion post proving
LexLuthr 8eab2f0
fixup scheduling
ZenGround0 18d0f3f
Handling pre upgrade correctly
ZenGround0 d2ae920
Cleanup unused functions
ZenGround0 e68aa12
Downgrade the drain queue table
ZenGround0 31b237b
Fix incorrect table name
ZenGround0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| DROP TABLE IF EXISTS pdpv0_deletion_drain; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| -- PDPv0 scheduled-removal draining (filecoin-project/curio#1422). | ||
| -- | ||
| -- PDPVerifier no longer applies scheduled piece removals inside | ||
| -- nextProvingPeriod; the storage provider drains the queue explicitly with | ||
| -- processPieceDeletions, and nextProvingPeriod reverts while the queue is | ||
| -- non-empty. See https://github.com/FilOzone/pdp/pull/297. | ||
| -- | ||
| -- This table coordinates removal draining. Rows are candidates rather than | ||
| -- confirmed work: the task's first action is an on-chain queue read, and a row | ||
| -- whose data set has an empty queue is simply dropped. So the seed below can be | ||
| -- indiscriminate and needs no chain access at migration time. | ||
| -- | ||
| -- Two writers: this one-time seed, which picks up data sets already carrying a | ||
| -- removal queue at upgrade time (including any stuck by FilOzone/pdp#283), and | ||
| -- proving-period code, which inserts a row when it observes confirmed delete | ||
| -- intent that still needs explicit draining. | ||
|
|
||
| CREATE TABLE IF NOT EXISTS pdpv0_deletion_drain ( | ||
| data_set BIGINT PRIMARY KEY REFERENCES pdp_data_sets(id) ON DELETE CASCADE, | ||
|
|
||
| -- ON DELETE SET NULL so an abandoned or exhausted harmony task releases its | ||
| -- claim automatically, the same way pdp_data_sets.challenge_request_task_id | ||
| -- works. Without it a row lost mid-task would never be re-claimed. | ||
| task_id BIGINT REFERENCES harmony_task(id) ON DELETE SET NULL, | ||
|
|
||
| -- In-flight processPieceDeletions transaction. At most one per data set: | ||
| -- drains must be sequential because each one re-reads the queue length. | ||
| msg_hash TEXT DEFAULT NULL, | ||
|
|
||
| created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() | ||
| ); | ||
|
|
||
| COMMENT ON TABLE pdpv0_deletion_drain IS | ||
| 'Data sets that may have a non-empty PDPVerifier scheduled-removal queue to drain via processPieceDeletions.'; | ||
|
|
||
| -- The watcher only ever looks for unclaimed rows with no drain in flight. | ||
| CREATE INDEX IF NOT EXISTS idx_pdpv0_deletion_drain_pending | ||
| ON pdpv0_deletion_drain (data_set) | ||
| WHERE task_id IS NULL AND msg_hash IS NULL; | ||
|
|
||
| -- Reorg rollback locates drain rows by in-flight message. | ||
| CREATE INDEX IF NOT EXISTS idx_pdpv0_deletion_drain_msg_hash | ||
| ON pdpv0_deletion_drain (msg_hash) | ||
| WHERE msg_hash IS NOT NULL; | ||
|
|
||
| -- Reclaiming abandoned rows scans by task_id. | ||
| CREATE INDEX IF NOT EXISTS idx_pdpv0_deletion_drain_task_id | ||
| ON pdpv0_deletion_drain (task_id) | ||
| WHERE task_id IS NOT NULL; | ||
|
|
||
| INSERT INTO pdpv0_deletion_drain (data_set) | ||
| SELECT id FROM pdp_data_sets | ||
| ON CONFLICT (data_set) DO NOTHING; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.