惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
B
Blog
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Traffic vs Truth: Building a Global Auction Platform with...
Apurba Singh · 2026-06-18 · via DEV Community

This article was created as part of my submission to the H0: Hack the Zero Stack with Vercel v0 and AWS Databases Hackathon.

The Core Philosophy

Over the years I've worked on systems that experienced unpredictable traffic spikes, from consumer-facing platforms to real-time security monitoring systems.

One pattern kept appearing.

Distributed systems often treat every incoming event as if it deserves the same level of consistency, durability, and global coordination.

In reality, most events are temporary.

A bid is a perfect example.

Thousands of bids may arrive for the same advertising slot. Most are evaluated and discarded. Only one eventually becomes the winning settlement that affects a financial ledger.

This led to a simple design philosophy:

Traffic and truth are different data products.

Not every event deserves global consistency.

Quant Edge Exchange was built to explore what happens when we separate those responsibilities and allow each database to focus on the workload it handles best.


The Problem

Imagine a global advertising exchange.

us-east-1        → $5.20
eu-west-1        → $5.30
ap-southeast-1   → $5.40
sa-east-1        → $5.35

Thousands of bids arrive.

Most are temporary.

Only one becomes authoritative.

Winner = ap-southeast-1
Amount = $5.40

The winning settlement becomes part of a financial ledger and must remain globally consistent.

The question became:

Should all 10,000 bids pay the same coordination cost as the single winning settlement?

My answer was no.


Architecture Overview

Transient Bid Traffic
        ↓
     DynamoDB
        ↓
 Bid Evaluation
        ↓
 Authoritative Outcome
        ↓
   Aurora DSQL
        ↓
 OCC + Full Jitter
        ↓
 Financial Truth
        ↓
 Observability Layer

The architecture follows one rule:

The cost of coordination should match the value of the data.


Why DynamoDB?

DynamoDB became the ingestion layer.

The platform stores bid events using a single-table design.

PK = SLOT#<slotId>
SK = REGION#<region>#BID#<bidId>

Example:

await dynamodb.send(
  new PutCommand({
    TableName: "bid_events",
    Item: {
      PK: `SLOT#${slotId}`,
      SK: `REGION#${region}#BID#${bidId}`,
      bidAmount,
      latencyMs,
      qualityScore,
      timestamp: new Date().toISOString(),
      ttl: expiryTime,
    },
  })
);

This allows:

  • High-throughput writes
  • Regional traffic aggregation
  • Hot slot detection
  • TTL cleanup
  • Analytics without joins

DynamoDB acts as a high-speed ingestion buffer.

Its job is not to determine truth.

Its job is to absorb traffic.


Why Aurora DSQL?

Eventually an auction closes.

The data is no longer traffic.

It becomes truth.

Aurora DSQL stores the authoritative state of the platform.

CREATE TABLE settlements (
    settlement_id UUID PRIMARY KEY,
    slot_id UUID NOT NULL,
    winner_account_id UUID NOT NULL,
    winning_bid NUMERIC(18,4),
    settled_at TIMESTAMPTZ
);

Other core tables include:

enterprise_accounts
ad_slots
ad_bids
settlements
financial_ledger
conflict_events
simulation_runs

These represent:

  • Winning bids
  • Settlement history
  • Account balances
  • Financial audit trails
  • Conflict telemetry

Only events that become business truth cross this boundary.


Why Vercel and Next.js?

The database architecture was the primary focus, but I also wanted to explore how globally distributed application runtimes interact with globally distributed databases.

Quant Edge Exchange was built using Next.js and deployed on Vercel.

The frontend dashboards, simulation engine, ingestion analytics, settlement telemetry, and ledger monitoring all run through server-side API routes.

One challenge was avoiding database initialization during build time.

Instead of creating clients globally, services are loaded lazily at runtime.

export async function getDsqlClient() {
  const { pool } = await import("./dsql-client");
  return pool;
}

This allowed:

  • Successful Vercel builds
  • Runtime-only AWS connections
  • Clean separation of UI and infrastructure
  • Centralized database observability

The frontend visualizes the system.

The backend owns ingestion, settlement, conflict handling, and telemetry.


The Interesting Part: Settlement Contention

Ingestion is easy.

Settlement is where distributed systems become interesting.

Imagine two workers trying to settle the same auction.

Worker A
settle(slot_123)

Worker B
settle(slot_123)

Without coordination, duplicate settlements become possible.

Aurora DSQL protects correctness through serializable transactions.

Under contention, one transaction may succeed while another receives a serialization conflict.

Rather than treating this as failure, Quant Edge Exchange treats contention as a normal distributed systems event.

The platform implements:

  • Optimistic Concurrency Control (OCC)
  • Exponential Backoff
  • Full Jitter Retry

Example retry logic:

const delay =
  Math.random() *
  (BASE_DELAY * Math.pow(2, attempt));

await sleep(delay);

Example execution:

Attempt #1
❌ Serialization Conflict

Attempt #2
❌ Serialization Conflict

Attempt #3
✅ Settlement Accepted

This prevents synchronized retry storms while preserving transactional correctness.


Observability

Most demos stop after a successful write.

I wanted to expose what was happening underneath.

The platform includes:

  • Ingestion Analytics Dashboard
  • Settlement Monitoring
  • Financial Ledger Activity
  • Regional Traffic Distribution
  • Winning Region Analysis
  • OCC Conflict Telemetry

Example conflict metrics collected:

{
  conflicts: 12,
  retries: 31,
  resolved: 12,
  resolutionRate: 100
}

The goal was to make contention visible instead of hiding it.


What I Learned

Building Quant Edge Exchange reinforced a lesson I had already seen in production systems.

The fastest architecture is not the one with the biggest database.

The fastest architecture is the one that assigns the correct consistency model to the correct workload.

DynamoDB and Aurora DSQL are often compared against each other.

After building this project, I think they are strongest when used together.

DynamoDB absorbs traffic.

Aurora DSQL protects truth.

Everything else becomes easier to reason about.


Try It Yourself

Demo:
https://quant-edge-exchange.vercel.app/

Devpost:
https://devpost.com/software/quant-edge-exchange

GitHub:
https://github.com/apurba-labs/quant-edge-exchange


Traffic is cheap.

Truth is expensive.

The architecture should know the difference.