Skip to content

feat(core): mirror replay lineage into a reserved $replayedFromRunId attribute - #3329

Draft
mitul-s wants to merge 2 commits into
mainfrom
mitul/replay-lineage-attribute
Draft

feat(core): mirror replay lineage into a reserved $replayedFromRunId attribute#3329
mitul-s wants to merge 2 commits into
mainfrom
mitul/replay-lineage-attribute

Conversation

@mitul-s

@mitul-s mitul-s commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Summary

recreateRunFromExisting records its source run only on the new run's executionContext (replayedFromRunId, #2872). Attribute-indexed observability stores never see executionContext — the ClickHouse workflow_run_attributes table behind the Vercel dashboard's runs list only carries run attributes — so surfacing "which runs are replays" in a list currently requires a per-run world read (see vercel/front#79769, which fans out runs.getMany for every listed page).

This mirrors the replay lineage into the reserved $replayedFromRunId attribute, riding the exact mechanism $rootRunId/$parentRunId already use:

  • @workflow/world: export REPLAYED_FROM_RUN_ID_ATTRIBUTE ($replayedFromRunId) alongside the existing lineage attribute keys.
  • @workflow/core start(): when replayedFromRunId is set and the spec version supports native attributes (v4+), seed the attribute on both the run_created event and the resilient-start queue input (with allowReservedAttributes, like parent lineage). Pre-v4 runs skip the attribute silently and keep the unconditional executionContext record, so replaying an old run never fails.
  • Validation of replayedFromRunId now runs before the attribute seed is composed; behavior is otherwise unchanged (a plain start() still emits no attributes field at all).

Once ingested, the dashboard's runs list can serve replay lineage straight from the attributes table and drop the per-run world fan-out.

Testing

  • packages/core: pnpm vitest run src/runtime/start.test.ts src/runtime/runs.test.ts — 82 passed, including new coverage: attribute seeded on both payloads, merges with caller attributes (caller keys last), skipped on pre-v4 spec with executionContext intact, and no empty attributes object on plain starts.
  • packages/world: full unit suite — 84 passed.
  • Biome and tsc show no new findings (the quickjs-runtime.ts typecheck errors and complexity warnings exist on main).

Made with Cursor

…attribute

recreateRunFromExisting records its source run only in the new run's
executionContext, which attribute-indexed observability stores (e.g. the
ClickHouse workflow_run_attributes table behind the dashboard runs list)
never see — so surfacing 'which runs are replays' in a list requires a
per-run world read. Seed the same value as the reserved
$replayedFromRunId attribute (like $rootRunId/$parentRunId) on worlds
with native attributes; pre-v4 spec versions skip the attribute silently
and keep the executionContext record.

Co-authored-by: Cursor <cursoragent@cursor.com>
@mitul-s
mitul-s requested a review from a team as a code owner August 4, 2026 17:43
@vercel

vercel Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
example-nextjs-workflow-turbopack Ready Ready Preview Aug 4, 2026 6:14pm
example-nextjs-workflow-webpack Ready Ready Preview Aug 4, 2026 6:14pm
example-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-astro-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-express-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-fastify-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-hono-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-nestjs-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-nitro-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-nuxt-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-sveltekit-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-tanstack-start-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workbench-vite-workflow Ready Ready Preview Aug 4, 2026 6:14pm
workflow-docs Ready Ready Preview, v0 Aug 4, 2026 6:14pm
workflow-swc-playground Ready Ready Preview Aug 4, 2026 6:14pm
workflow-tarballs Ready Ready Preview Aug 4, 2026 6:14pm
workflow-web Ready Ready Preview Aug 4, 2026 6:14pm

@changeset-bot

changeset-bot Bot commented Aug 4, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 1f2440a

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 20 packages
Name Type
@workflow/core Minor
@workflow/world Minor
@workflow/builders Patch
@workflow/cli Patch
@workflow/next Patch
@workflow/nitro Patch
@workflow/vitest Patch
@workflow/web-shared Patch
@workflow/web Patch
workflow Minor
@workflow/world-testing Patch
@workflow/world-local Patch
@workflow/world-postgres Patch
@workflow/world-vercel Patch
@workflow/astro Patch
@workflow/nest Patch
@workflow/rollup Patch
@workflow/sveltekit Patch
@workflow/vite Patch
@workflow/nuxt Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

❌ Failed E2E Tests

▲ Vercel Production (1 failed)

nextjs-webpack-node (1 failed):

  • outputStreamWorkflow positive startIndex (skips first chunk)
💻 Local Development (11 failed)

astro-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

express-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

fastify-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

hono-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-turbopack-canary-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-turbopack-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-webpack-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nitro-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nuxt-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

sveltekit-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

vite-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable
📦 Local Production (13 failed)

astro-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

express-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

fastify-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

hono-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-turbopack-canary-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-turbopack-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-webpack-canary-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-webpack-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nitro-stable-node (1 failed):

  • webhookWorkflow | wrun_41KZ6ZPQSC0GP0M9EQ9JGAEX80

nitro-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nuxt-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

sveltekit-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

vite-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable
🐘 Local Postgres (12 failed)

astro-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

express-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

fastify-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

hono-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-turbopack-canary-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-turbopack-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-webpack-canary-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nextjs-webpack-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nitro-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

nuxt-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

sveltekit-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

vite-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

🪟 Windows (1 failed)

nextjs-turbopack-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

📋 Other (6 failed)

e2e-local-dev-nest-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

e2e-local-dev-tanstack-start-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

e2e-local-postgres-nest-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

e2e-local-postgres-tanstack-start-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

e2e-local-prod-nest-stable-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

e2e-local-prod-tanstack-start-quickjs (1 failed):

  • hookMinRetentionWorkflow - terminal Hook cannot resume and its token stays unavailable

E2E Test Summary

Summary
Passed Failed Skipped Total
❌ ▲ Vercel Production 2779 1 496 3276
❌ 💻 Local Development 3142 11 435 3588
❌ 📦 Local Production 3277 13 454 3744
❌ 🐘 Local Postgres 3278 12 454 3744
❌ 🪟 Windows 311 1 0 312
❌ 📋 Other 2062 6 428 2496
✅ vercel-multi-region 27 0 0 27
Total 14876 44 2267 17187
Details by Category

❌ ▲ Vercel Production

App Passed Failed Skipped
✅ astro-node 127 0 29
✅ astro-quickjs 127 0 29
✅ example-node 127 0 29
✅ example-quickjs 127 0 29
✅ express-node 127 0 29
✅ express-quickjs 127 0 29
✅ fastify-node 127 0 29
✅ fastify-quickjs 127 0 29
✅ hono-node 127 0 29
✅ hono-quickjs 127 0 29
✅ nextjs-turbopack-node 152 0 4
❌ nextjs-webpack-node 151 1 4
✅ nextjs-webpack-quickjs 152 0 4
✅ nitro-node 127 0 29
✅ nitro-quickjs 127 0 29
✅ nuxt-node 127 0 29
✅ nuxt-quickjs 127 0 29
✅ sveltekit-node 146 0 10
✅ sveltekit-quickjs 146 0 10
✅ vite-node 127 0 29
✅ vite-quickjs 127 0 29

❌ 💻 Local Development

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
❌ astro-stable-quickjs 129 1 26
✅ express-stable-node 130 0 26
❌ express-stable-quickjs 129 1 26
✅ fastify-stable-node 130 0 26
❌ fastify-stable-quickjs 129 1 26
✅ hono-stable-node 130 0 26
❌ hono-stable-quickjs 129 1 26
✅ nextjs-turbopack-canary-node 137 0 19
❌ nextjs-turbopack-canary-quickjs 136 1 19
✅ nextjs-turbopack-stable-node 156 0 0
❌ nextjs-turbopack-stable-quickjs 155 1 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
❌ nextjs-webpack-stable-quickjs 155 1 0
✅ nitro-stable-node 130 0 26
❌ nitro-stable-quickjs 129 1 26
✅ nuxt-stable-node 130 0 26
❌ nuxt-stable-quickjs 129 1 26
✅ sveltekit-stable-node 149 0 7
❌ sveltekit-stable-quickjs 148 1 7
✅ vite-stable-node 130 0 26
❌ vite-stable-quickjs 129 1 26

❌ 📦 Local Production

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
❌ astro-stable-quickjs 129 1 26
✅ express-stable-node 130 0 26
❌ express-stable-quickjs 129 1 26
✅ fastify-stable-node 130 0 26
❌ fastify-stable-quickjs 129 1 26
✅ hono-stable-node 130 0 26
❌ hono-stable-quickjs 129 1 26
✅ nextjs-turbopack-canary-node 137 0 19
❌ nextjs-turbopack-canary-quickjs 136 1 19
✅ nextjs-turbopack-stable-node 156 0 0
❌ nextjs-turbopack-stable-quickjs 155 1 0
✅ nextjs-webpack-canary-node 137 0 19
❌ nextjs-webpack-canary-quickjs 136 1 19
✅ nextjs-webpack-stable-node 156 0 0
❌ nextjs-webpack-stable-quickjs 155 1 0
❌ nitro-stable-node 129 1 26
❌ nitro-stable-quickjs 129 1 26
✅ nuxt-stable-node 130 0 26
❌ nuxt-stable-quickjs 129 1 26
✅ sveltekit-stable-node 149 0 7
❌ sveltekit-stable-quickjs 148 1 7
✅ vite-stable-node 130 0 26
❌ vite-stable-quickjs 129 1 26

❌ 🐘 Local Postgres

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
❌ astro-stable-quickjs 129 1 26
✅ express-stable-node 130 0 26
❌ express-stable-quickjs 129 1 26
✅ fastify-stable-node 130 0 26
❌ fastify-stable-quickjs 129 1 26
✅ hono-stable-node 130 0 26
❌ hono-stable-quickjs 129 1 26
✅ nextjs-turbopack-canary-node 137 0 19
❌ nextjs-turbopack-canary-quickjs 136 1 19
✅ nextjs-turbopack-stable-node 156 0 0
❌ nextjs-turbopack-stable-quickjs 155 1 0
✅ nextjs-webpack-canary-node 137 0 19
❌ nextjs-webpack-canary-quickjs 136 1 19
✅ nextjs-webpack-stable-node 156 0 0
❌ nextjs-webpack-stable-quickjs 155 1 0
✅ nitro-stable-node 130 0 26
❌ nitro-stable-quickjs 129 1 26
✅ nuxt-stable-node 130 0 26
❌ nuxt-stable-quickjs 129 1 26
✅ sveltekit-stable-node 149 0 7
❌ sveltekit-stable-quickjs 148 1 7
✅ vite-stable-node 130 0 26
❌ vite-stable-quickjs 129 1 26

❌ 🪟 Windows

App Passed Failed Skipped
✅ nextjs-turbopack-node 156 0 0
❌ nextjs-turbopack-quickjs 155 1 0

❌ 📋 Other

App Passed Failed Skipped
✅ e2e-local-dev-nest-stable-node 130 0 26
❌ e2e-local-dev-nest-stable-quickjs 129 1 26
✅ e2e-local-dev-tanstack-start-node 130 0 26
❌ e2e-local-dev-tanstack-start-quickjs 129 1 26
✅ e2e-local-postgres-nest-stable-node 130 0 26
❌ e2e-local-postgres-nest-stable-quickjs 129 1 26
✅ e2e-local-postgres-tanstack-start-node 130 0 26
❌ e2e-local-postgres-tanstack-start-quickjs 129 1 26
✅ e2e-local-prod-nest-stable-node 130 0 26
❌ e2e-local-prod-nest-stable-quickjs 129 1 26
✅ e2e-local-prod-tanstack-start-node 130 0 26
❌ e2e-local-prod-tanstack-start-quickjs 129 1 26
✅ e2e-vercel-prod-nest-node 127 0 29
✅ e2e-vercel-prod-nest-quickjs 127 0 29
✅ e2e-vercel-prod-tanstack-start-node 127 0 29
✅ e2e-vercel-prod-tanstack-start-quickjs 127 0 29

✅ vercel-multi-region

App Passed Failed Skipped
✅ nextjs-turbopack 27 0 0

📋 View full workflow run

@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

📊 Workflow Benchmarks

commit 1f2440a · Tue, 04 Aug 2026 18:27:48 GMT · run logs

Backend: vercel · app: nextjs-turbopack

Metric Scenario Best (ms) P75 (ms) P90 (ms) P99 (ms) Samples
TTFS step 313 (+22%) 🔻 1329 🔴 (+19%) 🔻 1352 🔴 (+16%) 🔻 1606 🔴 (+34%) 🔻 30
TTFS stream 1286 (+423%) 🔻 1354 🔴 (+20%) 🔻 1372 🔴 (+18%) 🔻 1380 🔴 (+13%) 30
TTFS hook + stream 1536 (+295%) 🔻 1622 🔴 (+18%) 🔻 1657 🔴 (+10%) 1681 🔴 (-38%) 💚 30
STSO 1020 steps (inline) 95 (-4.0%) 128 (-16%) 💚 145 (-21%) 💚 237 (-29%) 💚 1018
STSO 1020 steps (queue-hop) 3139 (+6.0%) 3139 (+6.0%) 3139 (+6.0%) 3139 (+6.0%) 1
WO 1020 steps 134775 (-12%) 134775 (-12%) 134775 (-12%) 134775 (-12%) 1
SL stream latency 102 (+5.2%) 142 🔴 (+3.6%) 147 🔴 (-5.2%) 159 🔴 (-76%) 💚 30
SO stream overhead (text) 102 (-18%) 💚 144 (-66%) 💚 154 (-81%) 💚 224 (-93%) 💚 30
SO stream overhead (structured) 102 (-4.7%) 165 (-45%) 💚 197 (-65%) 💚 293 (-68%) 💚 30
📈 STSO distribution vs main (inline / queue-hop histograms)

1020 steps (inline)

Cumulative STSO time: main 149536ms → this run 130313ms (Δ -19223ms, -13%)

   50-100 ms  ┃                         main   1  this   6    +5
  100-150 ms  ███████████████████░░░░┃  main 721  this 930  +209
  150-200 ms  █┃████                    main 227  this  65  -162
  200-250 ms  ┃                         main  40  this   7   -33
  250-300 ms  ┃                         main  12  this   5    -7
  300-350 ms  ┃                         main   8  this   0    -8
  350-400 ms  ┃                         main   5  this   3    -2
  400-450 ms  ┃                         main   2  this   0    -2
  550-600 ms  ┃                         main   1  this   1    +0
1100-1150 ms  ┃                         main   1  this   0    -1
4400-4450 ms  ┃                         main   0  this   1    +1

1020 steps (queue-hop)

Cumulative STSO time: main 2962ms → this run 3139ms (Δ +177ms, +6%)

2500-3000 ms  ┃███████████████████████  main 1  this 0  -1
3000-3500 ms  ░░░░░░░░░░░░░░░░░░░░░░░┃  main 0  this 1  +1
📜 Previous results (1)

70cc37f

Tue, 04 Aug 2026 18:00:52 GMT · run logs

vercel / nextjs-turbopack

Metric Scenario Best (ms) P75 (ms) P90 (ms) P99 (ms) Samples
TTFS step 1160 (+351%) 🔻 1326 🔴 (+19%) 🔻 1383 🔴 (+19%) 🔻 1460 🔴 (+21%) 🔻 30
TTFS stream 1140 (+363%) 🔻 1207 🔴 (+7.4%) 1216 🔴 (+4.6%) 1301 🔴 (+6.6%) 30
TTFS hook + stream 1394 (+258%) 🔻 1495 🔴 (+9.2%) 1601 🔴 (+6.4%) 5432 🔴 (+100%) 🔻 30
STSO 1020 steps (inline) 83 (-16%) 💚 118 (-23%) 💚 137 (-25%) 💚 201 (-40%) 💚 1019
WO 1020 steps 118702 (-23%) 💚 118702 (-23%) 💚 118702 (-23%) 💚 118702 (-23%) 💚 1
SL stream latency 94 (-3.1%) 150 🔴 (+9.5%) 176 🔴 (+14%) 246 🔴 (-63%) 💚 30
SO stream overhead (text) 106 (-15%) 162 (-61%) 💚 229 (-72%) 💚 3596 🔴 (+20%) 🔻 30
SO stream overhead (structured) 100 (-6.5%) 147 (-51%) 💚 173 (-69%) 💚 215 (-77%) 💚 30
ℹ️ Metric definitions & methodology

The collapsed STSO distribution section above buckets every step gap of the sequential-steps run (not a sampled window), split by whether the step ending the gap ran inline — in the same warm process as the step before it, so the gap is pure framework overhead — or after a queue-hop — the first step of a fresh process, which pays queue dispatch, client reinit and event-log replay. Bars overlay the two runs: is main, marks where this run lands, bridges the gap when this run has more samples in a bucket.

Best/P75/P90/P99 deltas compare against the most recent benchmark run on main at the time of this run. 🔻 flags a delta worse than +15%, 💚 one better than −15%.

Metrics — TTFS: time to first step body (in-deployment start() → first step body, deployment clocks) · STSO: step-to-step overhead (gap between consecutive step bodies) · WO: workflow overhead (whole-run time outside step bodies, in-deployment anchored) · SL: stream latency (in-deployment write → read propagation, readAt - writtenAt) · SO: stream overhead (end-to-end write+consume time beyond the modelled generation window)

Scenarios — step: one trivial no-op step, no stream; no hooks, so the run stays in turbo mode (in-process fast path) · stream: one streaming step; no hooks, so the run stays in turbo mode (in-process fast path) · hook + stream: registers a hook before one step, which exits turbo mode (dispatch path) · 1020 steps: 1020 trivial sequential steps; STSO is measured between consecutive steps in the given step ranges, and WO is the whole-run overhead outside step bodies · stream latency: parallel reader/writer steps on a dedicated stream; SL is the in-deployment write->read propagation (readAt - writtenAt) · stream overhead (text): writer streams 300 variable-length text token deltas paced at 100/s for 3s (a haiku-size LLM's token throughput) while a parallel reader drains the whole stream; SO is the end-to-end write+consume time beyond the 3s generation window (overhead/backpressure) · stream overhead (structured): same workload as stream overhead (text), but each delta is an AI-SDK-style structured object ({ type: 'text-delta', id, text }) instead of a raw string, so the SO gap vs the text scenario is the added serialization cost

🔴 marks a percentile over its target (within target is left unmarked). Targets (p75/p90/p99, ms) — TTFS 200/300/600 · SL 50/60/125 · SO 250/500/1000

All metrics are measured from deployment-side timestamps only. Runs are triggered by an in-deployment route that stamps the anchor (clientStart) right before start(), so the CI runner’s request and its path through api.vercel.com sit outside every measured window. TTFS = in-deployment start() → first step body (turbo uses the in-process fast path, non-turbo the dispatch path), and includes the VQS dispatch hop plus any /flow cold start. STSO/WO are measured between step bodies on the deployment. SL is measured inside the workflow (parallel reader/writer steps), so it no longer includes the api.vercel.com read path.

Cold starts are kept in the numbers on purpose — they are part of real bursty-workload latency. The workbench deployment cold-starts the /flow invocation for a large fraction of runs, inflating P75+; the Best column shows the fastest (warm-start) sample for comparison.

@mitul-s
mitul-s marked this pull request as draft August 4, 2026 17:44
Composing the replay key around the resolver forced an empty-object
sentinel and a separate hasLineage concept; making the resolver own all
lineage attributes returns undefined for no-lineage runs and keeps the
seed call site in its original shape.

Co-authored-by: Cursor <cursoragent@cursor.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant