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

推荐订阅源

Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
WordPress大学
WordPress大学
爱范儿
爱范儿
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
博客园_首页
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
MyScale Blog
MyScale Blog
IT之家
IT之家
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

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
The Day the Treasure Hunt Engine Drowned in 300 ms Queries
Lillian Dube · 2026-05-28 · via DEV Community

The Problem We Were Actually Solving

In 2024 the Veltrix festival needed a treasure-hunt engine that could handle 12,000 concurrent players across three venues while still giving each user the illusion that their phone was whispering secrets directly to them. We thought the bottleneck would be network I/O or client rendering. We were wrong—it was the lookup query that ran every time a player tilted their phone:

SELECT treasure_box.uuid FROM treasure_box
WHERE venue_id = ? AND ST_DWithin(geom, player_location, 5)
ORDER BY RANDOM() LIMIT 1;

At 12 k concurrent connections that became 92 k queries per second. PostgreSQL started returning 300 ms–500 ms spans, then connection pool exhaustion, then festival staff holding flip-phones to the sky asking why the map was blinking red. The real problem wasnt hardware—it was the assumption that random spatial queries over 1.2 million polygons could stay in a single relational table.

What We Tried First (And Why It Failed)

First we tried Redis with GEOADD and GEORADIUS. It was fast—sub-millisecond—but the ST_DWithin 5 m radius meant we needed 5,000+ keys per venue because each polygon had to be tessellated at 1 m. The memory footprint exploded to 42 GB just for the index, and every GEORADIUS call still did a linear scan inside the radius. After two days of swapping we bailed.

Next we tried CockroachDB multi-region clusters because their spatial functions are PostGIS compatible. Reads were fine, but range-splitting during writes turned every INSERT of a new polygon into a 2–3 second blocking operation. At 200 writes per second (new treasures being placed) the cluster spent more time gossiping than serving. P99 latency climbed past 1.8 seconds—well past the human eyes tolerance for a blinking dot.

Finally we tried a write-through cache with PostGIS on the hot path: every treasure box was pre-indexed into 1 m tiles, stored as JSON {x,y,tile_id,box_id}, and sharded across four Redis nodes. It solved the read path but introduced cache invalidation hell. When a player picked up a treasure, we had to delete the tile keys that contained that box across all shards. Deletes in Redis Cluster are eventually consistent; we saw souvenir screens reporting We couldnt find your treasure even though the server knew youd grabbed it. The event staff started muttering about cursed phones.

The Architecture Decision

We abandoned the all-in-one spatial database idea and split the engine into two layers:

  1. Static Geometry Microservice
    • One job: store every venue polygon exactly once.
    • Served by a single PostgreSQL 15 instance with PostGIS, autovacuum turned off, and a 64 GB shared_buffers tuned by pgtune.
    • Writes only happen during setup and once per hour overnight when curators upload new maps. Reads are simple ST_Contains(point, polygon) calls against a primary key. That query averages 1.2 ms with a 10 k cache hit ratio on the connection pool.

  2. Dynamic Treasure Microservice
    • Receives every players GPS tick via gRPC, converts lat/lon to venue-local tile (1 m grid) using a Rust micro-crate called geo-tile at 0.03 ms per call.
    • Looks up active treasure boxes from an in-memory hash map sharded by tile_id. Each hash map lives in its own process on a 32-core EC2 m6i.4xl machine running Redis 7.2 with jemalloc and no persistence.
    • When a box is collected, we publish an internal event on NATS 2.9.6 with a 10 ms TTL. Other tiles can drop stale references asynchronously; we dont block the players next GPS tick.

The boundary between the two services is strict: geometry never leaks into the treasure map. That killed the random-order requirement, so we replaced ORDER BY RANDOM() with a deterministic round-robin per tile. The visual difference is invisible to players—we rotate the order every 30 seconds anyway for fairness—but the cache misses on the treasure service dropped to 0.4 %.

What The Numbers Said After

Three weeks before Veltrix 2025 we ran a soak test with 15 k synthetic players on three c6g.4xl Spot fleets. The geometry service handled 200 k TPS at 0.8 ms p95. The treasure service handled 1.1 M TPS (yes, million) at 0.12 ms p95 while still leaving 45 % CPU idle on the 32-core box. Total AWS spend was $197 for the three-day weekend, including NATS and Redis Enterprise licenses for high availability. The staffs flip-phones never blinked red.

We instrumented everything with OpenTelemetry and Grafana. The error metric we watched most closely was no-treasure-found, which dropped from 8.2 % on day one of the festival in 2024 to 0.03 % in 2025. The single largest outage—Redis node failover at 14:23—caused a 170 ms spike in p99 for that venue. We had an SLO of 200 ms; we still met it.

What I Would Do Differently

I would not put PostGIS in the critical path again. A single spatial database is a single point of failure and tuning hell. We should have started with the split architecture from day one and treated geometry as a read-mostly reference dataset, not a runtime query target.

I would also replace our in-house geo-tile crate with the official Rust bindings to GDALs Rasterlite. Our 1 m tiles were accurate to 0.3 m on average, but for an AR treasure hunt thats the difference between a glowing orb appearing at your feet and appearing three meters away—a ticket generator for support tickets.

Last, I would budget for a dedicated NATS cluster from the start. In our soak test the gossip traffic between Redis nodes and NATS caused a 4 % increase in p99 every time we scaled the treasure service beyond 12 shards. We ended up co-locating NATS on the same AZ as the treasure boxes, but that