Elasticsearch Query DSL Optimization
Diagnose why a Query DSL search is slow, identify the dominant cost from the profile (not guesswork), rewrite the query to remove that cost while preserving match semantics, and re-measure with profiling enabled.
Environment Configuration
This skill executes Elasticsearch operations through the elastic CLI. If the
elastic CLI is not installed, tell the user what it is needed for. Do
not guess credentials, call the HTTP API directly, or attempt other workarounds.
This skill references operations in HTTP-shorthand form (e.g., GET /, GET /_cat/indices, GET /{index}/_mapping,
GET /{index}/_settings/index.mode, POST /_query). The Operations table at the end of this document
maps each shorthand to the equivalent elastic CLI command — always use the CLI rather than calling the HTTP API
directly.
Scope: Query DSL searches via
POST /{index}/_search. This skill does not migrate queries to ES|QL — it optimizes the existing bool/match/term/wildcard structure the user already runs.Ground rule: Never recommend "add shards" or "scale hardware" as the primary fix when the profile names a specific clause (for example
WildcardQueryat ~3.8s). Fix the query first; infrastructure changes require evidence the query is already optimal.
Process
Confirm connectivity and locate the target index. Call
GET /. If the call fails, stop — do not guess endpoints or credentials. When the user names an index pattern (for examplelogs-*), narrow candidates withGET /_cat/indicesand pick the index or pattern the query actually targets.Decision: proceed only when the index is known. Data needed: index name or pattern, and the slow Query DSL body (from the user or from a saved search).
Profile the slow query to find the dominant cost. Call
POST /{index}/_searchwith"profile": trueand the user's query unchanged. Readtook, then inspectprofile.shards[].searches[].query— sort child collectors bytime_in_nanosand identify the top contributor.Decision: classify the bottleneck from profile evidence:
TermQuery/PointRangeQuery/MatchNoDocsQueryinsidemustalongside a scoring clause — exact-match or range filters are being scored unnecessarily. Likely fix: move them tofiltercontext (step 4a).WildcardQuerywith a leading*(for examplemessage:*timeout*) — cannot use the inverted index; scans terms per document. Likely fix: remove the leading wildcard (step 4b).MatchQueryon atextfield — expected scoring cost; optimize only if profile shows it dominates after filter-context fixes.- High
aggregationtime — separate from query tuning; profile the agg tree (out of scope unless the user asked about aggs).
Data needed: profile tree with
type,description,time_in_nanos, andbreakdown(especiallynext_docfor wildcards). Quote the top contributor verbatim when explaining the diagnosis.Inspect field mappings before rewriting. Call
GET /{index}/_mapping. For every clause you will move or rewrite, confirm the field type:term/terms/filteron exact values — field must bekeyword(or another non-analyzed type). Atermon atextfield is a common bug; if types are wrong, say so and suggest the correct sub-field (for exampleservice.keyword) or a mapping change — do not silently rewrite.match/match_phrase— target atextfield (analyzed).wildcard— works onkeywordorwildcardtypes; leading*still forces a scan regardless of type.
Decision: only propose rewrites that match confirmed types. Data needed: mapping for each field referenced in the query.
Rewrite the query to remove the profiled bottleneck.
4a. Move non-scoring clauses from
musttofilterWhen exact-match
term/terms/range/matchon a keyword (or other non-scoring intent) clauses sit inmustalongside a full-textmatchthat should drive relevance:- Move exact-match clauses into
bool.filter(or afilterarray entry). - Keep only clauses that must affect
_scoreinbool.must(typically the full-textmatch).
Why: filter context skips scoring and participates in the filter/bitset cache on repeated queries. Semantics: the same documents match; only scoring and performance change — state this explicitly.
Example rewrite pattern:
{ "query": { "bool": { "filter": [{ "term": { "status": "active" } }, { "term": { "tenant_id": "acme" } }], "must": [{ "match": { "description": "wireless keyboard" } }] } } }4b. Eliminate leading wildcards
When the profile shows
WildcardQuerywithdescriptionlikemessage:*timeout*and highnext_doctime, the leading*prevents index lookup. Choose a fix based on mapping and user intent (substring vs prefix vs exact):Intent Preferred rewrite Full-text substring in logs matchormatch_phraseon the analyzedmessagetextfieldLiteral substring on keyword wildcard-typed field, or reindex with ngram analyzerPrefix only ( timeout*)prefixquery onkeyword, or edge ngram at index timeAlso move any non-scoring exact match (for example
{ "match": { "service": "checkout" } }on a keyword) intofilter— usetermon the keyword field when the mapping confirms it.Example rewrite pattern:
{ "query": { "bool": { "filter": [{ "term": { "service.keyword": "checkout" } }], "must": [{ "match": { "message": "timeout" } }] } } }Adjust field names (
servicevsservice.keyword) to match the mapping from step 3.4c. Optional — validate rewrite before profiling
When semantics are uncertain (for example changing
wildcardtomatchmay include analyzed tokens the wildcard excluded), callPOST /{index}/_validate/query?explain=truewith the rewritten query and read the explanation for obvious mismatches.Decision: pick the smallest rewrite that addresses the profiled cost. Data needed: rewritten Query DSL body.
- Move exact-match clauses into
Re-profile the rewritten query and compare. Call
POST /{index}/_searchagain with"profile": trueand the rewritten query. Comparetookand the top profile collector to the baseline from step 2.Decision: report success only when the dominant collector changed or
time_in_nanosdropped materially. If the profile still shows a leading wildcard or scored filters, iterate — do not declare victory fromtookalone without profile confirmation.Data needed: before/after profile summaries (top collector
type,description,time_in_nanos).Report findings in this order.
- Root cause — quote the profile (for example "
WildcardQuerymessage:*timeout*≈ 3.8s, mostlynext_doc"). - Rewrite — show the optimized bool structure with filter vs must separation.
- Mapping notes — keyword vs text confirmations from
GET /{index}/_mapping. - Measured improvement — before/after profile or
tookfrom step 5. - Semantic caveat — only if the rewrite could change which documents match (for example
matchvs substringwildcard).
- Root cause — quote the profile (for example "
Guidelines
- Profile first. If the user supplies a profile summary, use it — but still recommend re-profiling after changes.
- Filter is for equality, must is for relevance. Status, tenant ID, service name, and time ranges rarely belong in
mustwhen a text query drives ranking. - Leading wildcards are almost never the right fix for log search. Prefer analyzed
match/match_phrase; reservewildcardfor suffix patterns (timeout*) on keyword orwildcard-typed fields. - Do not conflate slow with wrong. A slow query can return correct results; optimization preserves the result set unless you explicitly warn about a semantic trade-off.
- Deep reference: profile collector types, filter-cache behavior, and wildcard alternatives — references/query-optimization-reference.md.
Examples
Unscored terms in must
Input: bool.must contains term on status, term on tenant_id, and match on description.
Diagnosis: profile shows scored TermQuery collectors alongside MatchQuery; exact filters do not need scoring.
Fix: move both term clauses to filter; keep match in must. Confirm status and tenant_id are keyword.
Leading wildcard dominates latency
Input: wildcard message:*timeout* plus match on service in must. Profile: WildcardQuery ~3.8s.
Diagnosis: leading * forces term enumeration; not an index/shard problem.
Fix: match on analyzed message; move service to filter as term on keyword. Re-profile — expect
WildcardQuery to disappear or shrink to negligible time.
Operations
| HTTP API (shorthand) | elastic CLI command |
|---|---|
GET / |
elastic es info |
GET /_cat/indices |
elastic es cat indices --index '<pattern>' |
GET /{index}/_mapping |
elastic es indices get-mapping --index '<index>' |
POST /{index}/_search |
elastic es search --index '<index>' --input-file '<search-body.json>' |
POST /{index}/_validate/query?explain=true |
elastic es indices validate-query --index '<index>' --explain true --query '<json>' |
Include "profile": true in the search JSON body (or pass --profile true) when profiling in steps 2 and 5.