feat(snapshot): route opted-in checkpoints through PageBroker - #13098
Closed
dfeigin-nv wants to merge 2 commits into
Closed
feat(snapshot): route opted-in checkpoints through PageBroker#13098dfeigin-nv wants to merge 2 commits into
dfeigin-nv wants to merge 2 commits into
Conversation
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 12, 2026 14:28
f791f86 to
4de3930
Compare
dfeigin-nv
changed the base branch from
pagebroker-daemon
to
pagebroker-daemon-tests
August 12, 2026 14:28
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 12, 2026 14:32
4de3930 to
d1d78a8
Compare
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 12, 2026 14:38
d1d78a8 to
5f3a535
Compare
|
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
2 times, most recently
from
August 13, 2026 07:08
e732f37 to
76a3a17
Compare
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 13, 2026 07:35
76a3a17 to
1c9f438
Compare
hhzhang16
reviewed
Aug 14, 2026
Comment on lines
+45
to
+53
| func (c Client) Commit(ctx context.Context, transactionID string) error { | ||
| for { | ||
| response, err := c.request(ctx, transactionID, &Request_Commit{Commit: &CommitRequest{}}) | ||
| if err == nil { | ||
| if response.GetCommitComplete() != nil { | ||
| return nil | ||
| } | ||
| return fmt.Errorf("unexpected PageBroker commit response") | ||
| } |
Contributor
There was a problem hiding this comment.
Your MR description says that commit retries are bounded but there's no bounding here
Contributor
There was a problem hiding this comment.
Also there's retry work + tests in #13172 , might be better suited in this MR
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 16, 2026 08:45
1c9f438 to
f5595aa
Compare
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
2 times, most recently
from
August 16, 2026 10:34
0527c2b to
bb7c4f4
Compare
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 16, 2026 11:33
bb7c4f4 to
9454fe2
Compare
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 16, 2026 13:29
9454fe2 to
a6ee0f8
Compare
dfeigin-nv
force-pushed
the
pagebroker-checkpoint
branch
from
August 16, 2026 13:48
a6ee0f8 to
9caf709
Compare
Contributor
Author
|
Moved to ai-dynamo/snapshot#86. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What
Route checkpoints through PageBroker only when the Pod annotation requests it and the deployment enables PageBroker.
The existing storage-local staging and rename path is unchanged when PageBroker is not selected.
Scope
Checkpoint routing only. No restore routing, mount injection, Helm deployment, GPU path, S3, NIXL, or CRIU provider integration.
Validation
go -C deploy/snapshot test ./internal/pagebroker ./internal/executor ./internal/controllergit diff --check pagebroker-daemon...pagebroker-checkpoint