Class MsearchTemplateRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.core.MsearchTemplateRequest
- All Implemented Interfaces:
JsonpSerializable
,NdJsonpSerializable
public class MsearchTemplateRequest
extends RequestBase
implements NdJsonpSerializable, JsonpSerializable
Run multiple templated searches.
Run multiple templated searches with a single request. If you are providing a
text file or text input to curl
, use the
--data-binary
flag instead of -d
to preserve
newlines. For example:
$ cat requests
{ "index": "my-index" }
{ "id": "my-search-template", "params": { "query_string": "hello world", "from": 0, "size": 10 }}
{ "index": "my-other-index" }
{ "id": "my-other-search-template", "params": { "query_type": "match_all" }}
$ curl -H "Content-Type: application/x-ndjson" -XGET localhost:9200/_msearch/template --data-binary "@requests"; echo
- See Also:
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SimpleEndpoint<MsearchTemplateRequest,
?> Endpoint "msearch_template
". -
Method Summary
Modifier and TypeMethodDescriptionIterator<?>
final Boolean
Iftrue
, network round-trips are minimized for cross-cluster search requests.static <TDocument>
Endpoint<MsearchTemplateRequest,MsearchTemplateResponse<TDocument>, ErrorResponse> createMsearchTemplateEndpoint
(JsonpDeserializer<TDocument> tDocumentDeserializer) Create an "msearch_template
" endpoint.index()
A comma-separated list of data streams, indices, and aliases to search.final Long
The maximum number of concurrent searches the API can run.static MsearchTemplateRequest
final List<RequestItem>
Required - Request body.final SearchType
The type of the search operation.void
serialize
(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) Serialize this value to JSON.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toString
-
Field Details
-
_ENDPOINT
Endpoint "msearch_template
".
-
-
Method Details
-
of
public static MsearchTemplateRequest of(Function<MsearchTemplateRequest.Builder, ObjectBuilder<MsearchTemplateRequest>> fn) -
_serializables
- Specified by:
_serializables
in interfaceNdJsonpSerializable
-
ccsMinimizeRoundtrips
Iftrue
, network round-trips are minimized for cross-cluster search requests.API name:
ccs_minimize_roundtrips
-
index
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*
.API name:
index
-
maxConcurrentSearches
The maximum number of concurrent searches the API can run.API name:
max_concurrent_searches
-
searchType
The type of the search operation.API name:
search_type
-
searchTemplates
Required - Request body. -
serialize
Serialize this value to JSON.- Specified by:
serialize
in interfaceJsonpSerializable
-
createMsearchTemplateEndpoint
public static <TDocument> Endpoint<MsearchTemplateRequest,MsearchTemplateResponse<TDocument>, createMsearchTemplateEndpointErrorResponse> (JsonpDeserializer<TDocument> tDocumentDeserializer) Create an "msearch_template
" endpoint.
-