fix: bump aggregate-blob cache key v1→v2 - #2034
Merged
Merged
Conversation
Flotapponnier
added a commit
that referenced
this pull request
Aug 22, 2026
* fix: bench number 208->232 (208 taken by perp-liq-rate) (#2031) * fix(audit): 4 bugs + stablecoin/bridge leads, answers cadence, citation direction, bench 233 * fix(audit): answer leads semantics, freshness copy, null bench cards, OI label * fix(audit): stablecoin/bridge leads semantics, drop hardcoded refresh cadence on answers page * fix: perp-amm-volume-share duplicate bench number 043 -> 233 * fix(citation): direction-aware headlineSentence for lower-is-better metrics * fix: bump aggregate-blob cache key to v2 (flush stale ISR) (#2034)
Flotapponnier
added a commit
that referenced
this pull request
Aug 22, 2026
* fix: bench number 208->232 (208 taken by perp-liq-rate) (#2031) * fix(audit): 4 bugs + stablecoin/bridge leads, answers cadence, citation direction, bench 233 * fix(audit): answer leads semantics, freshness copy, null bench cards, OI label * fix(audit): stablecoin/bridge leads semantics, drop hardcoded refresh cadence on answers page * fix: perp-amm-volume-share duplicate bench number 043 -> 233 * fix(citation): direction-aware headlineSentence for lower-is-better metrics * fix: bump aggregate-blob cache key to v2 (flush stale ISR) (#2034) * feat: /perp-tokens hub — P/E, FDV, revenue for Hyperliquid, GMX, GNS, dYdX, Drift, Ostium
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.
What
Bumps
["aggregate-blob-v1"]→["aggregate-blob-v2"]insrc/lib/aggregate-blob.ts.Why
The
unstable_cacheentry for the aggregate blob was potentially holding a stale (all-draft) snapshot. WithoutrevalidateTagbeing called from the worker (root cause:SITE_URL/REVALIDATE_TOKENwere missing from the VPS worker env), the 60s ISR cycle is the only revalidation mechanism.Bumping the key forces a cold re-fetch on the next homepage render, which pulls the fresh aggregate from
kv.openchainbench.com/aggregate/latest.json(currently 199/201 live).Infra changes (VPS, already done)
SITE_URL=https://openchainbench.comandREVALIDATE_TOKEN=<token>to/run/ocb/.env.materialize-workerREVALIDATE_TOKENin Vercel production env/api/internal/revalidate-aggregateand triggerrevalidateTag('bench-aggregate')immediately