feat(analytics): add --fast flag for daily incremental fetches - #1278
Merged
Conversation
…ge delay, 100/page limit)
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe analytics CLI now accepts ChangesAnalytics CLI pagination
Possibly related PRs
Suggested reviewers: ✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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
The analytics fetch script defaults to 36s page delay (Mintlify 100 req/h org limit), which is appropriate for full multi-chunk fetches but too slow for daily cron incremental runs. A 2-day incremental fetch with this delay can take 2-3 minutes for just 1-2 pages.
Changes
.github/scripts/analytics/fetch-assistant-insights.ts: add--fastflag that setspageDelayMs=5000andpageLimit=100for quick daily incremental fetches. This is safe for small windows (1-2 pages, ~10s total delay) while still respecting the 100 req/h limit over longer periods.Usage in daily cron
Checklist