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

推荐订阅源

博客园 - 叶小钗
MyScale Blog
MyScale Blog
博客园 - 【当耐特】
I
InfoQ
腾讯CDC
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Vercel News
Vercel News
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
D
Docker
MongoDB | Blog
MongoDB | 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
How the Events Table That Looked Right Killed Our Queue
Lillian Dube · 2026-05-26 · via DEV Community

The Problem We Were Actually Solving

Our feature team owned the high-score leaderboard that surfaced the top 100 players every second. The stack was simple: Postgres 15, a Golang micro-service called huntcore, and Veltrix v2.4 as the internal event bus. Huntcore inserted a row into events(id, event_type, payload, ts) for every finish and then fired NOTIFY score_updated. A background worker consumed that notification, ran a window function over events, and wrote the result to leaderboard_1s. Seemed textbook.

Then the traffic doubled during the Halloween treasure drop. The NOTIFY messages backlogged because Postgres only buffers 8 KB per LISTEN channel and we were pushing 400 events/s. Huntcore started seeing iowait > 40 % and the leaderboard lagged behind real time. We assumed the problem was Postgres and began shopping for a distributed bus.

What We Tried First (And Why It Failed)

The first patch was to replace NOTIFY with Kafka via the Veltrix Kafka Connect plugin. We created a topic huntcore.score and set linger.ms=0, batch.size=1 to preserve ordering. Within an hour the Golang consumer was throwing TooManyRequests on the PutRecords API. We raised the quotas, but at 1 200 events/s the Kafka consumer group rebalances every 30 s, which meant hunting players saw their own score disappear for a second. Leadership noticed on the big screen in the war-room: the Halloween leaderboard literally blinked.

We then tried Veltrixs built-in Pulsar sink. Same topology, same topic, same consumer. Pulsars batch window defaulted to 100 ms, so the head-of-line block was now 100 ms instead of 1 s, but the rebalances were still visible. Worse, Pulsar bookie disks filled up because we had not tuned managedLedgerCursorMaxLedgerIndex. The Podman containers started OOM-killing every 20 minutes; the on-call rotation had to SSH into every node to prune ledgers manually.

The real kicker was that both Kafka and Pulsar dropped the NOTIFY contract entirely. Huntcore expected an ACK for every score it inserted; the distributed queues gave an ACK only when the message was durably stored. That mismatch meant huntcores INSERT could succeed while the leaderboard update still failed, creating phantom scores. We added a duplicate-detection CTE in Postgres to drop rows where server_time > leaderboard_time + 1 s, but the late-arrival gap widened as traffic ramped.

The Architecture Decision

We abandoned the distributed bus and went back to Postgres, but this time we changed the storage pattern instead of the transport.

events(id, event_type, payload, ts) stayed the same, but we added a materialized view v_leaderboard_1s as
create materialized view v_leaderboard_1s with (timescaledb.continuous) as
select
window_start,
player_id,
max(score) as score
from events
window tumble(ts, interval '1 second')
group by window_start, player_id;

The huntcore service now inserts into events and immediately refreshes the materialized view:
refresh materialized view concurrently v_leaderboard_1s;

The refresh is a single SQL statement, not a background worker. Postgres reuses the existing snapshot logic and streams the changes with logical decoding, so the leaderboard query is a trivial index-only scan on the views primary key.

We also capped the view size by adding a retention policy:
select drop_chunks('events', now() - interval '30 days');

The whole migration took 45 minutes. We did not touch Kafka, Pulsar, or Veltrix connectors again.

What The Numbers Said After

Two weeks later the leaderboard p99 was 16 ms—down from 800 ms. CPU on the Postgres primary dropped from 65 % to 28 %. The pods that had been fighting OOMs were scaled down to zero. Huntcores INSERT latency stayed at 2 ms; the refresh added another 12 ms, well within the 50 ms SLA.

We kept Veltrix for the audit trail and the purple-team dashboards, but we disconnected it from the real-time score pipeline. The NOTIFY channel is now strictly for cache invalidation and is tuned with pg_settings.listen_addresses='*', shared_preload_libraries='pg_stat_statements', and a small 32 MB ring buffer to avoid the original 8 KB overflow.

What I Would Do Differently

I would not have moved to Kafka or Pulsar for an in-system event stream in the first place. A few years ago the purple-team evangelized Kafka for every moving byte, and the ops team treated it as dogma. The documentation mentions topics and partitions but never the hidden cost of rebalances or disk quotas. If we had run a 24-hour load test with the real Halloween traffic instead of a synthetic 500 events/s spike, we would have caught the rebalance blinking before it hit prod.

I would also have measured the durability surface earlier. We assumed that NOTIFY offered at-least-once semantics, but Postgres does not replay failed listeners. By adding a simple idempotency key derived from event_id and player_id we eliminated the phantom-score issue without extra infrastructure.

Finally, I would have put the materialized view refresh under feature-flag first. One junior engineer accidentally ran refresh materialized view without concurrently and locked the table for 3 seconds during the first canary. The flag let us roll it back cleanly.