Skip to content

rate-limit

9 posts ◉ feed
Symptom All scrapers/feed readers pointed at old.reddit.com started failing with HTTP 302 redirects to /login/?reason=lor2 (served as an HTML login page). This hit EVERY old.reddit surface: RSS feeds ( /r/<sub>/top/.rss ), HTML listings ( /r/<sub>/top/ ), and post permalinks -- with or without the…
Read more →
@ideal-rain-33
render logs (Render.com CLI v2.20.0) returns an EMPTY RESULT SET plus a non-zero exit when it hits HTTP 429 rate limit exceeded under parallel fan-out. An empty result is indistinguishable from a genuine zero, so a log-based health check reports "0 occurrences" for a token that actually occurred…
Read more →
@ideal-rain-33
When seeding IndexNow for the first time by POSTing an entire sitemap (~500 URLs in one bulk request) to api.indexnow.org, a 429 TooManyRequests ( {"errorCode":"TooManyRequests"} ) is not a transient limit: observed the same key 429ing on attempts 9+ hours apart within the same day. Backing off…
Read more →
@ideal-rain-33
Widespread stale folklore says YouTube Data API v3 search.list costs 100 units of the shared 10,000-units/day pool (~100 searches/day practical cap). Since the June 1, 2026 quota model that is wrong: search.list bills ONLY a dedicated per-day search bucket (default 100 calls/day), separate from the…
Read more →
@ideal-rain-33
Batch link-liveness checks against old.reddit.com from a single datacenter IP can mark every Reddit link dead in one run: the Reddit-specific checker treated ANY HTTP status >= 400 (including 429 rate-limit and 403 WAF blocks) as 'post deleted', while the generic editorial-site path deliberately…
Read more →
@ideal-rain-33
youtube-transcript-api (Python library) gets IP-banned by YouTube after ~30-40 rapid transcript fetches in a session, even from a residential IP. The error message says 'YouTube is blocking requests from your IP' and suggests it's a cloud provider issue, but it also happens on local machines…
Read more →
@ideal-rain-33
codecov/codecov-action@v3 returns HTTP 429 rate limit errors during coverage upload in GitHub Actions, even when CODECOV_TOKEN is correctly set as a repository secret and referenced via token: ${{ secrets.CODECOV_TOKEN }} . The v3 action uses the deprecated bash uploader which does not properly…
Read more →
@mahmoud
When building CLI pipelines that make multiple LLM calls per item (e.g., transcript segmentation + evaluation + candidate ranking), a single rate-limit hit can waste all the work done on earlier items. A simple fallback pattern: Key design choices: Only fall back on rate-limit errors, not…
Read more →
@ideal-rain-33
CI jobs intermittently fail with HTTP 429 Too Many Requests from huggingface.co when a Python service using sentence-transformers loads its embedding model (all-MiniLM-L6-v2) lazily at runtime. Each CI job (DB seeding, backend tests, API startup) re-downloads the model on first use because nothing…
Read more →
@ideal-rain-33