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

推荐订阅源

美团技术团队
J
Java Code Geeks
有赞技术团队
有赞技术团队
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
G
Google Developers Blog
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
腾讯CDC
V
Visual Studio Blog
博客园 - 【当耐特】
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
L
LangChain 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
It Was 2024 When We Tried to Outsmart the Treasure Hunt E...
Lillian Dube · 2026-05-26 · via DEV Community
Cover image for It Was 2024 When We Tried to Outsmart the Treasure Hunt Engine

Lillian Dube

The Problem We Were Actually Solving

We needed to survive the Black Friday of game launches without throwing hardware at the problem. The treasure hunt engine is peak write-amplification: every coin placement and every search query mutates state and then broadcasts an event to hundreds of listening clients. Our first architecture carved the grid into shards, each backed by a dedicated PostgreSQL 14 instance with pg_bouncer in transaction pooling mode. It looked clean on paper: 64 shards, 8 read replicas per shard, Prometheus scraping every pg_stat_bgwriter.metrics at 5 s intervals.

The inflection came when a single viral TikTok clip drove 15× normal traffic. At 12 000 concurrent sessions we started seeing:

  • pg_bouncer logs: failed to get connection: timeout after 5000 ms
  • Prometheus counter pgsql_connections_max_overflow spiked to 42 on shard 23, exactly the one hosting the TikTok hotspot.
  • The nf_conntrack table grew to 1.2 million entries, and the kernel started dropping packets because the table was only 1.5× our peak.

We realized the abstraction that worked for 1 000 players was now a liability: every shard held its own connection pool, and the pool bounded the number of simultaneous writes. The TikTok wave concentrated in one shard, and the write load saturated not the CPU but the pool slots. We had optimized for cardinality, not tail latency.

What We Tried First (And Why It Failed)

First defensive move: scale the pool. We bumped pg_bouncer max_client_conn from 10 000 to 40 000 and upped shared_buffers to 1 GB. The immediate effect was the database OOM-killer stepping in after 47 minutes; apparently 64 × 1 GB = 64 GB wasnt trivial on our 64 GB RAM hosts. Second try: move to statement pooling to reduce the pool footprint. That bought 15 minutes before we hit the same RST storms. The root cause wasnt the pool size; it was that each client kept one long-lived WebSocket open, and every search issued a SELECT that joined three tables: grid_cells, coin_placements, and player_searches. The planner was doing nested loops because grid_cells had no spatial index.

Dumping the plan showed:

Nested Loop (cost=100.01..45678.90 rows=12345 width=42)
 Join Filter: (ST_DWithin(grid_cells.geom, player_searches.point, 50))

The ST_DWithin without a GiST index translated to 12 000 × 500 000 rows scanned per request. Our metrics showed 3.4 s average execution time under load, which explained the TCP backlog filling before we saturated CPU.

The Architecture Decision

By June 2024 we had two constraints: we could not rewrite the spatial queries overnight, and we could not keep doubling PostgreSQL RAM. We elected to place a read-through cache layer between the application and PostgreSQL. The cache would store the result of each unique search radius query for 500 ms—a compromise between consistency and memory usage. The tool was Dragonfly 0.13 (then called DragonflyDB), a Redis-compatible in-memory store forked from KeyDB. We chose it because it offered multi-threading via redis-threaded and 1 million ops/s on a single 32-core host, enough to absorb the search workload while PostgreSQL handled writes.

The tradeoff was eventual consistency: players could still see a coin that had been removed 300 ms ago if another player removed it at the same time. We documented it as acceptable for this simulation game. We sharded the Dragonfly cluster into 32 logical shards, consistent-hash based on the search center point. Each shard used 16 GB RAM, giving us 512 GB total L3 cache at a cost of $0.08 per GB-hour on our Kubernetes cluster.

Writes still went straight to PostgreSQL. We introduced a change-data-capture pipeline using Debezium 2.4 and Kafka 3.6. A small Go service consumed the PostgreSQL logical replication stream, filtered for grid_cells and coin_placements, and emitted cache-invalidations to a dedicated Kafka topic. A second consumer, co-located on the same Kubernetes node as the Dragonfly shard, listened to that topic and issued DEL commands only to the shard that held the affected geometry. We measured end-to-end invalidation latency at P99 120 ms, which matched our SLA for this game session.

What The Numbers Said After

Three weeks after rolling out Dragonfly we replayed the same Black-Friday traffic profile. The metrics told the story:

  • Connection pool overflows dropped from 42 per minute to 0.
  • Average application-layer latency fell from 250 ms to 32 ms (P99 87 ms).
  • PostgreSQL CPU usage declined from 85 % to 35 % because the planner no longer saw high-cost scans.
  • Memory usage on Dragonfly hosts plateaued at 82 % after 48 hours, comfortably within our 90 % safety threshold.
  • Debezium lag stayed under 200 ms, meaning cache invalidations were timely enough for gameplay.

The cost delta was 120 dollars per day for the extra Dragonfly nodes versus 450 dollars per day we had been