Class SearchRequest
- All Implemented Interfaces:
- JsonpSerializable
 Get search hits that match the query defined in the request. You can provide
 search queries using the q query string parameter or the request
 body. If both are specified, only the query parameter is used.
 
 If the Elasticsearch security features are enabled, you must have the read
 index privilege for the target data stream, index, or alias. For
 cross-cluster search, refer to the documentation about configuring CCS
 privileges. To search a point in time (PIT) for an alias, you must have the
 read index privilege for the alias's data streams or indices.
 
Search slicing
 When paging through a large number of documents, it can be helpful to split
 the search into multiple slices to consume them independently with the
 slice and pit properties. By default the splitting
 is done first on the shards, then locally on each shard. The local splitting
 partitions the shard into contiguous ranges based on Lucene document IDs.
 
For instance if the number of shards is equal to 2 and you request 4 slices, the slices 0 and 2 are assigned to the first shard and the slices 1 and 3 are assigned to the second shard.
IMPORTANT: The same point-in-time ID should be used for all slices. If different PIT IDs are used, slices can overlap and miss documents. This situation can occur because the splitting criterion is based on Lucene document IDs, which are not stable across changes to the index.
- See Also:
- 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBaseRequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final JsonpDeserializer<SearchRequest>Json deserializer forSearchRequeststatic final SimpleEndpoint<SearchRequest,?> Endpoint "search".
- 
Method SummaryModifier and TypeMethodDescriptionfinal Map<String,Aggregation> Defines the aggregations that are run as part of the search request.final BooleanIffalse, the request returns an error if any wildcard expression, index alias, or_allvalue targets only missing or closed indices.final BooleanIftrueand there are shard request timeouts or shard failures, the request returns partial results.final Stringanalyzer()The analyzer to use for the query string.final BooleanIftrue, wildcard and prefix queries are analyzed.final LongThe number of shard results that should be reduced at once on the coordinating node.final BooleanIftrue, network round-trips between the coordinating node and the remote clusters are minimized when running cross-cluster search (CCS) requests.final FieldCollapsecollapse()Collapses search results the values of the specified field.static <TDocument>
 Endpoint<SearchRequest,SearchResponse<TDocument>, ErrorResponse> createSearchEndpoint(JsonpDeserializer<TDocument> tDocumentDeserializer) Create an "search" endpoint.final OperatorThe default operator for the query string query:andoror.final Stringdf()The field to use as a default when no field prefix is given in the query string.final List<FieldAndFormat>An array of wildcard (*) field patterns.final List<ExpandWildcard>The type of index that wildcard patterns can match.final Booleanexplain()Iftrue, the request returns detailed information about score computation as part of a hit.ext()Configuration of search extensions defined by Elasticsearch plugins.final List<FieldAndFormat>fields()An array of wildcard (*) field patterns.final BooleanShould this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance.final Integerfrom()The starting document offset, which must be non-negative.final HighlightSpecifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.final BooleanDeprecated.7.16.0final BooleanIffalse, the request returns an error if it targets a missing or closed index.final BooleanIftrue, the response includes the score contribution from any named queries.index()A comma-separated list of data streams, indices, and aliases to search.final List<NamedValue<Double>>Boost the_scoreof documents from specified indices.knn()The approximate kNN search to run.final Booleanlenient()Iftrue, format-based query failures (such as providing text to a numeric field) in the query string will be ignored.final IntegerThe number of concurrent shard requests per node that the search runs concurrently.final DoubleminScore()The minimum_scorefor matching documents.static SearchRequestfinal PointInTimeReferencepit()Limit the search to a point in time (PIT).final QueryUse thepost_filterparameter to filter search results.final StringThe nodes and shards used for the search.final LongA 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.final Booleanprofile()Set totrueto return detailed timing information about the execution of individual components in a search request.final StringSpecifies a subset of projects to target for the search using project metadata tags in a subset of Lucene query syntax.final Stringq()A query in the Lucene query string syntax.final Queryquery()The search definition using the Query DSL.final Rankrank()The Reciprocal Rank Fusion (RRF) to use.final BooleanIftrue, the caching of search results is enabled for requests wheresizeis0.rescore()Can be used to improve precision by reordering just the top (for example 100 - 500) documents returned by thequeryandpost_filterphases.final RetrieverA retriever is a specification to describe top documents returned from a search.final Stringrouting()A custom value that is used to route operations to a specific shard.final Map<String,RuntimeField> One or more runtime fields in the search request.final Map<String,ScriptField> Retrieve a script evaluation (based on different fields) for each hit.final Timescroll()The period to retain the search context for scrolling.final List<FieldValue>Used to retrieve the next page of hits using a set of sort values from the previous page.final SearchTypeIndicates how distributed term frequencies are calculated for relevance scoring.final BooleanIftrue, the request returns sequence number and primary term of the last modification of each hit.voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) protected static voidfinal Integersize()The number of hits to return, which must not be negative.final SlicedScrollslice()Split a scrolled search into multiple slices that can be consumed independently.final List<SortOptions>sort()A comma-separated list of <field>:<direction> pairs.final SourceConfigsource()The source fields that are returned for matching documents.stats()The stats groups to associate with the search.A comma-separated list of stored fields to return as part of a hit.final Suggestersuggest()Defines a suggester that provides similar looking terms based on a provided text.final LongThe maximum number of documents to collect for each shard.final Stringtimeout()The period of time to wait for a response from each shard.final BooleanIftrue, calculate and return document scores, even if the scores are not used for sorting.final TrackHitsNumber of hits matching the query to count accurately.final Booleanversion()Iftrue, the request returns the document version as part of a hit.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBasetoString
- 
Field Details- 
_DESERIALIZERJson deserializer forSearchRequest
- 
_ENDPOINTEndpoint "search".
 
- 
- 
Method Details- 
of
- 
sourceThe source fields that are returned for matching documents. These fields are returned in thehits._sourceproperty of the search response. If thestored_fieldsproperty is specified, the_sourceproperty defaults tofalse. Otherwise, it defaults totrue.API name: _source
- 
aggregationsDefines the aggregations that are run as part of the search request.API name: aggregations
- 
allowNoIndicesIffalse, the request returns an error if any wildcard expression, index alias, or_allvalue targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request targetingfoo*,bar*returns an error if an index starts withfoobut no index starts withbar.API name: allow_no_indices
- 
allowPartialSearchResultsIftrueand 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 the search.default_allow_partial_resultscluster setting tofalse.API name: allow_partial_search_results
- 
analyzeWildcardIftrue, wildcard and prefix queries are analyzed. This parameter can be used only when theqquery string parameter is specified.API name: analyze_wildcard
- 
analyzerThe analyzer to use for the query string. This parameter can be used only when theqquery string parameter is specified.API name: analyzer
- 
batchedReduceSizeThe 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.API name: batched_reduce_size
- 
ccsMinimizeRoundtripsIftrue, network round-trips between the coordinating node and the remote clusters are minimized when running cross-cluster search (CCS) requests.API name: ccs_minimize_roundtrips
- 
collapseCollapses search results the values of the specified field.API name: collapse
- 
defaultOperatorThe default operator for the query string query:andoror. This parameter can be used only when theqquery string parameter is specified.API name: default_operator
- 
dfThe field to use as a default when no field prefix is given in the query string. This parameter can be used only when theqquery string parameter is specified.API name: df
- 
docvalueFieldsAn array of wildcard (*) field patterns. The request returns doc values for field names matching these patterns in thehits.fieldsproperty of the response.API name: docvalue_fields
- 
expandWildcardsThe 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 asopen,hidden.API name: expand_wildcards
- 
explainIftrue, the request returns detailed information about score computation as part of a hit.API name: explain
- 
extConfiguration of search extensions defined by Elasticsearch plugins.API name: ext
- 
fieldsAn array of wildcard (*) field patterns. The request returns values for field names matching these patterns in thehits.fieldsproperty of the response.API name: fields
- 
forceSyntheticSourceShould this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index.API name: force_synthetic_source
- 
fromThe starting document offset, which must be non-negative. By default, you cannot page through more than 10,000 hits using thefromandsizeparameters. To page through more hits, use thesearch_afterparameter.API name: from
- 
highlightSpecifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.API name: highlight
- 
ignoreThrottledDeprecated.7.16.0Iftrue, concrete, expanded or aliased indices will be ignored when frozen.API name: ignore_throttled
- 
includeNamedQueriesScoreIftrue, 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. API name: include_named_queries_score
- 
indexA 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.API name: index
- 
indicesBoostBoost 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.API name: indices_boost
- 
knnThe approximate kNN search to run.API name: knn
- 
lenientIftrue, 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.API name: lenient
- 
maxConcurrentShardRequestsThe 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.API name: max_concurrent_shard_requests
- 
minScoreThe minimum_scorefor matching documents. Documents with a lower_scoreare not included in search results and results collected by aggregations.API name: min_score
- 
pitLimit the search to a point in time (PIT). If you provide a PIT, you cannot specify an<index>in the request path.API name: pit
- 
postFilterUse thepost_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.API name: post_filter
- 
preFilterShardSizeA 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.
 API name: pre_filter_shard_size
- 
preferenceThe 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 other- preferencevalues. 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.
 API name: preference
- 
profileSet totrueto 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.API name: profile
- 
projectRoutingSpecifies a subset of projects to target for the search using project metadata tags in a subset of Lucene query syntax. Allowed Lucene queries: the _alias tag and a single value (possibly wildcarded). Examples: _alias:my-project _alias:_origin _alias:pr Supported in serverless only.API name: project_routing
- 
qA 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. API name: q
- 
queryThe search definition using the Query DSL.API name: query
- 
rankThe Reciprocal Rank Fusion (RRF) to use.API name: rank
- 
requestCacheIftrue, the caching of search results is enabled for requests wheresizeis0. It defaults to index level settings.API name: request_cache
- 
rescoreCan be used to improve precision by reordering just the top (for example 100 - 500) documents returned by thequeryandpost_filterphases.API name: rescore
- 
retrieverA 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 asqueryandknn.API name: retriever
- 
routingA custom value that is used to route operations to a specific shard.API name: routing
- 
runtimeMappingsOne or more runtime fields in the search request. These fields take precedence over mapped fields with the same name.API name: runtime_mappings
- 
scriptFieldsRetrieve a script evaluation (based on different fields) for each hit.API name: script_fields
- 
scrollThe period to retain the search context for scrolling. By default, this value cannot exceed1d(24 hours). You can change this limit by using thesearch.max_keep_alivecluster-level setting.API name: scroll
- 
searchAfterUsed to retrieve the next page of hits using a set of sort values from the previous page.API name: search_after
- 
searchTypeIndicates how distributed term frequencies are calculated for relevance scoring.API name: search_type
- 
seqNoPrimaryTermIftrue, the request returns sequence number and primary term of the last modification of each hit.API name: seq_no_primary_term
- 
sizeThe number of hits to return, which must not be negative. By default, you cannot page through more than 10,000 hits using thefromandsizeparameters. To page through more hits, use thesearch_afterproperty.API name: size
- 
sliceSplit a scrolled search into multiple slices that can be consumed independently.API name: slice
- 
sortA comma-separated list of <field>:<direction> pairs.API name: sort
- 
statsThe 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.API name: stats
- 
storedFieldsA 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.API name: stored_fields
- 
suggestDefines a suggester that provides similar looking terms based on a provided text.API name: suggest
- 
terminateAfterThe 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.API name: terminate_after
- 
timeoutThe 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.API name: timeout
- 
trackScoresIftrue, calculate and return document scores, even if the scores are not used for sorting.API name: track_scores
- 
trackTotalHitsNumber of hits matching the query to count accurately. Iftrue, 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.API name: track_total_hits
- 
versionIftrue, the request returns the document version as part of a hit.API name: version
- 
serializeSerialize this object to JSON.- Specified by:
- serializein interface- JsonpSerializable
 
- 
serializeInternal
- 
setupSearchRequestDeserializer
- 
createSearchEndpointpublic static <TDocument> Endpoint<SearchRequest,SearchResponse<TDocument>, createSearchEndpointErrorResponse> (JsonpDeserializer<TDocument> tDocumentDeserializer) Create an "search" endpoint.
 
-