Submitted database: Amazon Aurora DSQL. DynamoDB Global Tables appears only as an educational comparison foil — remove it and every product feature still runs on Aurora DSQL alone. Every number on this page is measured, not asserted, and links to something runnable or viewable.
← back to the live app·live app·demo video (2:57)·source repo
Same naive read-then-write code on both backends; the only variable is the database.
node scripts/stress.mjs hammers the live deployment at concurrency 8/24/48/60 and asserts oversold === 0 on DSQL at every level, and oversold > 0 on the foil. Captured 2026-06-21:
WorldSeat stress test → https://worldseat.vercel.app Aurora DSQL (strong / serializable OCC) — expect oversold = 0 at every level: PASS c= 8 confirmed= 1 oversold= 0 maxRetries= 0 1235ms PASS c=24 confirmed= 1 oversold= 0 maxRetries= 1 753ms PASS c=48 confirmed= 1 oversold= 0 maxRetries= 1 1194ms PASS c=60 confirmed= 1 oversold= 0 maxRetries= 1 851ms DynamoDB Global Tables (eventual / LWW) — expect oversold > 0 (the foil): OVERSOLD c= 8 confirmed= 8 oversold= 7 maxRetries= 0 1357ms OVERSOLD c=24 confirmed=25 oversold=24 maxRetries= 0 634ms OVERSOLD c=48 confirmed=44 oversold=43 maxRetries= 0 1008ms OVERSOLD c=60 confirmed=49 oversold=48 maxRetries= 0 1800ms DSQL max OCC retries observed under load: 1 (OCC aborted-and-retried a real conflict) RESULT: PASS — invariant held on DSQL at every concurrency level; foil reproduced oversell.
The maxRetries = 1 on DSQL is the proof that two commits genuinely interleaved and the loser was aborted by serializability — not that the app got lucky. The foil's oversold count is genuinely run-to-run variable under last-writer-wins (48 captured · 41 on an independent recheck); what never varies is the pair DSQL = 0 / foil > 0.
app/lib/dsql.ts, app/lib/ddb.ts). Only the database executing it differs.oversold counted from committed ground truth, never app return values — the DSQL op_log and the append-only DynamoDB sales_naive ledger (app/app/api/breakit/route.ts).

seats_naive Global Table with two ACTIVE regional replicas (the foil).