Keep Gantry provider records fresh and reject stale DHT hits - #749
Open
Vaibhav Patel (vpatelsj) wants to merge 3 commits into
Open
Vaibhav Patel (vpatelsj) wants to merge 3 commits into
Vaibhav Patel (vpatelsj) wants to merge 3 commits into
Conversation
added 2 commits
September 12, 2026 08:09
Require HEAD-confirmed providers in chair polling and the NF5 recheck. Retain 6h/3h sweeping republish and remove the hard cold-start deadline.
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.
Why
Gantry provider records can outlive the peers that advertised them. During node replacement, stale records can dominate a lookup result and make cold-start or the final origin-fallback recheck look successful even though none of the returned peers can serve the digest.
At the same time, Gantry was publishing newly observed content without a periodic reprovide schedule, so a live provider could eventually disappear from discovery while still holding the content.
What changed
The sweeping schedule is intentionally in memory. Startup inventory reconciliation rebuilds it after a Gantry restart.
This does not change the DHT's 20-provider result limit or add a hard cold-start deadline; those remain separate follow-up work.