-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
CI/WEB: Fix github quota errors by using website as cache #50811
CI/WEB: Fix github quota errors by using website as cache #50811
Conversation
@phofl @MarcoGorelli do you want to have a look at this before I merge? CI error is because a pytest worker didn't return, but the tests passed there. Would be good to get this merged before the release, so the quota error doesn't happen when publishing the prod docs, and we can forget about the error later too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good generally, but not really familiar here
Thanks for having a look. I'll merge, and if there is any problem I'll address in a follow up. But I tested it quite well, should work. |
Owee, I'm MrMeeseeks, Look at me. There seem to be a conflict, please backport manually. Here are approximate instructions:
And apply the correct labels and milestones. Congratulations — you did some good work! Hopefully your backport PR will be tested by the continuous integration and merged soon! Remember to remove the If these instructions are inaccurate, feel free to suggest an improvement. |
context["maintainers"][f"{kind}_with_github_info"] = [] | ||
for user in context["maintainers"][kind]: | ||
resp = requests.get( | ||
f"https://api.github.com/users/{user}", headers=GITHUB_API_HEADERS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might as well still try the API call with GITHUB_TOKEN
xref #50485
Looks like the previous approach didn't fix the github quota errors. @mroeschke I saw you also added a github token, but that didn't seem to work either.
What I'm doing here is to save the data we fetch from github in the website. For example https://pandas.pydata.org/maintainers.json (also for releases and pdeps). The, we request data from github normally, but if the quota is exceeded, if fallbacks to that json file with the data of the previous build. In the worst case scenario we'll have some delay updating the info in the website (we use the quota on PRs, and it can happen that for commits to main that update the cache files, we don't have quota for a while). But we shouldn't see any other CI failure caused by the github quota.
Since building the website shouldn't fail anymore, in the CI or locally, I remove the
--ignore-io-errors
parameter of the script, which doesn't make sense anymore. Also the previous cache, and the token, which I think they didn't help much.I also found a typo when fetching the PDEPs under discussion, that was preventing to render then in the roadmap page. It's also being fixed here.