Class RestHighLevelClient
- java.lang.Object
-
- org.elasticsearch.client.RestHighLevelClient
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class RestHighLevelClient extends java.lang.Object implements java.io.CloseableHigh level REST client that wraps an instance of the low levelRestClientand allows to build requests and read responses. TheRestClientinstance is internally built based on the providedRestClientBuilderand it gets closed automatically when closing theRestHighLevelClientinstance that wraps it.In case an already existing instance of a low-level REST client needs to be provided, this class can be subclassed and the
RestHighLevelClient(RestClient, CheckedConsumer, List)constructor can be used.This class can also be sub-classed to expose additional client methods that make use of endpoints added to Elasticsearch through plugins, or to add support for custom response sections, again added to Elasticsearch through plugins.
The majority of the methods in this class come in two flavors, a blocking and an asynchronous version (e.g.
search(SearchRequest, RequestOptions)andsearchAsync(SearchRequest, RequestOptions, ActionListener), where the later takes an implementation of anActionListeneras an argument that needs to implement methods that handle successful responses and failure scenarios. Most of the blocking calls can throw anIOExceptionor an uncheckedElasticsearchExceptionin the following cases:- an
IOExceptionis usually thrown in case of failing to parse the REST response in the high-level REST client, the request times out or similar cases where there is no response coming back from the Elasticsearch server - an
ElasticsearchExceptionis usually thrown in case where the server returns a 4xx or 5xx error code. The high-level client then tries to parse the response body error details into a generic ElasticsearchException and suppresses the originalResponseException
-
-
Constructor Summary
Constructors Modifier Constructor Description RestHighLevelClient(RestClientBuilder restClientBuilder)Creates aRestHighLevelClientgiven the low levelRestClientBuilderthat allows to build theRestClientto be used to perform requests.protectedRestHighLevelClient(RestClientBuilder restClientBuilder, java.util.List<NamedXContentRegistry.Entry> namedXContentEntries)Creates aRestHighLevelClientgiven the low levelRestClientBuilderthat allows to build theRestClientto be used to perform requests and parsers for custom response sections added to Elasticsearch through plugins.protectedRestHighLevelClient(RestClient restClient, CheckedConsumer<RestClient,java.io.IOException> doClose, java.util.List<NamedXContentRegistry.Entry> namedXContentEntries)Creates aRestHighLevelClientgiven the low levelRestClientthat it should use to perform requests and a list of entries that allow to parse custom response sections added to Elasticsearch through plugins.
-
Method Summary
Modifier and Type Method Description BulkResponsebulk(BulkRequest bulkRequest, RequestOptions options)Executes a bulk request using the Bulk API.voidbulkAsync(BulkRequest bulkRequest, RequestOptions options, ActionListener<BulkResponse> listener)Asynchronously executes a bulk request using the Bulk API.CcrClientccr()Provides methods for accessing the Elastic Licensed CCR APIs that are shipped with the Elastic Stack distribution of Elasticsearch.ClearScrollResponseclearScroll(ClearScrollRequest clearScrollRequest, RequestOptions options)Clears one or more scroll ids using the Clear Scroll API.voidclearScrollAsync(ClearScrollRequest clearScrollRequest, RequestOptions options, ActionListener<ClearScrollResponse> listener)Asynchronously clears one or more scroll ids using the Clear Scroll API.voidclose()ClusterClientcluster()Provides aClusterClientwhich can be used to access the Cluster API.protected static booleanconvertExistsResponse(Response response)CountResponsecount(CountRequest countRequest, RequestOptions options)Executes a count request using the Count API.voidcountAsync(CountRequest countRequest, RequestOptions options, ActionListener<CountResponse> listener)Asynchronously executes a count request using the Count API.DeleteResponsedelete(DeleteRequest deleteRequest, RequestOptions options)Deletes a document by id using the Delete API.voiddeleteAsync(DeleteRequest deleteRequest, RequestOptions options, ActionListener<DeleteResponse> listener)Asynchronously deletes a document by id using the Delete API.BulkByScrollResponsedeleteByQuery(DeleteByQueryRequest deleteByQueryRequest, RequestOptions options)Executes a delete by query request.voiddeleteByQueryAsync(DeleteByQueryRequest deleteByQueryRequest, RequestOptions options, ActionListener<BulkByScrollResponse> listener)Asynchronously executes a delete by query request.ListTasksResponsedeleteByQueryRethrottle(RethrottleRequest rethrottleRequest, RequestOptions options)Executes a delete by query rethrottle request.voiddeleteByQueryRethrottleAsync(RethrottleRequest rethrottleRequest, RequestOptions options, ActionListener<ListTasksResponse> listener)Asynchronously execute an delete by query rethrottle request.AcknowledgedResponsedeleteScript(DeleteStoredScriptRequest request, RequestOptions options)Delete stored script by id.voiddeleteScriptAsync(DeleteStoredScriptRequest request, RequestOptions options, ActionListener<AcknowledgedResponse> listener)Asynchronously delete stored script by id.booleanexists(GetRequest getRequest, RequestOptions options)Checks for the existence of a document.voidexistsAsync(GetRequest getRequest, RequestOptions options, ActionListener<java.lang.Boolean> listener)Asynchronously checks for the existence of a document.booleanexistsSource(GetRequest getRequest, RequestOptions options)Checks for the existence of a document with a "_source" field.voidexistsSourceAsync(GetRequest getRequest, RequestOptions options, ActionListener<java.lang.Boolean> listener)Asynchronously checks for the existence of a document with a "_source" field.ExplainResponseexplain(ExplainRequest explainRequest, RequestOptions options)Executes a request using the Explain API.voidexplainAsync(ExplainRequest explainRequest, RequestOptions options, ActionListener<ExplainResponse> listener)Asynchronously executes a request using the Explain API.FieldCapabilitiesResponsefieldCaps(FieldCapabilitiesRequest fieldCapabilitiesRequest, RequestOptions options)Executes a request using the Field Capabilities API.voidfieldCapsAsync(FieldCapabilitiesRequest fieldCapabilitiesRequest, RequestOptions options, ActionListener<FieldCapabilitiesResponse> listener)Asynchronously executes a request using the Field Capabilities API.GetResponseget(GetRequest getRequest, RequestOptions options)Retrieves a document by id using the Get API.voidgetAsync(GetRequest getRequest, RequestOptions options, ActionListener<GetResponse> listener)Asynchronously retrieves a document by id using the Get API.RestClientgetLowLevelClient()Returns the low-level client that the current high-level client instance is using to perform requestsGetStoredScriptResponsegetScript(GetStoredScriptRequest request, RequestOptions options)Get stored script by id.voidgetScriptAsync(GetStoredScriptRequest request, RequestOptions options, ActionListener<GetStoredScriptResponse> listener)Asynchronously get stored script by id.GraphClientgraph()Provides methods for accessing the Elastic Licensed Graph explore API that is shipped with the default distribution of Elasticsearch.IndexResponseindex(IndexRequest indexRequest, RequestOptions options)Index a document using the Index API.voidindexAsync(IndexRequest indexRequest, RequestOptions options, ActionListener<IndexResponse> listener)Asynchronously index a document using the Index API.IndexLifecycleClientindexLifecycle()A wrapper for theRestHighLevelClientthat provides methods for accessing the Elastic Index Lifecycle APIs.IndicesClientindices()Provides anIndicesClientwhich can be used to access the Indices API.MainResponseinfo(RequestOptions options)Get the cluster info otherwise provided when sending an HTTP request to '/'IngestClientingest()Provides aIngestClientwhich can be used to access the Ingest API.LicenseClientlicense()Provides methods for accessing the Elastic Licensed Licensing APIs that are shipped with the default distribution of Elasticsearch.MachineLearningClientmachineLearning()Provides methods for accessing the Elastic Licensed Machine Learning APIs that are shipped with the Elastic Stack distribution of Elasticsearch.MultiGetResponsemget(MultiGetRequest multiGetRequest, RequestOptions options)Retrieves multiple documents by id using the Multi Get API.voidmgetAsync(MultiGetRequest multiGetRequest, RequestOptions options, ActionListener<MultiGetResponse> listener)Asynchronously retrieves multiple documents by id using the Multi Get API.MigrationClientmigration()Provides methods for accessing the Elastic Licensed Migration APIs that are shipped with the default distribution of Elasticsearch.MultiSearchResponsemsearch(MultiSearchRequest multiSearchRequest, RequestOptions options)Executes a multi search using the msearch API.voidmsearchAsync(MultiSearchRequest searchRequest, RequestOptions options, ActionListener<MultiSearchResponse> listener)Asynchronously executes a multi search using the msearch API.MultiSearchTemplateResponsemsearchTemplate(MultiSearchTemplateRequest multiSearchTemplateRequest, RequestOptions options)Executes a request using the Multi Search Template API.voidmsearchTemplateAsync(MultiSearchTemplateRequest multiSearchTemplateRequest, RequestOptions options, ActionListener<MultiSearchTemplateResponse> listener)Asynchronously executes a request using the Multi Search Template API See Multi Search Template API on elastic.co.MultiTermVectorsResponsemtermvectors(MultiTermVectorsRequest request, RequestOptions options)Calls the Multi Term Vectors API See Multi Term Vectors API on elastic.covoidmtermvectorsAsync(MultiTermVectorsRequest request, RequestOptions options, ActionListener<MultiTermVectorsResponse> listener)Asynchronously calls the Multi Term Vectors API See Multi Term Vectors API on elastic.coMultiGetResponsemultiGet(MultiGetRequest multiGetRequest, RequestOptions options)Deprecated.usemget(MultiGetRequest, RequestOptions)insteadvoidmultiGetAsync(MultiGetRequest multiGetRequest, RequestOptions options, ActionListener<MultiGetResponse> listener)Deprecated.MultiSearchResponsemultiSearch(MultiSearchRequest multiSearchRequest, RequestOptions options)Deprecated.usemsearch(MultiSearchRequest, RequestOptions)insteadvoidmultiSearchAsync(MultiSearchRequest searchRequest, RequestOptions options, ActionListener<MultiSearchResponse> listener)Deprecated.protected <Resp> RespparseEntity(org.apache.http.HttpEntity entity, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser)protected ElasticsearchStatusExceptionparseResponseException(ResponseException responseException)Converts aResponseExceptionobtained from the low level REST client into anElasticsearchException.protected <Req extends ActionRequest,Resp>
RespperformRequest(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<Response,Resp,java.io.IOException> responseConverter, java.util.Set<java.lang.Integer> ignores)Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions.protected <Req extends ActionRequest,Resp>
RespperformRequestAndParseEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, java.util.Set<java.lang.Integer> ignores)Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions.protected <Req extends Validatable,Resp>
java.util.Optional<Resp>performRequestAndParseOptionalEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser)Defines a helper method for requests that can 404 and in which case will return an empty Optional otherwise tries to parse the response bodyprotected <Req extends ActionRequest,Resp>
voidperformRequestAsync(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<Response,Resp,java.io.IOException> responseConverter, ActionListener<Resp> listener, java.util.Set<java.lang.Integer> ignores)Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions.protected <Req extends ActionRequest,Resp>
voidperformRequestAsyncAndParseEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, ActionListener<Resp> listener, java.util.Set<java.lang.Integer> ignores)Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions.protected <Req extends Validatable,Resp>
voidperformRequestAsyncAndParseOptionalEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, ActionListener<java.util.Optional<Resp>> listener)Asynchronous request which returns emptyOptionals in the case of 404s or parses entity into an Optionalbooleanping(RequestOptions options)Pings the remote Elasticsearch cluster and returns true if the ping succeeded, false otherwiseAcknowledgedResponseputScript(PutStoredScriptRequest putStoredScriptRequest, RequestOptions options)Puts an stored script using the Scripting API.voidputScriptAsync(PutStoredScriptRequest putStoredScriptRequest, RequestOptions options, ActionListener<AcknowledgedResponse> listener)Asynchronously puts an stored script using the Scripting API.RankEvalResponserankEval(RankEvalRequest rankEvalRequest, RequestOptions options)Executes a request using the Ranking Evaluation API.voidrankEvalAsync(RankEvalRequest rankEvalRequest, RequestOptions options, ActionListener<RankEvalResponse> listener)Asynchronously executes a request using the Ranking Evaluation API.BulkByScrollResponsereindex(ReindexRequest reindexRequest, RequestOptions options)Executes a reindex request.voidreindexAsync(ReindexRequest reindexRequest, RequestOptions options, ActionListener<BulkByScrollResponse> listener)Asynchronously executes a reindex request.ListTasksResponsereindexRethrottle(RethrottleRequest rethrottleRequest, RequestOptions options)Executes a reindex rethrottling request.voidreindexRethrottleAsync(RethrottleRequest rethrottleRequest, RequestOptions options, ActionListener<ListTasksResponse> listener)Executes a reindex rethrottling request.RollupClientrollup()Provides methods for accessing the Elastic Licensed Rollup APIs that are shipped with the default distribution of Elasticsearch.SearchResponsescroll(SearchScrollRequest searchScrollRequest, RequestOptions options)Executes a search using the Search Scroll API.voidscrollAsync(SearchScrollRequest searchScrollRequest, RequestOptions options, ActionListener<SearchResponse> listener)Asynchronously executes a search using the Search Scroll API.SearchResponsesearch(SearchRequest searchRequest, RequestOptions options)Executes a search request using the Search API.voidsearchAsync(SearchRequest searchRequest, RequestOptions options, ActionListener<SearchResponse> listener)Asynchronously executes a search using the Search API.SearchResponsesearchScroll(SearchScrollRequest searchScrollRequest, RequestOptions options)Deprecated.usescroll(SearchScrollRequest, RequestOptions)insteadvoidsearchScrollAsync(SearchScrollRequest searchScrollRequest, RequestOptions options, ActionListener<SearchResponse> listener)Deprecated.SearchTemplateResponsesearchTemplate(SearchTemplateRequest searchTemplateRequest, RequestOptions options)Executes a request using the Search Template API.voidsearchTemplateAsync(SearchTemplateRequest searchTemplateRequest, RequestOptions options, ActionListener<SearchTemplateResponse> listener)Asynchronously executes a request using the Search Template API.SecurityClientsecurity()Provides methods for accessing the Elastic Licensed Security APIs that are shipped with the Elastic Stack distribution of Elasticsearch.SnapshotClientsnapshot()Provides aSnapshotClientwhich can be used to access the Snapshot API.TaskSubmissionResponsesubmitReindexTask(ReindexRequest reindexRequest, RequestOptions options)Submits a reindex task.TasksClienttasks()Provides aTasksClientwhich can be used to access the Tasks API.TermVectorsResponsetermvectors(TermVectorsRequest request, RequestOptions options)Calls the Term Vectors API See Term Vectors API on elastic.covoidtermvectorsAsync(TermVectorsRequest request, RequestOptions options, ActionListener<TermVectorsResponse> listener)Asynchronously calls the Term Vectors API See Term Vectors API on elastic.coUpdateResponseupdate(UpdateRequest updateRequest, RequestOptions options)Updates a document using the Update API.voidupdateAsync(UpdateRequest updateRequest, RequestOptions options, ActionListener<UpdateResponse> listener)Asynchronously updates a document using the Update API.BulkByScrollResponseupdateByQuery(UpdateByQueryRequest updateByQueryRequest, RequestOptions options)Executes a update by query request.voidupdateByQueryAsync(UpdateByQueryRequest updateByQueryRequest, RequestOptions options, ActionListener<BulkByScrollResponse> listener)Asynchronously executes an update by query request.ListTasksResponseupdateByQueryRethrottle(RethrottleRequest rethrottleRequest, RequestOptions options)Executes a update by query rethrottle request.voidupdateByQueryRethrottleAsync(RethrottleRequest rethrottleRequest, RequestOptions options, ActionListener<ListTasksResponse> listener)Asynchronously execute an update by query rethrottle request.WatcherClientwatcher()Provides methods for accessing the Elastic Licensed Watcher APIs that are shipped with the default distribution of Elasticsearch.XPackClientxpack()Provides methods for accessing the Elastic Licensed X-Pack Info and Usage APIs that are shipped with the default distribution of Elasticsearch.
-
-
-
Constructor Detail
-
RestHighLevelClient
public RestHighLevelClient(RestClientBuilder restClientBuilder)
Creates aRestHighLevelClientgiven the low levelRestClientBuilderthat allows to build theRestClientto be used to perform requests.
-
RestHighLevelClient
protected RestHighLevelClient(RestClientBuilder restClientBuilder, java.util.List<NamedXContentRegistry.Entry> namedXContentEntries)
Creates aRestHighLevelClientgiven the low levelRestClientBuilderthat allows to build theRestClientto be used to perform requests and parsers for custom response sections added to Elasticsearch through plugins.
-
RestHighLevelClient
protected RestHighLevelClient(RestClient restClient, CheckedConsumer<RestClient,java.io.IOException> doClose, java.util.List<NamedXContentRegistry.Entry> namedXContentEntries)
Creates aRestHighLevelClientgiven the low levelRestClientthat it should use to perform requests and a list of entries that allow to parse custom response sections added to Elasticsearch through plugins. This constructor can be called by subclasses in case an externally created low-level REST client needs to be provided. The consumer argument allows to control what needs to be done when theclose()method is called. Also subclasses can provide parsers for custom response sections added to Elasticsearch through plugins.
-
-
Method Detail
-
getLowLevelClient
public final RestClient getLowLevelClient()
Returns the low-level client that the current high-level client instance is using to perform requests
-
close
public final void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
indices
public final IndicesClient indices()
Provides anIndicesClientwhich can be used to access the Indices API. See Indices API on elastic.co
-
cluster
public final ClusterClient cluster()
Provides aClusterClientwhich can be used to access the Cluster API. See Cluster API on elastic.co
-
ingest
public final IngestClient ingest()
Provides aIngestClientwhich can be used to access the Ingest API. See Ingest API on elastic.co
-
snapshot
public final SnapshotClient snapshot()
Provides aSnapshotClientwhich can be used to access the Snapshot API. See Snapshot API on elastic.co
-
rollup
public RollupClient rollup()
Provides methods for accessing the Elastic Licensed Rollup APIs that are shipped with the default distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Watcher APIs on elastic.co for more information.
-
ccr
public final CcrClient ccr()
Provides methods for accessing the Elastic Licensed CCR APIs that are shipped with the Elastic Stack distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the CCR APIs on elastic.co for more information.
- Returns:
- the client wrapper for making CCR API calls
-
tasks
public final TasksClient tasks()
Provides aTasksClientwhich can be used to access the Tasks API. See Task Management API on elastic.co
-
xpack
public final XPackClient xpack()
Provides methods for accessing the Elastic Licensed X-Pack Info and Usage APIs that are shipped with the default distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Info APIs on elastic.co for more information.
-
watcher
public WatcherClient watcher()
Provides methods for accessing the Elastic Licensed Watcher APIs that are shipped with the default distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Watcher APIs on elastic.co for more information.
-
graph
public GraphClient graph()
Provides methods for accessing the Elastic Licensed Graph explore API that is shipped with the default distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Graph API on elastic.co for more information.
-
license
public LicenseClient license()
Provides methods for accessing the Elastic Licensed Licensing APIs that are shipped with the default distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Licensing APIs on elastic.co for more information.
-
indexLifecycle
public IndexLifecycleClient indexLifecycle()
A wrapper for theRestHighLevelClientthat provides methods for accessing the Elastic Index Lifecycle APIs.See the X-Pack APIs on elastic.co for more information.
-
migration
public MigrationClient migration()
Provides methods for accessing the Elastic Licensed Migration APIs that are shipped with the default distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Migration APIs on elastic.co for more information.
-
machineLearning
public MachineLearningClient machineLearning()
Provides methods for accessing the Elastic Licensed Machine Learning APIs that are shipped with the Elastic Stack distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Machine Learning APIs on elastic.co for more information.
- Returns:
- the client wrapper for making Machine Learning API calls
-
security
public SecurityClient security()
Provides methods for accessing the Elastic Licensed Security APIs that are shipped with the Elastic Stack distribution of Elasticsearch. All of these APIs will 404 if run against the OSS distribution of Elasticsearch.See the Security APIs on elastic.co for more information.
- Returns:
- the client wrapper for making Security API calls
-
bulk
public final BulkResponse bulk(BulkRequest bulkRequest, RequestOptions options) throws java.io.IOException
Executes a bulk request using the Bulk API. See Bulk API on elastic.co- Parameters:
bulkRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
bulkAsync
public final void bulkAsync(BulkRequest bulkRequest, RequestOptions options, ActionListener<BulkResponse> listener)
Asynchronously executes a bulk request using the Bulk API. See Bulk API on elastic.co- Parameters:
bulkRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
reindex
public final BulkByScrollResponse reindex(ReindexRequest reindexRequest, RequestOptions options) throws java.io.IOException
Executes a reindex request. See Reindex API on elastic.co- Parameters:
reindexRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
submitReindexTask
public final TaskSubmissionResponse submitReindexTask(ReindexRequest reindexRequest, RequestOptions options) throws java.io.IOException
Submits a reindex task. See Reindex API on elastic.co- Parameters:
reindexRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the submission response
- Throws:
java.io.IOException
-
reindexAsync
public final void reindexAsync(ReindexRequest reindexRequest, RequestOptions options, ActionListener<BulkByScrollResponse> listener)
Asynchronously executes a reindex request. See Reindex API on elastic.co- Parameters:
reindexRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
updateByQuery
public final BulkByScrollResponse updateByQuery(UpdateByQueryRequest updateByQueryRequest, RequestOptions options) throws java.io.IOException
Executes a update by query request. See Update By Query API on elastic.co- Parameters:
updateByQueryRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
updateByQueryAsync
public final void updateByQueryAsync(UpdateByQueryRequest updateByQueryRequest, RequestOptions options, ActionListener<BulkByScrollResponse> listener)
Asynchronously executes an update by query request. See Update By Query API on elastic.co- Parameters:
updateByQueryRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
deleteByQuery
public final BulkByScrollResponse deleteByQuery(DeleteByQueryRequest deleteByQueryRequest, RequestOptions options) throws java.io.IOException
Executes a delete by query request. See Delete By Query API on elastic.co- Parameters:
deleteByQueryRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
deleteByQueryAsync
public final void deleteByQueryAsync(DeleteByQueryRequest deleteByQueryRequest, RequestOptions options, ActionListener<BulkByScrollResponse> listener)
Asynchronously executes a delete by query request. See Delete By Query API on elastic.co- Parameters:
deleteByQueryRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
deleteByQueryRethrottle
public final ListTasksResponse deleteByQueryRethrottle(RethrottleRequest rethrottleRequest, RequestOptions options) throws java.io.IOException
Executes a delete by query rethrottle request. See Delete By Query API on elastic.co- Parameters:
rethrottleRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
deleteByQueryRethrottleAsync
public final void deleteByQueryRethrottleAsync(RethrottleRequest rethrottleRequest, RequestOptions options, ActionListener<ListTasksResponse> listener)
Asynchronously execute an delete by query rethrottle request. See Delete By Query API on elastic.co- Parameters:
rethrottleRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
updateByQueryRethrottle
public final ListTasksResponse updateByQueryRethrottle(RethrottleRequest rethrottleRequest, RequestOptions options) throws java.io.IOException
Executes a update by query rethrottle request. See Update By Query API on elastic.co- Parameters:
rethrottleRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
updateByQueryRethrottleAsync
public final void updateByQueryRethrottleAsync(RethrottleRequest rethrottleRequest, RequestOptions options, ActionListener<ListTasksResponse> listener)
Asynchronously execute an update by query rethrottle request. See Update By Query API on elastic.co- Parameters:
rethrottleRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
reindexRethrottle
public final ListTasksResponse reindexRethrottle(RethrottleRequest rethrottleRequest, RequestOptions options) throws java.io.IOException
Executes a reindex rethrottling request. See the Reindex rethrottling API on elastic.co- Parameters:
rethrottleRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
reindexRethrottleAsync
public final void reindexRethrottleAsync(RethrottleRequest rethrottleRequest, RequestOptions options, ActionListener<ListTasksResponse> listener)
Executes a reindex rethrottling request. See the Reindex rethrottling API on elastic.co- Parameters:
rethrottleRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
ping
public final boolean ping(RequestOptions options) throws java.io.IOException
Pings the remote Elasticsearch cluster and returns true if the ping succeeded, false otherwise- Parameters:
options- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
trueif the ping succeeded, false otherwise- Throws:
java.io.IOException
-
info
public final MainResponse info(RequestOptions options) throws java.io.IOException
Get the cluster info otherwise provided when sending an HTTP request to '/'- Parameters:
options- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
get
public final GetResponse get(GetRequest getRequest, RequestOptions options) throws java.io.IOException
Retrieves a document by id using the Get API. See Get API on elastic.co- Parameters:
getRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
getAsync
public final void getAsync(GetRequest getRequest, RequestOptions options, ActionListener<GetResponse> listener)
Asynchronously retrieves a document by id using the Get API. See Get API on elastic.co- Parameters:
getRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
multiGet
@Deprecated public final MultiGetResponse multiGet(MultiGetRequest multiGetRequest, RequestOptions options) throws java.io.IOException
Deprecated.usemget(MultiGetRequest, RequestOptions)insteadRetrieves multiple documents by id using the Multi Get API. See Multi Get API on elastic.co- Parameters:
multiGetRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
mget
public final MultiGetResponse mget(MultiGetRequest multiGetRequest, RequestOptions options) throws java.io.IOException
Retrieves multiple documents by id using the Multi Get API. See Multi Get API on elastic.co- Parameters:
multiGetRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
multiGetAsync
@Deprecated public final void multiGetAsync(MultiGetRequest multiGetRequest, RequestOptions options, ActionListener<MultiGetResponse> listener)
Deprecated.Asynchronously retrieves multiple documents by id using the Multi Get API. See Multi Get API on elastic.co- Parameters:
multiGetRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
mgetAsync
public final void mgetAsync(MultiGetRequest multiGetRequest, RequestOptions options, ActionListener<MultiGetResponse> listener)
Asynchronously retrieves multiple documents by id using the Multi Get API. See Multi Get API on elastic.co- Parameters:
multiGetRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
exists
public final boolean exists(GetRequest getRequest, RequestOptions options) throws java.io.IOException
Checks for the existence of a document. Returns true if it exists, false otherwise. See Get API on elastic.co- Parameters:
getRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
trueif the document exists,falseotherwise- Throws:
java.io.IOException
-
existsAsync
public final void existsAsync(GetRequest getRequest, RequestOptions options, ActionListener<java.lang.Boolean> listener)
Asynchronously checks for the existence of a document. Returns true if it exists, false otherwise. See Get API on elastic.co- Parameters:
getRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
existsSource
public boolean existsSource(GetRequest getRequest, RequestOptions options) throws java.io.IOException
Checks for the existence of a document with a "_source" field. Returns true if it exists, false otherwise. See Source exists API on elastic.co- Parameters:
getRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
trueif the document and _source field exists,falseotherwise- Throws:
java.io.IOException
-
existsSourceAsync
public final void existsSourceAsync(GetRequest getRequest, RequestOptions options, ActionListener<java.lang.Boolean> listener)
Asynchronously checks for the existence of a document with a "_source" field. Returns true if it exists, false otherwise. See Source exists API on elastic.co- Parameters:
getRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
index
public final IndexResponse index(IndexRequest indexRequest, RequestOptions options) throws java.io.IOException
Index a document using the Index API. See Index API on elastic.co- Parameters:
indexRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
indexAsync
public final void indexAsync(IndexRequest indexRequest, RequestOptions options, ActionListener<IndexResponse> listener)
Asynchronously index a document using the Index API. See Index API on elastic.co- Parameters:
indexRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
count
public final CountResponse count(CountRequest countRequest, RequestOptions options) throws java.io.IOException
Executes a count request using the Count API. See Count API on elastic.co- Parameters:
countRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
countAsync
public final void countAsync(CountRequest countRequest, RequestOptions options, ActionListener<CountResponse> listener)
Asynchronously executes a count request using the Count API. See Count API on elastic.co- Parameters:
countRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
update
public final UpdateResponse update(UpdateRequest updateRequest, RequestOptions options) throws java.io.IOException
Updates a document using the Update API. See Update API on elastic.co- Parameters:
updateRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
updateAsync
public final void updateAsync(UpdateRequest updateRequest, RequestOptions options, ActionListener<UpdateResponse> listener)
Asynchronously updates a document using the Update API. See Update API on elastic.co- Parameters:
updateRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
delete
public final DeleteResponse delete(DeleteRequest deleteRequest, RequestOptions options) throws java.io.IOException
Deletes a document by id using the Delete API. See Delete API on elastic.co- Parameters:
deleteRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
deleteAsync
public final void deleteAsync(DeleteRequest deleteRequest, RequestOptions options, ActionListener<DeleteResponse> listener)
Asynchronously deletes a document by id using the Delete API. See Delete API on elastic.co- Parameters:
deleteRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
search
public final SearchResponse search(SearchRequest searchRequest, RequestOptions options) throws java.io.IOException
Executes a search request using the Search API. See Search API on elastic.co- Parameters:
searchRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
searchAsync
public final void searchAsync(SearchRequest searchRequest, RequestOptions options, ActionListener<SearchResponse> listener)
Asynchronously executes a search using the Search API. See Search API on elastic.co- Parameters:
searchRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
multiSearch
@Deprecated public final MultiSearchResponse multiSearch(MultiSearchRequest multiSearchRequest, RequestOptions options) throws java.io.IOException
Deprecated.usemsearch(MultiSearchRequest, RequestOptions)insteadExecutes a multi search using the msearch API. See Multi search API on elastic.co- Parameters:
multiSearchRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
msearch
public final MultiSearchResponse msearch(MultiSearchRequest multiSearchRequest, RequestOptions options) throws java.io.IOException
Executes a multi search using the msearch API. See Multi search API on elastic.co- Parameters:
multiSearchRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
multiSearchAsync
@Deprecated public final void multiSearchAsync(MultiSearchRequest searchRequest, RequestOptions options, ActionListener<MultiSearchResponse> listener)
Deprecated.Asynchronously executes a multi search using the msearch API. See Multi search API on elastic.co- Parameters:
searchRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
msearchAsync
public final void msearchAsync(MultiSearchRequest searchRequest, RequestOptions options, ActionListener<MultiSearchResponse> listener)
Asynchronously executes a multi search using the msearch API. See Multi search API on elastic.co- Parameters:
searchRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
searchScroll
@Deprecated public final SearchResponse searchScroll(SearchScrollRequest searchScrollRequest, RequestOptions options) throws java.io.IOException
Deprecated.usescroll(SearchScrollRequest, RequestOptions)insteadExecutes a search using the Search Scroll API. See Search Scroll API on elastic.co- Parameters:
searchScrollRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
scroll
public final SearchResponse scroll(SearchScrollRequest searchScrollRequest, RequestOptions options) throws java.io.IOException
Executes a search using the Search Scroll API. See Search Scroll API on elastic.co- Parameters:
searchScrollRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
searchScrollAsync
@Deprecated public final void searchScrollAsync(SearchScrollRequest searchScrollRequest, RequestOptions options, ActionListener<SearchResponse> listener)
Deprecated.Asynchronously executes a search using the Search Scroll API. See Search Scroll API on elastic.co- Parameters:
searchScrollRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
scrollAsync
public final void scrollAsync(SearchScrollRequest searchScrollRequest, RequestOptions options, ActionListener<SearchResponse> listener)
Asynchronously executes a search using the Search Scroll API. See Search Scroll API on elastic.co- Parameters:
searchScrollRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
clearScroll
public final ClearScrollResponse clearScroll(ClearScrollRequest clearScrollRequest, RequestOptions options) throws java.io.IOException
Clears one or more scroll ids using the Clear Scroll API. See Clear Scroll API on elastic.co- Parameters:
clearScrollRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
clearScrollAsync
public final void clearScrollAsync(ClearScrollRequest clearScrollRequest, RequestOptions options, ActionListener<ClearScrollResponse> listener)
Asynchronously clears one or more scroll ids using the Clear Scroll API. See Clear Scroll API on elastic.co- Parameters:
clearScrollRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
searchTemplate
public final SearchTemplateResponse searchTemplate(SearchTemplateRequest searchTemplateRequest, RequestOptions options) throws java.io.IOException
Executes a request using the Search Template API. See Search Template API on elastic.co.- Parameters:
searchTemplateRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
searchTemplateAsync
public final void searchTemplateAsync(SearchTemplateRequest searchTemplateRequest, RequestOptions options, ActionListener<SearchTemplateResponse> listener)
Asynchronously executes a request using the Search Template API. See Search Template API on elastic.co.
-
explain
public final ExplainResponse explain(ExplainRequest explainRequest, RequestOptions options) throws java.io.IOException
Executes a request using the Explain API. See Explain API on elastic.co- Parameters:
explainRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
explainAsync
public final void explainAsync(ExplainRequest explainRequest, RequestOptions options, ActionListener<ExplainResponse> listener)
Asynchronously executes a request using the Explain API. See Explain API on elastic.co- Parameters:
explainRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
termvectors
public final TermVectorsResponse termvectors(TermVectorsRequest request, RequestOptions options) throws java.io.IOException
Calls the Term Vectors API See Term Vectors API on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Throws:
java.io.IOException
-
termvectorsAsync
public final void termvectorsAsync(TermVectorsRequest request, RequestOptions options, ActionListener<TermVectorsResponse> listener)
Asynchronously calls the Term Vectors API See Term Vectors API on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
mtermvectors
public final MultiTermVectorsResponse mtermvectors(MultiTermVectorsRequest request, RequestOptions options) throws java.io.IOException
Calls the Multi Term Vectors API See Multi Term Vectors API on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Throws:
java.io.IOException
-
mtermvectorsAsync
public final void mtermvectorsAsync(MultiTermVectorsRequest request, RequestOptions options, ActionListener<MultiTermVectorsResponse> listener)
Asynchronously calls the Multi Term Vectors API See Multi Term Vectors API on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
rankEval
public final RankEvalResponse rankEval(RankEvalRequest rankEvalRequest, RequestOptions options) throws java.io.IOException
Executes a request using the Ranking Evaluation API. See Ranking Evaluation API on elastic.co- Parameters:
rankEvalRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
msearchTemplate
public final MultiSearchTemplateResponse msearchTemplate(MultiSearchTemplateRequest multiSearchTemplateRequest, RequestOptions options) throws java.io.IOException
Executes a request using the Multi Search Template API. See Multi Search Template API on elastic.co.- Throws:
java.io.IOException
-
msearchTemplateAsync
public final void msearchTemplateAsync(MultiSearchTemplateRequest multiSearchTemplateRequest, RequestOptions options, ActionListener<MultiSearchTemplateResponse> listener)
Asynchronously executes a request using the Multi Search Template API See Multi Search Template API on elastic.co.
-
rankEvalAsync
public final void rankEvalAsync(RankEvalRequest rankEvalRequest, RequestOptions options, ActionListener<RankEvalResponse> listener)
Asynchronously executes a request using the Ranking Evaluation API. See Ranking Evaluation API on elastic.co- Parameters:
rankEvalRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
fieldCaps
public final FieldCapabilitiesResponse fieldCaps(FieldCapabilitiesRequest fieldCapabilitiesRequest, RequestOptions options) throws java.io.IOException
Executes a request using the Field Capabilities API. See Field Capabilities API on elastic.co.- Parameters:
fieldCapabilitiesRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
getScript
public GetStoredScriptResponse getScript(GetStoredScriptRequest request, RequestOptions options) throws java.io.IOException
Get stored script by id. See How to use scripts on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
getScriptAsync
public void getScriptAsync(GetStoredScriptRequest request, RequestOptions options, ActionListener<GetStoredScriptResponse> listener)
Asynchronously get stored script by id. See How to use scripts on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
deleteScript
public AcknowledgedResponse deleteScript(DeleteStoredScriptRequest request, RequestOptions options) throws java.io.IOException
Delete stored script by id. See How to use scripts on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
deleteScriptAsync
public void deleteScriptAsync(DeleteStoredScriptRequest request, RequestOptions options, ActionListener<AcknowledgedResponse> listener)
Asynchronously delete stored script by id. See How to use scripts on elastic.co- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
putScript
public AcknowledgedResponse putScript(PutStoredScriptRequest putStoredScriptRequest, RequestOptions options) throws java.io.IOException
Puts an stored script using the Scripting API. See Scripting API on elastic.co- Parameters:
putStoredScriptRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException
-
putScriptAsync
public void putScriptAsync(PutStoredScriptRequest putStoredScriptRequest, RequestOptions options, ActionListener<AcknowledgedResponse> listener)
Asynchronously puts an stored script using the Scripting API. See Scripting API on elastic.co- Parameters:
putStoredScriptRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
fieldCapsAsync
public final void fieldCapsAsync(FieldCapabilitiesRequest fieldCapabilitiesRequest, RequestOptions options, ActionListener<FieldCapabilitiesResponse> listener)
Asynchronously executes a request using the Field Capabilities API. See Field Capabilities API on elastic.co.- Parameters:
fieldCapabilitiesRequest- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion
-
performRequestAndParseEntity
@Deprecated protected final <Req extends ActionRequest,Resp> Resp performRequestAndParseEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, java.util.Set<java.lang.Integer> ignores) throws java.io.IOException
Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions. The Validation layer has been added to the ReST client, and requests should extendValidatableinstead ofActionRequest.- Throws:
java.io.IOException
-
performRequestAndParseEntity
protected final <Req extends Validatable,Resp> Resp performRequestAndParseEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, java.util.Set<java.lang.Integer> ignores) throws java.io.IOException
Defines a helper method for performing a request and then parsing the returned entity using the provided entityParser.- Throws:
java.io.IOException
-
performRequest
@Deprecated protected final <Req extends ActionRequest,Resp> Resp performRequest(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<Response,Resp,java.io.IOException> responseConverter, java.util.Set<java.lang.Integer> ignores) throws java.io.IOException
Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions. The Validation layer has been added to the ReST client, and requests should extendValidatableinstead ofActionRequest.- Throws:
java.io.IOException
-
performRequest
protected final <Req extends Validatable,Resp> Resp performRequest(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<Response,Resp,java.io.IOException> responseConverter, java.util.Set<java.lang.Integer> ignores) throws java.io.IOException
Defines a helper method for performing a request.- Throws:
java.io.IOException
-
performRequestAndParseOptionalEntity
protected final <Req extends Validatable,Resp> java.util.Optional<Resp> performRequestAndParseOptionalEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser) throws java.io.IOException
Defines a helper method for requests that can 404 and in which case will return an empty Optional otherwise tries to parse the response body- Throws:
java.io.IOException
-
performRequestAsyncAndParseEntity
@Deprecated protected final <Req extends ActionRequest,Resp> void performRequestAsyncAndParseEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, ActionListener<Resp> listener, java.util.Set<java.lang.Integer> ignores)
Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions. The Validation layer has been added to the ReST client, and requests should extendValidatableinstead ofActionRequest.
-
performRequestAsyncAndParseEntity
protected final <Req extends Validatable,Resp> void performRequestAsyncAndParseEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, ActionListener<Resp> listener, java.util.Set<java.lang.Integer> ignores)
Defines a helper method for asynchronously performing a request.
-
performRequestAsync
@Deprecated protected final <Req extends ActionRequest,Resp> void performRequestAsync(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<Response,Resp,java.io.IOException> responseConverter, ActionListener<Resp> listener, java.util.Set<java.lang.Integer> ignores)
Deprecated.If creating a new HLRC ReST API call, consider creating new actions instead of reusing server actions. The Validation layer has been added to the ReST client, and requests should extendValidatableinstead ofActionRequest.
-
performRequestAsync
protected final <Req extends Validatable,Resp> void performRequestAsync(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<Response,Resp,java.io.IOException> responseConverter, ActionListener<Resp> listener, java.util.Set<java.lang.Integer> ignores)
Defines a helper method for asynchronously performing a request.
-
performRequestAsyncAndParseOptionalEntity
protected final <Req extends Validatable,Resp> void performRequestAsyncAndParseOptionalEntity(Req request, CheckedFunction<Req,Request,java.io.IOException> requestConverter, RequestOptions options, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser, ActionListener<java.util.Optional<Resp>> listener)
Asynchronous request which returns emptyOptionals in the case of 404s or parses entity into an Optional
-
parseResponseException
protected final ElasticsearchStatusException parseResponseException(ResponseException responseException)
Converts aResponseExceptionobtained from the low level REST client into anElasticsearchException. If a response body was returned, tries to parse it as an error returned from Elasticsearch. If no response body was returned or anything goes wrong while parsing the error, returns a newElasticsearchStatusExceptionthat wraps the originalResponseException. The potential exception obtained while parsing is added to the returned exception as a suppressed exception. This method is guaranteed to not throw any exception eventually thrown while parsing.
-
parseEntity
protected final <Resp> Resp parseEntity(org.apache.http.HttpEntity entity, CheckedFunction<XContentParser,Resp,java.io.IOException> entityParser) throws java.io.IOException- Throws:
java.io.IOException
-
convertExistsResponse
protected static boolean convertExistsResponse(Response response)
-
-