[[search-search]]
=== Search API
++++
Search
++++
Returns search hits that match the query defined in the request.
[source,console]
----
GET /my-index-000001/_search
----
// TEST[setup:my_index]
[[search-search-api-request]]
==== {api-request-title}
`GET //_search`
`GET /_search`
`POST //_search`
`POST /_search`
[[search-search-api-desc]]
==== {api-description-title}
Allows you to execute a search query and get back search hits that match the
query. You can provide search queries using the <> or <>.
[[search-search-api-path-params]]
==== {api-path-parms-title}
``::
(Optional, string)
Comma-separated list of data streams, indices, and index aliases to search.
Wildcard (`*`) expressions are supported.
+
To search all data streams and indices in a cluster, omit this parameter or use
`_all` or `*`.
[role="child_attributes"]
[[search-search-api-query-params]]
==== {api-query-parms-title}
IMPORTANT: Several options for this API can be specified using a query parameter
or a request body parameter. If both parameters are specified, only the query
parameter is used.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=allow-no-indices]
+
Defaults to `true`.
[[search-partial-responses]]
`allow_partial_search_results`::
(Optional, boolean)
If `true`, returns partial results if there are request timeouts or
<>. If `false`, returns an error with
no partial results. Defaults to `true`.
+
To override the default for this field, set the
`search.default_allow_partial_results` cluster setting to `false`.
`batched_reduce_size`::
(Optional, integer) The number of shard results that should be reduced at once
on the coordinating node. This value should be used as a protection mechanism
to reduce the memory overhead per search request if the potential number of
shards in the request can be large. Defaults to `512`.
[[ccs-minimize-roundtrips]]
`ccs_minimize_roundtrips`::
(Optional, boolean) If `true`, network round-trips between the
coordinating node and the remote clusters are minimized when executing
{ccs} (CCS) requests. See <>. Defaults to `true`.
`docvalue_fields`::
(Optional, string) A comma-separated list of fields to return as the docvalue
representation of a field for each hit.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=expand-wildcards]
+
Defaults to `open`.
`explain`::
(Optional, boolean) If `true`, returns detailed information about score
computation as part of a hit. Defaults to `false`.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=from]
+
By default, you cannot page through more than 10,000 hits using the `from` and
`size` parameters. To page through more hits, use the
<> parameter.
`ignore_throttled`::
(Optional, boolean) If `true`, concrete, expanded or aliased indices will be
ignored when frozen. Defaults to `true`.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=index-ignore-unavailable]
`max_concurrent_shard_requests`::
(Optional, integer) Defines the number of concurrent shard requests per node
this search executes 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. Defaults to `5`.
`pre_filter_shard_size`::
(Optional, integer) Defines 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 ie. 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.
[[search-preference]]
`preference`::
(Optional, string)
Nodes and shards used for the search. By default, {es} selects from eligible
nodes and shards using <>,
accounting for <>.
+
.Valid values for `preference`
[%collapsible%open]
====
`_only_local`::
Run the search only on shards on the local node.
`_local`::
If possible, run the search on shards on the local node. If not, select shards
using the default method.
`_only_nodes:,`::
Run the search on only the specified nodes IDs. If suitable shards exist on more
than one selected nodes, 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:,`::
If possible, run the search on the specified nodes IDs. If not, select shards
using the default method.
`_shards:,`::
Run the search only on the specified shards. This value can be combined with
other `preference` values, but this value must come first. For example:
`_shards:2,3|_local`
::
Any string that does not start with `_`. If the cluster state and selected
shards do not change, searches using the same `` value are routed
to the same shards in the same order.
====
[[search-api-query-params-q]]
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=search-q]
+
You can use the `q` parameter to run a query parameter search. Query parameter
searches do not support the full {es} <> but are handy for
testing.
+
IMPORTANT: The `q` parameter overrides the <>
parameter in the request body. If both parameters are specified, documents
matching the `query` request body parameter are not returned.
`request_cache`::
(Optional, boolean) If `true`, the caching of search results is enabled for
requests where `size` is `0`. See <>. Defaults to index
level settings.
`rest_total_hits_as_int`::
(Optional, boolean) Indicates whether hits.total should be rendered as an
integer or an object in the rest search response. Defaults to `false`.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=routing]
[[search-api-scroll-query-param]]
`scroll`::
(Optional, <>)
Period to retain the <> for scrolling. See
<>.
+
By default, this value cannot exceed `1d` (24 hours). You can change
this limit using the `search.max_keep_alive` cluster-level setting.
[[search-type]]
`search_type`::
(Optional, string)
How {wikipedia}/Tf–idf[distributed term frequencies] are calculated for
<>.
+
.Valid values for `search_type`
[%collapsible%open]
====
`query_then_fetch`::
(Default)
Distributed term frequencies are calculated locally for each shard running the
search. We recommend this option for faster searches with potentially less
accurate scoring.
[[dfs-query-then-fetch]]
`dfs_query_then_fetch`::
Distributed term frequencies are calculated globally, using information gathered
from all shards running the search. While this option increases the accuracy of
scoring, it adds a round-trip to each shard, which can result in slower
searches.
====
`seq_no_primary_term`::
(Optional, boolean) If `true`, returns sequence number and primary term of the
last modification of each hit. See <>.
`size`::
(Optional, integer) Defines the number of hits to return. Defaults to `10`.
+
By default, you cannot page through more than 10,000 hits using the `from` and
`size` parameters. To page through more hits, use the
<> parameter.
`sort`::
(Optional, string) A comma-separated list of : pairs.
`_source`::
(Optional)
Indicates which <> are returned for matching
documents. These fields are returned in the `hits._source` property of
the search response. Defaults to `true`.
+
.Valid values for `_source`
[%collapsible%open]
====
`true`::
(boolean)
The entire document source is returned.
`false`::
(boolean)
The document source is not returned.
``::
(string)
Comma-separated list of source fields to return.
Wildcard (`*`) patterns are supported.
====
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=source_excludes]
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=source_includes]
`stats`::
(Optional, string) Specific `tag` of the request for logging and statistical
purposes.
`stored_fields`::
(Optional, string) 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 `_source` parameter defaults to `false`. You can
pass `_source: true` to return both source fields and
stored fields in the search response.
`suggest_field`::
(Optional, string) Specifies which field to use for suggestions.
`suggest_text`::
(Optional, string) The source text for which the suggestions should be
returned.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=terminate_after]
+
Defaults to `0`, which does not terminate query execution early.
`timeout`::
(Optional, <>) Specifies the period of time to wait
for a response. If no response is received before the timeout expires, the
request fails and returns an error. Defaults to no timeout.
`track_scores`::
(Optional, boolean) If `true`, calculate and return document scores, even if
the scores are not used for sorting. Defaults to `false`.
`track_total_hits`::
(Optional, integer or boolean)
Number of hits matching the query to count accurately. Defaults to `10000`.
+
If `true`, the exact number of hits is returned at the cost of some performance.
If `false`, the response does not include the total number of hits matching the query.
`typed_keys`::
(Optional, boolean) If `true`, aggregation and suggester names are be prefixed
by their respective types in the response. Defaults to `true`.
`version`::
(Optional, boolean)
If `true`, returns document version as part of a hit. Defaults to `false`.
[role="child_attributes"]
[[search-search-api-request-body]]
==== {api-request-body-title}
[[search-docvalue-fields-param]]
`docvalue_fields`::
(Optional, array of strings and objects)
Array of wildcard (`*`) patterns. The request returns doc values for field names
matching these patterns in the `hits.fields` property of the response.
+
You can specify items in the array as a string or object.
See <>.
+
.Properties of `docvalue_fields` objects
[%collapsible%open]
====
`field`::
(Required, string)
Wildcard pattern. The request returns doc values for field names matching this
pattern.
`format`::
(Optional, string)
Format in which the doc values are returned.
+
For <>, you can specify a date <>. For <> fields, you can specify a
https://docs.oracle.com/javase/8/docs/api/java/text/DecimalFormat.html[DecimalFormat
pattern].
+
For other field data types, this parameter is not supported.
====
`fields`::
(Optional, array of strings and objects)
Array of wildcard (`*`) patterns. The request returns values for field names
matching these patterns in the `hits.fields` property of the response.
+
You can specify items in the array as a string or object.
See <> for more details.
+
.Properties of `fields` objects
[%collapsible%open]
====
`field`::
(Required, string)
Wildcard pattern. The request returns values for field names matching this pattern.
`format`::
(Optional, string)
Format in which the values are returned.
+
The date fields <> and <> accept a
<>. <> accept either
`geojson` for http://www.geojson.org[GeoJSON] (the default) or `wkt` for
{wikipedia}/Well-known_text_representation_of_geometry[Well Known Text].
+
For other field data types, this parameter is not supported.
====
[[request-body-search-explain]]
`explain`::
(Optional, boolean) If `true`, returns detailed information about score
computation as part of a hit. Defaults to `false`.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=from]
+
By default, you cannot page through more than 10,000 hits using the `from` and
`size` parameters. To page through more hits, use the
<> parameter.
`indices_boost`::
(Optional, array of objects)
Boosts the <> of documents from specified indices.
+
.Properties of `indices_boost` objects
[%collapsible%open]
====
`: `::
(Required, float)
`` is the name of the index or index alias. Wildcard (`*`) expressions
are supported.
+
`` is the factor by which scores are multiplied.
+
A boost value greater than `1.0` increases the score. A boost value between
`0` and `1.0` decreases the score.
====
[[search-api-min-score]]
`min_score`::
(Optional, float)
Minimum <> for matching documents. Documents with a
lower `_score` are not included in the search results.
[[request-body-search-query]]
`query`::
(Optional, <>) Defines the search definition using the
<>.
[[request-body-search-seq-no-primary-term]]
`seq_no_primary_term`::
(Optional, boolean) If `true`, returns sequence number and primary term of the
last modification of each hit. See <>.
`size`::
(Optional, integer) The number of hits to return. Defaults to `10`.
+
By default, you cannot page through more than 10,000 hits using the `from` and
`size` parameters. To page through more hits, use the
<> parameter.
`_source`::
(Optional)
Indicates which <> are returned for matching
documents. These fields are returned in the `hits._source` property of
the search response. Defaults to `true`.
+
.Valid values for `_source`
[%collapsible%open]
====
`true`::
(boolean)
The entire document source is returned.
`false`::
(boolean)
The document source is not returned.
``::
(string or array of strings)
Wildcard (`*`) pattern or array of patterns containing source fields to return.
`