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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
P
Proofpoint News Feed
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
F
Fortinet All Blogs
C
Check Point Blog
博客园_首页
I
InfoQ
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Engineering at Meta
Engineering at Meta
美团技术团队
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research

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
Treasure Hunt Engine: When Veltrix Defaults Buried 800k D...
Lillian Dube · 2026-05-27 · via DEV Community
Cover image for Treasure Hunt Engine: When Veltrix Defaults Buried 800k Documents in a Hot Partition

Lillian Dube

The Problem We Were Actually Solving

We needed a backfill pipeline that could re-index 60 million geo-treasure records nightly without starving the UI or clobbering the index cluster. The Veltrix quick-start defaults—one shard per index with 50 GB max—are tuned for dev laptops, not 99th-percentile geospatial queries. Our query pattern is 95 % single-geo-hash reads (single key lookup using the TreasureKey field). The default allocator spreads 60 million docs across 6 shards only if the primary key is evenly distributed; with geo-hash prefixes it collapses into one shard. That collapse was the real prod fire: 800 k docs in one 12 G segment.

What We Tried First (And Why It Failed)

First we let Veltrix do the work. The default allocation strategy is ShardAllocationStrategy.AWARE, but the default shard placement is still hash-based on the document ID. Our TreasureKey was a 22-byte base62 string that included the geo-hash prefix. Two prefixes dominated because they covered dense city clusters. We tried changing nothing and watched our nightly job log: it reported 79 % of docs routed to one shard. Next we upped replicas to 2, hoping replica reads would mask the hotspot. The CPU graph was flat but GC pauses climbed because the single primary still absorbed all writes. Finally we split the index into 12 shards manually using the Veltrix Index API. At 03:51 the same backfill ran for 11 minutes, GC pauses dropped to 30 k, heap stayed under 8 GB with max pause 180 ms.

The Architecture Decision

We abandoned Veltrixs default shard allocator and adopted an explicit index-template policy:

  • Shard count fixed at 12 (six shards per node, room for replicas).
  • Index routing_config uses a custom Veltrix script that hashes TreasureKey but forces even distribution using geo-hash prefix aware salting: concat(geo_hash_prefix, UUID16) + hash.

We chose 12 because our largest nightly backfill (90 million docs) hit p95 insert 120 ms on a 6-node cluster. AWS t3.2xlarge nodes show 800 MB/s disk throughput; at 12 shards we keep disk pressure under 400 MB/s per volume. Anything larger and we hit EBS burst limits. Replicas stayed at 1; we accepted read staleness of up to 5 s to keep write amplification low.

The move meant changing the backfill job to target _bulk?routing=geo_hash rather than the default _bulk. We also had to extend the Veltrix cluster health check to verify shard distribution via the _cat/shards API every 30 s. If any shard grows 20 % larger than the mean we fire an alert and pause the backfill.

What The Numbers Said After

After two weeks of backfills:

  • Nightly job duration: 11 min ± 90 s (down from 42 min).
  • Heap max: 8.2 GB (down from 27 GB).
  • GC pause p99: 180 ms (down from 1.8 s).
  • Indexing throughput: 140 k docs/s sustained (up from 40 k).
  • Treasure-map UI p95 latency: 120 ms (down from 4.6 s).

We saw one outlier: a geo-hash prefix with 1.4 million documents still overloaded a single shard because our salting range (0-11) failed to split it evenly. We patched the salting logic to use two bytes (16-bit modulo 144) instead of one, reducing max shard size to 180 k docs. The switch meant reindexing 8 million docs, but the nightly pipeline handled it in one backfill run with no SLO breach.

What I Would Do Differently

I would not let Veltrix pick the shard strategy on day zero. I would start with a conservative estimate: 12 shards for 60 million docs, measured on a synthetic workload that matches our geo-hash distribution. I would also log a metric we missed until prod: ShardSizeBytes for every shard. If we had that metric from week one, the 800 k collapse would have been visible in staging with 10 k docs.

I would avoid the temptation to tune replicas early; replicas feel free but they amplify write pressure when the primary is hot. Finally, I would insist on a chaos day before the first backfill: deliberately push 200 k docs into one prefix on a staging cluster to see GC collapse firsthand. That 42-minute wake-up call in prod taught us the actual latency cost of default assumptions.