Skip to content

[e2e] Decay the repro's poke pump instead of stopping at the budget - #3561

Draft
VaguelySerious wants to merge 3 commits into
mainfrom
peter/repro-poke-decay
Draft

[e2e] Decay the repro's poke pump instead of stopping at the budget#3561
VaguelySerious wants to merge 3 commits into
mainfrom
peter/repro-poke-decay

Conversation

@VaguelySerious

@VaguelySerious VaguelySerious commented Aug 14, 2026

Copy link
Copy Markdown
Member

Description

Follow-up to #3558, which landed the poke budget as a hard stop. That bought the local lanes their green at a real cost to coverage, and this PR pays it back.

The hard stop was binding, and it silenced the back half of every run. On both local lanes every step-storm run spent the full 64-poke budget, so a ~160s run applied no out-of-band writes after its first ~48s. Lowering attempt concurrency does not help: at concurrency=3 runs finish in 87-96s and still spend the whole budget.

The pump now runs POKE_MAX (64) pokes at full cadence and then decays to × POKE_DECAY_FACTOR (8) rather than stopping. Loop gain stays below 1 — which is what stopped the runaway to ~270 pokes per run where nothing finished — while a slow run's later rounds keep receiving pressure.

It works, and the evidence is a corruption. On the decay config, world-local produced a genuine CORRUPTED_EVENT_LOG (wrun_01M00SW88YV76AXKXQFX4Y3V1X, 87 pokes over 200s). Three consecutive passes of the merged hard-stop config produced none. This is the failure the harness exists to catch, so the difference is not cosmetic.

Which then required a run timeout that fits the local lanes. With pressure restored, step-storm lands at 194-203s (world-local) and 168-175s (world-postgres) against the harness' 240000 default — 83% of its own timeout — while Vercel finishes the same storm in 85-100s. One slow runner at that margin turns a lane that reproduces into a lane full of stuck, which is exactly the failure #3558 set out to stop. The local script raises it to 480000; it is the one scale knob the script sets, because it is the one whose meaning depends on every replay of every run sharing a Node process instead of getting its own Fluid invocation. An exported value or a workflow_dispatch input still wins.

Also worth recording, since it reframes the coverage question: the lanes were never comparable on pressure. A Vercel resume pays a network round trip, so that lane's pump achieves an effective ~2.3s interval (37-49 pokes per run) where localhost runs the full 750ms. The local lanes were applying roughly 3x the out-of-band write rate of the lane that found the production bug; the decayed rate is what brings them near it rather than below it.

How did you test your changes?

Lane dispatches on this branch's code, at the default scale:

lane pokes/run step-storm duration outcome
world-local 83-87 176-203s 14/14, one pass with 1 CORRUPTED_EVENT_LOG
world-postgres 81-85 166-188s 14/14 completed
Vercel 37-49 (budget never reached) 89-102s 14/14 completed

step-storm stragglers stay at 18-38 of 48 branches, so the step-count amplifier the corruption depends on is still firing — the lanes are not green by way of doing less.

Three lane passes on the decay config, for the corruption rate: world-local 17 completed + 1 CORRUPTED_EVENT_LOG out of 18 step-storm runs, world-postgres 18/18 completed, Vercel 18/18 completed. Worst-case duration is 208s against the raised 480000 timeout, so the margin that forced the timeout change is now 2.3x rather than 1.2x.

A separate coverage gap this surfaced, not addressed here

hook-storm on the local lanes barely exercises its recovery path, and the arithmetic says it cannot: the driver resumes branch index at index * hookResumeStaggerMs (400ms), so against a 2500ms watchdog only index 7 of 8 straggles — one per round. Observed world-local stragglers are 0-1 per run against Vercel'''s 18-24, because a Vercel resume also pays ~1.5s of network latency that pushes most indices past the deadline. So the local hook-storm lane runs almost entirely on the settle path, and the step-count amplifier the scenario exists to drive is mostly idle there.

That is independent of anything in this PR or #3558 — it is what width * stagger barely exceeding watchdogMs means once resumes are free. Fixing it is a scale-tuning decision (a larger local HOOK_RESUME_STAGGER_MS, or a shorter local WATCHDOG_MS) and wants its own before/after straggler numbers rather than a guess bundled in here.

The decay arithmetic, locally at POKE_MAX=4 / 500ms / decay 10: a 26.1s run sent 8 pokes, 4 at full cadence and 4 across the remaining 24s. Unbounded sends ~52; a hard stop sends 4.

node --test .github/scripts/render-event-log-race-repro-results.test.js — 21 pass, including the config line now naming the budget and its decay (poke budget 64 then /8), since a bound that changes coverage should not be invisible next to the cadence it bounds.

Not in this PR

The saturated lanes are not a throughput bug in either World, and I went looking: under saturation world-local logged zero failed deliveries, zero handler errors and zero exhausted messages across three 14-run passes, because its semaphore parks a message before the delivery fetch so queue waiting never consumes the transport timeout. world-postgres' step execution already in flight lines are duplicate deliveries being absorbed by the SDK, not work being wasted. Neither local World has world-vercel's per-run replay serialization, but that is opt-in there too (WORKFLOW_SEQUENTIAL_REPLAYS, #2193).

Two default-concurrency smells remain worth their own change, with the honest caveat that I could not demonstrate harm from either: world-local defaults to 1000 in-flight deliveries while the comment above the constant says the limit exists to avoid overwhelming the process (a 5-run pass at that default completed clean on a 12-core laptop), and world-postgres to 50 embedded workers per process.

PR Checklist - Required to merge

  • 📦 pnpm changeset was run to create a changelog for this PR
    • Empty changeset: harness, CI, and docs only, no published package.
  • 🔒 DCO sign-off passes (git commit --signoff)
  • 📝 Ping @vercel/workflow in a comment once the PR is ready, and the above checklist is complete

🤖 Generated with Claude Code

VaguelySerious and others added 3 commits August 14, 2026 12:19
A hard ceiling bought the lanes their green at the cost of coverage: every
step-storm run on both local lanes spent the full 64-poke budget, so the back
half of a ~160s run applied no out-of-band writes at all. Lowering attempt
concurrency does not help — at c3 runs finish in 87-96s and still spend the
whole budget.

The pump now slows to `pokeIntervalMs * POKE_DECAY_FACTOR` (8) once the budget
is spent rather than stopping, so loop gain stays below 1 while a slow run's
later rounds keep receiving pressure. Verified locally at POKE_MAX=4 / 500ms /
decay 10: a 26.1s run sent 8 pokes, 4 at full cadence and 4 across the
remaining 24s, where unbounded sends ~52 and a hard stop sends 4.

The lanes were never comparable on this axis to begin with: a Vercel resume
pays a network round trip, so that lane's pump achieves an effective ~2.3s
interval (35-44 pokes per run) while localhost runs the full 750ms. The decayed
rate is what puts the local lanes near the lane that found the production bug,
rather than at 3x its write rate.

Also records what the saturated lanes are NOT: world-local logged zero failed
deliveries, zero handler errors and zero exhausted messages across three 14-run
passes, because its semaphore parks a message before the delivery fetch and
queue waiting never consumes the transport timeout. No retry amplification to
find. The two default-concurrency smells that did surface (world-local's 1000
in-flight deliveries, world-postgres' 50 workers per process) are noted for
their own change, not fixed here.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Signed-off-by: Peter Wielander <peter.wielander@vercel.com>
With the pump's pressure restored, world-local `step-storm` lands at 194-203s
and world-postgres at 168-175s against the harness' 240000 default — 83% of
their own timeout — while the Vercel lane finishes the same storm in 85-100s.
One slow runner at that margin turns a lane that reproduces into a lane full of
`stuck`, which is the failure this branch exists to stop.

The local script raises it to 480000. It is the one scale knob the script sets,
because it is the one whose meaning depends on every replay of every run sharing
a Node process rather than getting its own Fluid invocation; an exported value
still wins, and a workflow_dispatch input still wins.

Evidence the restored pressure is worth the timeout: on the decay config
world-local produced a CORRUPTED_EVENT_LOG (wrun_01M00SW88YV76AXKXQFX4Y3V1X, 87
pokes over 200s), which three passes of the hard-cap config never did.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Signed-off-by: Peter Wielander <peter.wielander@vercel.com>
Signed-off-by: Peter Wielander <peter.wielander@vercel.com>
@changeset-bot

changeset-bot Bot commented Aug 14, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 5426321

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

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@vercel

vercel Bot commented Aug 14, 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 14, 2026 7:24pm
example-nextjs-workflow-webpack Ready Ready Preview Aug 14, 2026 7:24pm
example-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-astro-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-express-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-fastify-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-hono-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-nestjs-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-nitro-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-nuxt-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-python-workflow Error Error Aug 14, 2026 7:24pm
workbench-sveltekit-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-tanstack-start-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workbench-vite-workflow Ready Ready Preview Aug 14, 2026 7:24pm
workflow-docs Ready Ready Preview, v0 Aug 14, 2026 7:24pm
workflow-swc-playground Ready Ready Preview Aug 14, 2026 7:24pm
workflow-tarballs Ready Ready Preview Aug 14, 2026 7:24pm
workflow-web Ready Ready Preview Aug 14, 2026 7:24pm

@github-actions

github-actions Bot commented Aug 14, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

All tests passed

E2E Test Summary

Summary
Passed Failed Skipped Total
✅ ▲ Vercel Production 3466 0 590 4056
✅ 💻 Local Development 3810 0 558 4368
✅ 📦 Local Production 3810 0 558 4368
✅ 🐘 Local Postgres 3810 0 558 4368
✅ 🪟 Windows 312 0 0 312
✅ vercel-multi-region 27 0 0 27
Total 15235 0 2264 17499
Details by Category

✅ ▲ Vercel Production

App Passed Failed Skipped
✅ astro-node 128 0 28
✅ astro-quickjs 128 0 28
✅ example-node 128 0 28
✅ example-quickjs 128 0 28
✅ express-node 128 0 28
✅ express-quickjs 128 0 28
✅ fastify-node 128 0 28
✅ fastify-quickjs 128 0 28
✅ hono-node 128 0 28
✅ hono-quickjs 128 0 28
✅ nest-node 128 0 28
✅ nest-quickjs 128 0 28
✅ nextjs-turbopack-node 153 0 3
✅ nextjs-turbopack-quickjs 153 0 3
✅ nextjs-webpack-node 153 0 3
✅ nextjs-webpack-quickjs 153 0 3
✅ nitro-node 128 0 28
✅ nitro-quickjs 128 0 28
✅ nuxt-node 128 0 28
✅ nuxt-quickjs 128 0 28
✅ sveltekit-node 147 0 9
✅ sveltekit-quickjs 147 0 9
✅ tanstack-start-node 128 0 28
✅ tanstack-start-quickjs 128 0 28
✅ vite-node 128 0 28
✅ vite-quickjs 128 0 28

✅ 💻 Local Development

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
✅ astro-stable-quickjs 130 0 26
✅ express-stable-node 130 0 26
✅ express-stable-quickjs 130 0 26
✅ fastify-stable-node 130 0 26
✅ fastify-stable-quickjs 130 0 26
✅ hono-stable-node 130 0 26
✅ hono-stable-quickjs 130 0 26
✅ nest-stable-node 130 0 26
✅ nest-stable-quickjs 130 0 26
✅ nextjs-turbopack-canary-node 137 0 19
✅ nextjs-turbopack-canary-quickjs 137 0 19
✅ nextjs-turbopack-stable-node 156 0 0
✅ nextjs-turbopack-stable-quickjs 156 0 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-canary-quickjs 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
✅ nextjs-webpack-stable-quickjs 156 0 0
✅ nitro-stable-node 130 0 26
✅ nitro-stable-quickjs 130 0 26
✅ nuxt-stable-node 130 0 26
✅ nuxt-stable-quickjs 130 0 26
✅ sveltekit-stable-node 149 0 7
✅ sveltekit-stable-quickjs 149 0 7
✅ tanstack-start-node 130 0 26
✅ tanstack-start-quickjs 130 0 26
✅ vite-stable-node 130 0 26
✅ vite-stable-quickjs 130 0 26

✅ 📦 Local Production

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
✅ astro-stable-quickjs 130 0 26
✅ express-stable-node 130 0 26
✅ express-stable-quickjs 130 0 26
✅ fastify-stable-node 130 0 26
✅ fastify-stable-quickjs 130 0 26
✅ hono-stable-node 130 0 26
✅ hono-stable-quickjs 130 0 26
✅ nest-stable-node 130 0 26
✅ nest-stable-quickjs 130 0 26
✅ nextjs-turbopack-canary-node 137 0 19
✅ nextjs-turbopack-canary-quickjs 137 0 19
✅ nextjs-turbopack-stable-node 156 0 0
✅ nextjs-turbopack-stable-quickjs 156 0 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-canary-quickjs 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
✅ nextjs-webpack-stable-quickjs 156 0 0
✅ nitro-stable-node 130 0 26
✅ nitro-stable-quickjs 130 0 26
✅ nuxt-stable-node 130 0 26
✅ nuxt-stable-quickjs 130 0 26
✅ sveltekit-stable-node 149 0 7
✅ sveltekit-stable-quickjs 149 0 7
✅ tanstack-start-node 130 0 26
✅ tanstack-start-quickjs 130 0 26
✅ vite-stable-node 130 0 26
✅ vite-stable-quickjs 130 0 26

✅ 🐘 Local Postgres

App Passed Failed Skipped
✅ astro-stable-node 130 0 26
✅ astro-stable-quickjs 130 0 26
✅ express-stable-node 130 0 26
✅ express-stable-quickjs 130 0 26
✅ fastify-stable-node 130 0 26
✅ fastify-stable-quickjs 130 0 26
✅ hono-stable-node 130 0 26
✅ hono-stable-quickjs 130 0 26
✅ nest-stable-node 130 0 26
✅ nest-stable-quickjs 130 0 26
✅ nextjs-turbopack-canary-node 137 0 19
✅ nextjs-turbopack-canary-quickjs 137 0 19
✅ nextjs-turbopack-stable-node 156 0 0
✅ nextjs-turbopack-stable-quickjs 156 0 0
✅ nextjs-webpack-canary-node 137 0 19
✅ nextjs-webpack-canary-quickjs 137 0 19
✅ nextjs-webpack-stable-node 156 0 0
✅ nextjs-webpack-stable-quickjs 156 0 0
✅ nitro-stable-node 130 0 26
✅ nitro-stable-quickjs 130 0 26
✅ nuxt-stable-node 130 0 26
✅ nuxt-stable-quickjs 130 0 26
✅ sveltekit-stable-node 149 0 7
✅ sveltekit-stable-quickjs 149 0 7
✅ tanstack-start-node 130 0 26
✅ tanstack-start-quickjs 130 0 26
✅ vite-stable-node 130 0 26
✅ vite-stable-quickjs 130 0 26

✅ 🪟 Windows

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

✅ vercel-multi-region

App Passed Failed Skipped
✅ nextjs-turbopack 27 0 0

📋 View full workflow run

@github-actions

github-actions Bot commented Aug 14, 2026

Copy link
Copy Markdown
Contributor

📊 Workflow Benchmarks

commit 5426321 · Fri, 14 Aug 2026 19:45:01 GMT · run logs

Backend: vercel · app: nextjs-turbopack

Metric Scenario Best (ms) P75 (ms) P90 (ms) P99 (ms) Samples
TTFS step 1367 (+93%) 🔻 1476 🔴 (+46%) 🔻 1505 🔴 (+48%) 🔻 1589 🔴 (+5.3%) 30
TTFS stream 431 (-55%) 💚 1514 🔴 (+53%) 🔻 1581 🔴 (+57%) 🔻 1613 🔴 (+53%) 🔻 30
TTFS hook + stream 1606 (+33%) 🔻 1772 🔴 (+37%) 🔻 1791 🔴 (+34%) 🔻 1860 🔴 (+16%) 🔻 30
Fan-out TTFS Promise.all(100 steps) 8974 10306 10548 15232 10
Fan-out TTLS Promise.all(100 steps) 17586 18894 19169 25008 10
STSO 1020 steps (inline) 122 175 197 336 1019
WO 1020 steps 172599 (-55%) 💚 172599 (-55%) 💚 172599 (-55%) 💚 172599 (-55%) 💚 1
SL stream latency 111 (+37%) 🔻 153 🔴 (+16%) 🔻 161 🔴 (+15%) 302 🔴 (+69%) 🔻 30
SO stream overhead (text) 134 (+33%) 🔻 180 (±0%) 203 (±0%) 399 (+60%) 🔻 30
SO stream overhead (structured) 125 (+26%) 🔻 180 (+11%) 201 (+3.1%) 270 (+24%) 🔻 30
📈 STSO distribution (inline / queue-hop histograms)

1020 steps (inline)

Cumulative STSO time: 172410ms over 1019 samples

No main baseline with raw samples yet — showing this run's distribution on its own; the diff appears once a run on main has recorded them.

100-150 ms  ███████                   steps 214
150-200 ms  ████████████████████████  steps 711
200-250 ms  ██                        steps  64
250-300 ms  █                         steps  14
300-350 ms  █                         steps   6
350-400 ms  █                         steps   6
400-450 ms  █                         steps   2
550-600 ms  █                         steps   1
600-650 ms  █                         steps   1
ℹ️ 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) · Fan-out TTFS: fan-out time to first step (in-deployment start() → first of the parallel step bodies to complete) · Fan-out TTLS: fan-out time to last step (in-deployment start() → last of the parallel step bodies to complete, i.e. when the Promise.all resolves) · 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 · Promise.all(100 steps): 100 trivial no-op steps started together in a single Promise.all; Fan-out TTFS is the first of them to complete and Fan-out TTLS the last, both from the in-deployment clientStart, so their gap is the spread the runtime adds across the fan-out · 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. Fan-out TTFS/TTLS are the first and last step completions of a single Promise.all over trivial steps, from the same anchor, so the gap between the two rows is the spread the runtime adds across the fan-out. 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.

@VaguelySerious VaguelySerious added the event-log-race-repro Run the event log race reproduction job label Aug 14, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Sim World

Simulated world deterministic testing for races. Traces

🟠 Mint-ordered log — 3 fail of 41 total

log=mint-ordered · fence=per-spec

scenario outcome events virt replay violations
smoke-no-steps completed 3 0ms ok 0
smoke-one-step completed 6 0ms ok 0
hook-at-step-started completed 12 0ms ok 0
hook-at-step-completed completed 12 0ms ok 0
hook-at-hook-created completed 12 0ms ok 0
deadline-hook-wins completed 7 1.0h ok 0
deadline-expires completed 7 1.0h ok 0
long-sleep completed 11 30.0d ok 0
hook-never-arrives stalled 3 0ms skipped 0
step-retries-twice completed 10 2.0s ok 0
parallel-steps completed 9 0ms ok 0
hook-on-execution-state completed 12 0ms ok 0
peek-hook-before-branch completed 12 0ms ok 0
peek-hook-after-branch completed 12 0ms ok 0
peek-hook-at-registration completed 12 0ms ok 0
race-hook-before-probe completed 12 0ms ok 0
race-hook-after-probe completed 12 0ms ok 0
race-duplicate-delivery completed 13 0ms ok 0
attr-hook-before-step completed 11 0ms ok 0
attr-hook-after-step completed 11 0ms ok 0
attr-from-step-body completed 13 0ms ok 0
fork-hook-after-timeout completed 14 1.0m ok 0
fork-hook-before-timeout completed 14 1.0m ok 0
count-hook-after-timeout completed 17 1.0m ok 0
count-hook-before-timeout completed 20 1.0m ok 0
stale-read-step-count-fork completed 20 1.0m ok 0
stale-read-equal-step-counts completed 14 1.0m ok 0
step-vs-step-fork completed 12 0ms ok 0
step-vs-step-fork-fenced completed 12 0ms ok 0
fence-catches-benign-direction completed 12 5ms ok 0
in-flight-before-decision failed 9 1.0m MISMATCH 1
in-flight-before-decision-counted failed 9 1.0m MISMATCH 1
in-flight-after-decision failed 9 1.0m MISMATCH 1
stale-read-step-count-fork-fenced completed 20 1.0m ok 0
fork-hook-wins completed 13 1.0m ok 0
fork-timeout-wins completed 13 1.0m ok 0
unclaimed-payload-under-fork completed 17 1.0m ok 0
claimed-payload-under-fork completed 17 1.0m ok 0
writers-independent-step-bodies completed 12 0ms ok 0
writers-scripted-tempo completed 12 0ms ok 0
cancel-mid-step cancelled 7 0ms skipped 0

Full trace: world-sim-mint.txt

🟢 Append-only log — 0 fail of 41 total

log=append-only · fence=per-spec

scenario outcome events virt replay violations
smoke-no-steps completed 3 0ms ok 0
smoke-one-step completed 6 0ms ok 0
hook-at-step-started completed 12 0ms ok 0
hook-at-step-completed completed 12 0ms ok 0
hook-at-hook-created completed 12 0ms ok 0
deadline-hook-wins completed 7 1.0h ok 0
deadline-expires completed 7 1.0h ok 0
long-sleep completed 11 30.0d ok 0
hook-never-arrives stalled 3 0ms skipped 0
step-retries-twice completed 10 2.0s ok 0
parallel-steps completed 9 0ms ok 0
hook-on-execution-state completed 12 0ms ok 0
peek-hook-before-branch completed 12 0ms ok 0
peek-hook-after-branch completed 12 0ms ok 0
peek-hook-at-registration completed 12 0ms ok 0
race-hook-before-probe completed 12 0ms ok 0
race-hook-after-probe completed 12 0ms ok 0
race-duplicate-delivery completed 13 0ms ok 0
attr-hook-before-step completed 11 0ms ok 0
attr-hook-after-step completed 11 0ms ok 0
attr-from-step-body completed 13 0ms ok 0
fork-hook-after-timeout completed 14 1.0m ok 0
fork-hook-before-timeout completed 14 1.0m ok 0
count-hook-after-timeout completed 17 1.0m ok 0
count-hook-before-timeout completed 20 1.0m ok 0
stale-read-step-count-fork completed 20 1.0m ok 0
stale-read-equal-step-counts completed 14 1.0m ok 0
step-vs-step-fork completed 12 0ms ok 0
step-vs-step-fork-fenced completed 12 0ms ok 0
fence-catches-benign-direction completed 12 5ms ok 0
in-flight-before-decision completed 17 1.0m ok 0
in-flight-before-decision-counted completed 17 1.0m ok 0
in-flight-after-decision completed 19 2.0m ok 0
stale-read-step-count-fork-fenced completed 20 1.0m ok 0
fork-hook-wins completed 13 1.0m ok 0
fork-timeout-wins completed 13 1.0m ok 0
unclaimed-payload-under-fork completed 17 1.0m ok 0
claimed-payload-under-fork completed 17 1.0m ok 0
writers-independent-step-bodies completed 12 0ms ok 0
writers-scripted-tempo completed 12 0ms ok 0
cancel-mid-step cancelled 7 0ms skipped 0

Full trace: world-sim-append-only.txt

@github-actions

Copy link
Copy Markdown
Contributor

Event Log Race Repro

  • vercel clean, 14 runs
  • local clean, 14 runs
  • postgres clean, 14 runs

Run History

Run Lane Total Complete Corrupt Stuck Other
08-14 19:29 vercel 14 14 0 0 0
local 14 14 0 0 0
postgres 14 14 0 0 0
Config

vercel: 14 runs / step-storm 6, hook-storm 6, hook-sleep 2 / c8 / 6x8 / watchdog 2500ms / step 2200±250ms / stagger 400ms / poke 750ms / poke budget 64 then /8 / timeout 240000ms

local, postgres: 14 runs / step-storm 6, hook-storm 6, hook-sleep 2 / c8 / 6x8 / watchdog 2500ms / step 2200±250ms / stagger 400ms / poke 750ms / poke budget 64 then /8 / timeout 480000ms

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

event-log-race-repro Run the event log race reproduction job

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant