-
-
Notifications
You must be signed in to change notification settings - Fork 134
Bound the lifetime of public-key and signature-spec caches #1027
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
heeoneie
wants to merge
7
commits into
fedify-dev:main
Choose a base branch
from
heeoneie:1017-kv-cache-ttl
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.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
67493d4
Bound the lifetime of public-key and signature-spec caches
heeoneie 6c5e723
Reference the pull request in the changelog fragment
heeoneie 425d322
Make public-key and signature-spec cache TTLs configurable
heeoneie 821ca0c
Cover cache expiry and repopulation through verification and delivery
heeoneie d0b5d92
Document cache TTL options and the retention tradeoff
heeoneie a9fcaf6
Rewrite the KV cache TTL changelog fragment
heeoneie 779f79c
Restore the global fetch spy when a TTL test fails
heeoneie 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
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,25 @@ | ||
| --- | ||
| links: | ||
| '#1017': https://github.com/fedify-dev/fedify/issues/1017 | ||
| '#1027': https://github.com/fedify-dev/fedify/pull/1027 | ||
| --- | ||
| - Changed cached actor public keys and remembered per-origin HTTP Message | ||
| Signatures specs to expire, so a `KvStore` that never sees an explicit | ||
| clear no longer accumulates entries for actors and origins that have | ||
| stopped federating. Keys expire after 30 days and specs after 90 days | ||
| by default, and both windows are configurable through the new | ||
| `FederationOptions.publicKeyTtl` and | ||
| `FederationOptions.httpMessageSignaturesSpecTtl` options. | ||
| [[#1017], [#1027] by Heewon Chae] | ||
|
|
||
| - Shortening a window trades storage for remote requests: an expired | ||
| key has to be refetched before the next signature verification, and | ||
| an expired spec has to be relearned by double-knocking on the next | ||
| delivery. Refetching fails while the peer is unavailable, so a very | ||
| short window makes verification depend on the peer being reachable. | ||
| - Entries written by earlier versions of Fedify have no expiry and are | ||
| left as they are; they gain one the next time they are written. See | ||
| the new *Clearing legacy cache entries* section of the | ||
| [key–value store guide] to clear them proactively instead of waiting. | ||
|
|
||
| [key–value store guide]: https://fedify.dev/manual/kv |
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.