feat: add GitHub API rate-limit budget manager#695
Open
pavsoss wants to merge 1 commit into
Open
Conversation
Contributor
|
@pavsoss is attempting to deploy a commit to the codersogs-3057's projects Team on Vercel. A member of the Team first needs to authorize it. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Introduces a shared GitHub API rate-limit budget manager to coordinate primary REST API usage across heavy background jobs.
Multiple Inngest jobs can run concurrently and independently consume the same GitHub App installation quota. This change tracks the known per-installation API budget and pauses heavy background work when the remaining quota falls below a safe threshold.
Changes Made
Rate-Limit Budget Manager
src/lib/github/rate-budget.ts.x-ratelimit-remainingandx-ratelimit-resetvalues.GITHUB_API_BUDGET_THRESHOLDwith a default of500.Octokit Integration
hook.wrap('request').getInstallOctokit.Background Job Coordination
Added budget checks to heavy GitHub API background jobs:
issues-sweeppr-backfillmaintainer-discoverWhen the known remaining quota falls below the configured threshold, jobs use
step.sleepUntilto pause until the GitHub reset window plus a small safety buffer.Sleep steps use deterministic scoped IDs to remain compatible with Inngest's durable execution model.
User-visible GitHub writes remain ungated so the reserved quota can continue serving interactive workflows.
Tests
Closes #667