Class SubmitAsyncSearchRequest
java.lang.Object
org.elasticsearch.client.asyncsearch.SubmitAsyncSearchRequest
- All Implemented Interfaces:
Validatable
A request to track asynchronously the progress of a search against one or more indices.
-
Field Summary
FieldsFields inherited from interface org.elasticsearch.client.Validatable
EMPTY -
Constructor Summary
ConstructorsConstructorDescriptionSubmitAsyncSearchRequest(SearchSourceBuilder source, String... indices) Creates a new request -
Method Summary
Modifier and TypeMethodDescriptionbooleanGets if this request should allow partial results.Gets the number of shard results that should be reduced at once on the coordinating node.String[]Get the target indicesGet the indices Options.org.elasticsearch.core.TimeValueGet the amount of time after which the result will expire (defaults to 5 days).intReturns the number of shard requests that should be executed concurrently on a single node.Get the preference to execute the search.Gets if this request should use the request cache or not, if set.Get the routing value to control the shards that the search will be executed on.Gets if the source of theSearchSourceBuilderinitially used on this request.Get the search type to execute, defaults toSearchType.DEFAULT.org.elasticsearch.core.TimeValueGet the minimum time that the request should wait before returning a partial result (defaults to 1 second).inthashCode()Returns whether the resource resource should be kept on completion or failure (defaults to false).voidsetAllowPartialSearchResults(boolean allowPartialSearchResults) Sets if this request should allow partial results.voidsetBatchedReduceSize(int batchedReduceSize) Optional.voidsetIndicesOptions(IndicesOptions indicesOptions) Specifies what type of requested indices to ignore and how to deal with indices wildcard expressions.voidsetKeepAlive(org.elasticsearch.core.TimeValue keepAlive) Sets the amount of time after which the result will expire (defaults to 5 days).voidsetKeepOnCompletion(boolean keepOnCompletion) Determines if the resource should be kept on completion or failure (defaults to false).voidsetMaxConcurrentShardRequests(int maxConcurrentShardRequests) Sets the number of shard requests that should be executed concurrently on a single node.voidsetPreference(String preference) Sets the preference to execute the search.voidsetRequestCache(Boolean requestCache) Sets if this request should use the request cache or not, assuming that it can (for example, if "now" is used, it will never be cached).voidsetRouting(String routing) Set the routing value to control the shards that the search will be executed on.voidsetRoutings(String... routings) Set the routing values to control the shards that the search will be executed on.voidsetSearchType(SearchType searchType) The search type to execute, defaults toSearchType.DEFAULT.voidsetWaitForCompletionTimeout(org.elasticsearch.core.TimeValue waitForCompletionTimeout) Sets the minimum time that the request should wait before returning a partial result (defaults to 1 second).validate()Perform validation.
-
Field Details
-
MIN_KEEP_ALIVE
public static long MIN_KEEP_ALIVE
-
-
Constructor Details
-
SubmitAsyncSearchRequest
Creates a new request
-
-
Method Details
-
getIndices
Get the target indices -
getWaitForCompletionTimeout
public org.elasticsearch.core.TimeValue getWaitForCompletionTimeout()Get the minimum time that the request should wait before returning a partial result (defaults to 1 second). -
setWaitForCompletionTimeout
public void setWaitForCompletionTimeout(org.elasticsearch.core.TimeValue waitForCompletionTimeout) Sets the minimum time that the request should wait before returning a partial result (defaults to 1 second). -
isKeepOnCompletion
Returns whether the resource resource should be kept on completion or failure (defaults to false). -
setKeepOnCompletion
public void setKeepOnCompletion(boolean keepOnCompletion) Determines if the resource should be kept on completion or failure (defaults to false). -
getKeepAlive
public org.elasticsearch.core.TimeValue getKeepAlive()Get the amount of time after which the result will expire (defaults to 5 days). -
setKeepAlive
public void setKeepAlive(org.elasticsearch.core.TimeValue keepAlive) Sets the amount of time after which the result will expire (defaults to 5 days). -
setRouting
Set the routing value to control the shards that the search will be executed on. A comma separated list of routing values to control the shards the search will be executed on. -
setRoutings
Set the routing values to control the shards that the search will be executed on. -
getRouting
Get the routing value to control the shards that the search will be executed on. -
setPreference
Sets the preference to execute the search. Defaults to randomize across shards. Can be set to_localto prefer local shards or a custom value, which guarantees that the same order will be used across different requests. -
getPreference
Get the preference to execute the search. -
setIndicesOptions
Specifies what type of requested indices to ignore and how to deal with indices wildcard expressions. -
getIndicesOptions
Get the indices Options. -
setSearchType
The search type to execute, defaults toSearchType.DEFAULT. -
getSearchType
Get the search type to execute, defaults toSearchType.DEFAULT. -
setAllowPartialSearchResults
public void setAllowPartialSearchResults(boolean allowPartialSearchResults) Sets if this request should allow partial results. (If method is not called, will default to the cluster level setting). -
getAllowPartialSearchResults
Gets if this request should allow partial results. -
setBatchedReduceSize
public void setBatchedReduceSize(int batchedReduceSize) Optional. Sets 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 5. -
getBatchedReduceSize
Gets the number of shard results that should be reduced at once on the coordinating node. Returnsnullif unset. -
setRequestCache
Sets if this request should use the request cache or not, assuming that it can (for example, if "now" is used, it will never be cached). By default (if not set) this is turned on forSubmitAsyncSearchRequest. -
getRequestCache
Gets if this request should use the request cache or not, if set. This defaults to `true` on the server side if unset in the client. -
getMaxConcurrentShardRequests
public int getMaxConcurrentShardRequests()Returns the number of shard requests that should be executed concurrently on a single node. The default is5. -
setMaxConcurrentShardRequests
public void setMaxConcurrentShardRequests(int maxConcurrentShardRequests) Sets the number of shard requests that should be executed concurrently on a single node. The default is5. -
getSearchSource
Gets if the source of theSearchSourceBuilderinitially used on this request. -
validate
Description copied from interface:ValidatablePerform validation. This method does not have to be overridden in the event that no validation needs to be done, or the validation was done during object construction time. AValidationExceptionthat is not null is assumed to contain validation errors and will be thrown.- Specified by:
validatein interfaceValidatable- Returns:
- An
OptionalValidationExceptionthat contains a list of validation errors.
-
equals
-
hashCode
public int hashCode()
-