Class ForcemergeRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.indices.ForcemergeRequest
public class ForcemergeRequest extends RequestBase
Performs the force merge operation on one or more indices.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classForcemergeRequest.BuilderBuilder forForcemergeRequest.Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>> -
Field Summary
Fields Modifier and Type Field Description static Endpoint<ForcemergeRequest,ForcemergeResponse,ErrorResponse>_ENDPOINTEndpoint "indices.forcemerge". -
Method Summary
Modifier and Type Method Description java.lang.BooleanallowNoIndices()Whether to ignore if a wildcard indices expression resolves into no concrete indices.java.util.List<ExpandWildcard>expandWildcards()Whether to expand wildcard expression to concrete indices that are open, closed or both.java.lang.Booleanflush()Specify whether the index should be flushed after performing the operation (default: true)java.lang.BooleanignoreUnavailable()Whether specified concrete indices should be ignored when unavailable (missing or closed)java.util.List<java.lang.String>index()A comma-separated list of index names; use_allor empty string to perform the operation on all indicesjava.lang.LongmaxNumSegments()The number of segments the index should be merged into (default: dynamic)static ForcemergeRequestof(java.util.function.Function<ForcemergeRequest.Builder,ObjectBuilder<ForcemergeRequest>> fn)java.lang.BooleanonlyExpungeDeletes()Specify whether the operation should only expunge deleted documentsMethods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
_ENDPOINT
Endpoint "indices.forcemerge".
-
-
Method Details
-
of
public static ForcemergeRequest of(java.util.function.Function<ForcemergeRequest.Builder,ObjectBuilder<ForcemergeRequest>> fn) -
allowNoIndices
@Nullable public final java.lang.Boolean allowNoIndices()Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes_allstring or when no indices have been specified)API name:
allow_no_indices -
expandWildcards
Whether to expand wildcard expression to concrete indices that are open, closed or both.API name:
expand_wildcards -
flush
@Nullable public final java.lang.Boolean flush()Specify whether the index should be flushed after performing the operation (default: true)API name:
flush -
index
public final java.util.List<java.lang.String> index()A comma-separated list of index names; use_allor empty string to perform the operation on all indicesAPI name:
index -
maxNumSegments
@Nullable public final java.lang.Long maxNumSegments()The number of segments the index should be merged into (default: dynamic)API name:
max_num_segments -
onlyExpungeDeletes
@Nullable public final java.lang.Boolean onlyExpungeDeletes()Specify whether the operation should only expunge deleted documentsAPI name:
only_expunge_deletes
-