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 BooleanIftrue, 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 LongThe maximum number of concurrent searches the API can run.static MsearchTemplateRequestfinal StringSpecifies a subset of projects to target for the search using project metadata tags in a subset of Lucene query syntax.final List<RequestItem>Required - Request body.final SearchTypeThe type of the search operation.voidserialize(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:
_serializablesin 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 -
projectRouting
Specifies 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 -
searchType
The type of the search operation.API name:
search_type -
searchTemplates
Required - Request body. -
serialize
Serialize this value to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
createMsearchTemplateEndpoint
public static <TDocument> Endpoint<MsearchTemplateRequest,MsearchTemplateResponse<TDocument>, createMsearchTemplateEndpointErrorResponse> (JsonpDeserializer<TDocument> tDocumentDeserializer) Create an "msearch_template" endpoint.
-