-
-
Notifications
You must be signed in to change notification settings - Fork 606
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
sa: investigate removing requestedNames table #7432
Comments
The table was added in #3169. There wasn't significant discussion about whether it would be better to get the relevant info from the authorizations table. Reading that PR and the code I'm convinced that we can remove the |
This removes the only place we query the requestedNames table, which allows us to get rid of it in a subsequent PR (once this one is merged and deployed). Part of #7432
This removes the only place we query the requestedNames table, which allows us to get rid of it in a subsequent PR (once this one is merged and deployed). Part of letsencrypt#7432
Part of letsencrypt#7432 Follows up on letsencrypt#7435, now that that PR is deployed.
This removes the only place we query the requestedNames table, which allows us to get rid of it in a subsequent PR (once this one is merged and deployed). Part of letsencrypt#7432
Part of letsencrypt#7432 Follows up on letsencrypt#7435, now that that PR is deployed.
requestedNames is our 3rd biggest table by row count and by byte size, and I suspect we don't need it. It's used in GetOrder to calculate
order.Names
but we could calculate the same thing using the fetched authzs. Investigate the history here and see if we can get rid of it.The text was updated successfully, but these errors were encountered: