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

CI/WEB: Fix github quota errors by using website as cache #50811

Merged
merged 1 commit into from
Jan 18, 2023

Conversation

datapythonista
Copy link
Member

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.

@datapythonista datapythonista added CI Continuous Integration Web pandas website labels Jan 18, 2023
@datapythonista datapythonista added this to the 1.5.3 milestone Jan 18, 2023
@datapythonista datapythonista mentioned this pull request Jan 18, 2023
2 tasks
@datapythonista
Copy link
Member Author

@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.

Copy link
Member

@phofl phofl left a 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

@datapythonista
Copy link
Member Author

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.

@datapythonista datapythonista merged commit afdf0a3 into pandas-dev:main Jan 18, 2023
@lumberbot-app
Copy link

lumberbot-app bot commented Jan 18, 2023

Owee, I'm MrMeeseeks, Look at me.

There seem to be a conflict, please backport manually. Here are approximate instructions:

  1. Checkout backport branch and update it.
git checkout 1.5.x
git pull
  1. Cherry pick the first parent branch of the this PR on top of the older branch:
git cherry-pick -x -m1 afdf0a3e409d02cdfff6c813f512717f1503a4d8
  1. You will likely have some merge/cherry-pick conflict here, fix them and commit:
git commit -am 'Backport PR #50811: CI/WEB: Fix github quota errors by using website as cache'
  1. Push to a named branch:
git push YOURFORK 1.5.x:auto-backport-of-pr-50811-on-1.5.x
  1. Create a PR against branch 1.5.x, I would have named this PR:

"Backport PR #50811 on branch 1.5.x (CI/WEB: Fix github quota errors by using website as cache)"

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 Still Needs Manual Backport label once the PR gets merged.

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
Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI Continuous Integration Web pandas website
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants