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

推荐订阅源

云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
月光博客
月光博客
T
Tailwind CSS Blog
小众软件
小众软件
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
B
Blog RSS Feed
博客园 - 司徒正美
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
博客园 - Franky
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
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
The Life of a Search Query in OpenSearch
Prithvi S · 2026-05-01 · via DEV Community

OpenSearch is an open‑source search and analytics engine built on Apache Lucene. When you send a search request, a complex dance of components runs behind the scenes to turn a simple HTTP call into a ranked list of results. In this article we follow a query from the moment it hits the REST endpoint all the way to the final merged response, explaining each step in plain language while preserving the technical depth that engineers expect.


1. The Entry Point – REST Request

Everything starts with an HTTP request to the OpenSearch REST API, typically a GET /my-index/_search with a JSON body describing the query. The request can include parameters such as size, from, and sorting directives. The client can be anything from curl to a Python SDK, but the wire format is always the same: JSON over HTTP.

OpenSearch runs a lightweight HTTP server that parses the request and hands it over to the coordinating node – the node that received the request. In a cluster, any node can act as the coordinating node; it does not need to store data.


2. Routing the Request – Shard Selection

OpenSearch stores data in shards – Lucene indexes that are distributed across the cluster. Each document is assigned to a primary shard based on a routing value, which defaults to the document _id. The routing formula is:

hash(routing) % number_of_primary_shards

Enter fullscreen mode Exit fullscreen mode

The coordinating node runs this hash function to determine which primary shards are responsible for the data the query touches. For a simple term query across a single index, the coordinating node may need to contact all primary shards of that index. If the query targets a specific routing value, the set of shards can be reduced dramatically, improving latency.


3. Query Phase – Parallel Execution on Shards

Once the responsible shards are known, the coordinating node forwards the query to the shard nodes (which may be the same physical node or a different one). Each shard executes the query locally against its Lucene segments. This phase has two important sub‑steps:

3.1 Segment Search

Lucene stores data in immutable segments. During the query phase, each segment is searched independently. OpenSearch can search segments in parallel within a shard – a feature called concurrent segment search introduced in version 3.0. The engine decides automatically how many slices to create based on CPU cores and segment size.

3.2 Scoring with BM25

For each matching document, Lucene computes a relevance score using the BM25 algorithm. The key parameters are term frequency, inverse document frequency, and the b length‑normalisation factor (default 0.75). The shard returns the top‑k (default 10) documents along with their scores.


4. Fetch Phase – Getting Full Documents

The query phase only returns document IDs and scores. If the client also requested the _source field (which most do), a second round called the fetch phase runs. The coordinating node asks each shard for the full source of the selected documents. Shards retrieve the stored _source from the Lucene stored fields and send it back.

Because the fetch phase may involve moving larger payloads over the network, OpenSearch tries to keep the number of fetched documents small. This is why pagination (from/size) and stored_fields filters are important performance knobs.


5. Merging Results – The Coordinating Node’s Role

After receiving the top‑k results from each shard, the coordinating node merges them into a single ranked list. It re‑applies the global size and from parameters, then sorts the combined set based on the BM25 scores returned by each shard. If the query includes custom sorts, the coordinating node also applies those rules.

The final merged list is then formatted as a JSON response and sent back to the client.


6. Behind the Scenes – Refresh, Translog, and Near‑Real‑Time Search

While the query is being processed, OpenSearch maintains a near‑real‑time view of the data. New documents are first written to an in‑memory buffer and appended to the translog for durability. Every second (the default refresh interval) the buffer is flushed to a new Lucene segment, making the freshly indexed documents searchable. This means there is typically a < 1‑second lag between indexing and visibility in search results.


7. Practical Tips for Optimising Queries

Issue Why it Happens Mitigation
Slow query latency Too many shards queried, high segment count Use routing, configure index.routing_partition_size, force‑merge to reduce segments
High CPU usage Concurrent segment search on large shards Tune search.max_concurrent_shard_requests and search.max_concurrent_segments
Stale results Refresh interval too large for real‑time needs Reduce index.refresh_interval on hot indices
Large payloads Fetching full _source for many docs Use stored_fields or docvalue_fields, limit size

8. Conclusion

A search query in OpenSearch is more than a simple HTTP call. It involves routing, parallel shard execution, scoring, optional fetching, and a final merge step that stitches everything together. Understanding each stage helps you design better schemas, tune performance, and avoid common pitfalls such as unnecessary shard scans or excessive refresh intervals.

By visualising the journey of a query, you gain the confidence to diagnose latency issues, choose the right indexing strategies, and make the most of OpenSearch’s powerful plugin and analysis ecosystems.


Author bio: I'm Prithvi S, Staff Software Engineer at Cloudera and Opensource Enthusiast. Follow my work on GitHub: https://github.com/iprithv