Skip to content
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

Ensure CDN invalidations occur when crates or crate versions are deleted #10888

Merged
merged 5 commits into from
Mar 26, 2025

Conversation

LawnGnome
Copy link
Contributor

This can be reviewed commit-by-commit if you want, but it's probably small enough to digest without doing so.

Basically: we need to invalidate the CDNs when crate files (and related artifacts) are deleted, otherwise a crate that reuses the same name might still have the deleted crate file served from a CDN node.

I initially debated implementing this inline in the two different places we'd need it via a new Environment::invalidate_cdns_many function, but it felt cleaner to implement it as a new background job (and it doesn't feel like it's super time critical, most of the time), so here we are.

I have one mild concern about this: namely, because Fastly requires one API request per path to be purged — and we have to purge two paths for each crate version, plus the RSS feed if we're deleting the whole crate — we may go somewhat closer to hitting the rate limit than previously. But I think let's try it and see what happens in practice.

I'd like to give this a test on staging before we deploy it, ideally.

Fixes #10887.

@LawnGnome LawnGnome added C-bug 🐞 Category: unintended, undesired behavior A-backend ⚙️ labels Mar 25, 2025
@LawnGnome LawnGnome requested a review from a team March 25, 2025 00:03
@LawnGnome LawnGnome self-assigned this Mar 25, 2025
Copy link
Member

@Turbo87 Turbo87 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM at first glance

@LawnGnome LawnGnome force-pushed the invalidate-on-delete branch from f42a24d to 20de8e7 Compare March 26, 2025 00:39
@LawnGnome LawnGnome force-pushed the invalidate-on-delete branch from 20de8e7 to ede5689 Compare March 26, 2025 00:40
@LawnGnome LawnGnome merged commit 0b4ee63 into rust-lang:main Mar 26, 2025
9 checks passed
@LawnGnome
Copy link
Contributor Author

Tested on staging; seems to work as expected, both for version and full crate deletions.

Should be good to deploy whenever we next deploy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-backend ⚙️ C-bug 🐞 Category: unintended, undesired behavior
Projects
None yet
Development

Successfully merging this pull request may close these issues.

CDNs may still serve up the old version of a replaced crate
2 participants