stack es search cli command
elastic stack es search [options]
Run a search.
Behaviour flags:
--dry-run — validate all inputs and exit without performing any action
--indexstring-
A comma-separated list of data streams, indices, and aliases to search. It supports wildcards (
*). To search all data streams and indices, omit this parameter or use*or_all.Repeatable: pass
--indexmultiple times to supply more than one value --[no-]allow-no-indices- A setting that does two separate checks on the index expression. If
false, the request returns an error (1) if any wildcard expression (including_alland*) resolves to zero matching indices or (2) if the complete set of resolved indices, aliases or data streams is empty after all expressions are evaluated. Iftrue, index expressions that resolve to no indices are allowed and the request returns an empty result. --[no-]allow-partial-search-results- If
trueand there are shard request timeouts or shard failures, the request returns partial results. Iffalse, it returns an error with no partial results. To override the default behavior, you can set thesearch.default_allow_partial_resultscluster setting tofalse. --analyzerstring- The analyzer to use for the query string. This parameter can be used only when the
qquery string parameter is specified. --[no-]analyze-wildcard- If
true, wildcard and prefix queries are analyzed. This parameter can be used only when theqquery string parameter is specified. --batched-reduce-sizenumber- The number of shard results that should be reduced at once on the coordinating node. If the potential number of shards in the request can be large, this value should be used as a protection mechanism to reduce the memory overhead per search request.
--[no-]ccs-minimize-roundtrips- If
true, network round-trips between the coordinating node and the remote clusters are minimized when running cross-cluster search (CCS) requests. --default-operatorstring- The default operator for the query string query:
andoror. This parameter can be used only when theqquery string parameter is specified. --dfstring- The field to use as a default when no field prefix is given in the query string. This parameter can be used only when the
qquery string parameter is specified. --expand-wildcardsstring-
The type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. It supports comma-separated values such as
open,hidden.Repeatable: pass
--expand-wildcardsmultiple times to supply more than one value --[no-]ignore-throttled- If
true, concrete, expanded or aliased indices will be ignored when frozen. - If
false, the request returns an error if it targets a concrete (non-wildcarded) index, alias, or data stream that is missing, closed, or otherwise unavailable. Iftrue, unavailable concrete targets are silently ignored. --[no-]include-named-queries-score- If
true, the response includes the score contribution from any named queries. This functionality reruns each named query on every hit in a search response. Typically, this adds a small overhead to a request. However, using computationally expensive named queries on a large number of hits may add significant overhead. --[no-]lenient- If
true, format-based query failures (such as providing text to a numeric field) in the query string will be ignored. This parameter can be used only when theqquery string parameter is specified. --max-concurrent-shard-requestsnumber- The number of concurrent shard requests per node that the search runs concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests.
--preferencestring- The nodes and shards used for the search. By default, Elasticsearch selects from eligible nodes and shards using adaptive replica selection, accounting for allocation awareness. Valid values are: *
_only_localto run the search only on shards on the local node. *_localto, if possible, run the search on shards on the local node, or if not, select shards using the default method. *_only_nodes:<node-id>,<node-id>to run the search on only the specified nodes IDs. If suitable shards exist on more than one selected node, use shards on those nodes using the default method. If none of the specified nodes are available, select shards from any available node using the default method. *_prefer_nodes:<node-id>,<node-id>to if possible, run the search on the specified nodes IDs. If not, select shards using the default method. *_shards:<shard>,<shard>to run the search only on the specified shards. You can combine this value with otherpreferencevalues. However, the_shardsvalue must come first. For example:_shards:2,3|_local. *<custom-string>(any string that does not start with_) to route searches with the same<custom-string>to the same shards in the same order. --pre-filter-shard-sizenumber- A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on its rewrite method (if date filters are mandatory to match but the shard bounds and the query are disjoint). When unspecified, the pre-filter phase is executed if any of these conditions is met: * The request targets more than 128 shards. * The request targets one or more read-only index. * The primary sort of the query targets an indexed field.
--[no-]request-cache- If
true, the caching of search results is enabled for requests wheresizeis0. It defaults to index level settings. --routingstring-
A custom value that is used to route operations to a specific shard.
Repeatable: pass
--routingmultiple times to supply more than one value --scrollstring- The period to retain the search context for scrolling. By default, this value cannot exceed
1d(24 hours). You can change this limit by using thesearch.max_keep_alivecluster-level setting. --search-typestring- Indicates how distributed term frequencies are calculated for relevance scoring.
--suggest-fieldstring- The field to use for suggestions.
--suggest-modestring- The suggest mode. This parameter can be used only when the
suggest_fieldandsuggest_textquery string parameters are specified. --suggest-sizenumber- The number of suggestions to return. This parameter can be used only when the
suggest_fieldandsuggest_textquery string parameters are specified. --suggest-textstring- The source text for which the suggestions should be returned. This parameter can be used only when the
suggest_fieldandsuggest_textquery string parameters are specified. --[no-]typed-keys- If
true, aggregation and suggester names are be prefixed by their respective types in the response. --[no-]rest-total-hits-as-int- Indicates whether
hits.totalshould be rendered as an integer or an object in the rest search response. --source-excludesstring-
A comma-separated list of source fields to exclude from the response. You can also use this parameter to exclude fields from the subset specified in
_source_includesquery parameter. If the_sourceparameter isfalse, this parameter is ignored.Repeatable: pass
--source-excludesmultiple times to supply more than one value --[no-]source-exclude-vectors- Whether vectors should be excluded from _source
--source-includesstring-
A comma-separated list of source fields to include in the response. If this parameter is specified, only these source fields are returned. You can exclude fields from this subset using the
_source_excludesquery parameter. If the_sourceparameter isfalse, this parameter is ignored.Repeatable: pass
--source-includesmultiple times to supply more than one value --qstring- A query in the Lucene query string syntax. Query parameter searches do not support the full Elasticsearch Query DSL but are handy for testing. IMPORTANT: This parameter overrides the query parameter in the request body. If both parameters are specified, documents matching the query request body parameter are not returned.
--aggregationsstring- Defines the aggregations that are run as part of the search request.
--aggsstring- Defines the aggregations that are run as part of the search request.
--collapsestring- Collapses search results the values of the specified field.
--[no-]explain- If
true, the request returns detailed information about score computation as part of a hit. --extstring- Configuration of search extensions defined by Elasticsearch plugins.
--fromnumber- The starting document offset, which must be non-negative. By default, you cannot page through more than 10,000 hits using the
fromandsizeparameters. To page through more hits, use thesearch_afterparameter. --highlightstring- Specifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.
--[no-]track-total-hits- Number of hits matching the query to count accurately. If
true, the exact number of hits is returned at the cost of some performance. Iffalse, the response does not include the total number of hits matching the query. --indices-booststring[]- Boost the
_scoreof documents from specified indices. The boost value is the factor by which scores are multiplied. A boost value greater than1.0increases the score. A boost value between0and1.0decreases the score. --docvalue-fieldsstring[]- An array of wildcard (
*) field patterns. The request returns doc values for field names matching these patterns in thehits.fieldsproperty of the response. --knnstring-
The approximate kNN search to run.
Repeatable: pass
--knnmultiple times to supply more than one value --min-scorenumber- The minimum
_scorefor matching documents. Documents with a lower_scoreare not included in search results and results collected by aggregations. --post-filterstring- Use the
post_filterparameter to filter search results. The search hits are filtered after the aggregations are calculated. A post filter has no impact on the aggregation results. --[no-]profile- Set to
trueto return detailed timing information about the execution of individual components in a search request. NOTE: This is a debugging tool and adds significant overhead to search execution. --querystring- The search definition using the Query DSL.
--rescorestring-
Can be used to improve precision by reordering just the top (for example 100 - 500) documents returned by the
queryandpost_filterphases.Repeatable: pass
--rescoremultiple times to supply more than one value --retrieverstring- A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as
queryandknn. --script-fieldsstring- Retrieve a script evaluation (based on different fields) for each hit.
--search-afterstring[]- Used to retrieve the next page of hits using a set of sort values from the previous page.
--sizenumber- The number of hits to return, which must not be negative. By default, you cannot page through more than 10,000 hits using the
fromandsizeparameters. To page through more hits, use thesearch_afterproperty. --slicestring- Split a scrolled search into multiple slices that can be consumed independently.
--sortstring-
A comma-separated list of <field>:<direction> pairs.
Repeatable: pass
--sortmultiple times to supply more than one value --[no-]source-
The source fields that are returned for matching documents. These fields are returned in the
hits._sourceproperty of the search response. If thestored_fieldsproperty is specified, the_sourceproperty defaults tofalse. Otherwise, it defaults totrue.Repeatable: pass
--sourcemultiple times to supply more than one value --fieldsstring[]- An array of wildcard (
*) field patterns. The request returns values for field names matching these patterns in thehits.fieldsproperty of the response. --suggeststring- Defines a suggester that provides similar looking terms based on a provided text.
--terminate-afternumber- The maximum number of documents to collect for each shard. If a query reaches this limit, Elasticsearch terminates the query early. Elasticsearch collects documents before sorting. IMPORTANT: Use with caution. Elasticsearch applies this property to each shard handling the request. When possible, let Elasticsearch perform early termination automatically. Avoid specifying this property for requests that target data streams with backing indices across multiple data tiers. If set to
0(default), the query does not terminate early. --timeoutstring- The period of time to wait for a response from each shard. If no response is received before the timeout expires, the request fails and returns an error. Defaults to no timeout.
--[no-]track-scores- If
true, calculate and return document scores, even if the scores are not used for sorting. --[no-]version- If
true, the request returns the document version as part of a hit. --[no-]seq-no-primary-term- If
true, the request returns sequence number and primary term of the last modification of each hit. --stored-fieldsstring-
A comma-separated list of stored fields to return as part of a hit. If no fields are specified, no stored fields are included in the response. If this field is specified, the
_sourceproperty defaults tofalse. You can pass_source: trueto return both source fields and stored fields in the search response.Repeatable: pass
--stored-fieldsmultiple times to supply more than one value --pitstring- Limit the search to a point in time (PIT). If you provide a PIT, you cannot specify an
<index>in the request path. --runtime-mappingsstring- One or more runtime fields in the search request. These fields take precedence over mapped fields with the same name.
--statsstring[]- The stats groups to associate with the search. Each group maintains a statistics aggregation for its associated searches. You can retrieve these stats using the indices stats API.
--input-filestring- path to a JSON file to use as command input
--[no-]dry-run- validate all inputs and exit without performing any action (preview changes without applying them)
--[no-]json-
output as JSON