Class RolloverRequest
java.lang.Object
org.elasticsearch.transport.TransportMessage
org.elasticsearch.transport.TransportRequest
org.elasticsearch.action.ActionRequest
org.elasticsearch.action.support.master.MasterNodeRequest<Request>
org.elasticsearch.action.support.master.AcknowledgedRequest<RolloverRequest>
org.elasticsearch.action.admin.indices.rollover.RolloverRequest
- All Implemented Interfaces:
IndicesRequest
,AckedRequest
,Writeable
,org.elasticsearch.common.xcontent.ToXContent
,org.elasticsearch.common.xcontent.ToXContentObject
,org.elasticsearch.core.RefCounted
,TaskAwareRequest
public class RolloverRequest
extends AcknowledgedRequest<RolloverRequest>
implements IndicesRequest, org.elasticsearch.common.xcontent.ToXContentObject
Request class to swap index under an alias or increment data stream generation upon satisfying conditions
Note: there is a new class with the same name for the Java HLRC that uses a typeless format.
Any changes done to this class should also go to that client class.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
TransportRequest.Empty
Nested classes/interfaces inherited from interface org.elasticsearch.action.IndicesRequest
IndicesRequest.Replaceable
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
Fields inherited from class org.elasticsearch.action.support.master.AcknowledgedRequest
DEFAULT_ACK_TIMEOUT, timeout
Fields inherited from class org.elasticsearch.action.support.master.MasterNodeRequest
DEFAULT_MASTER_NODE_TIMEOUT, masterNodeTimeout
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addMaxIndexAgeCondition(org.elasticsearch.core.TimeValue age)
Adds condition to check if the index is at leastage
oldvoid
addMaxIndexDocsCondition(long numDocs)
Adds condition to check if the index has at leastnumDocs
void
Adds a size-based condition to check if the index size is at leastsize
.void
Adds a size-based condition to check if the size of the largest primary shard is at leastsize
.void
dryRun(boolean dryRun)
Sets if the rollover should not be executed when conditions are metvoid
fromXContent(boolean isTypeIncluded, org.elasticsearch.common.xcontent.XContentParser parser)
Returns the innerCreateIndexRequest
.boolean
Determines whether the request should be applied to data streams.String[]
indices()
Returns the array of indices that the action relates toReturns the indices options used to resolve indices.boolean
isDryRun()
void
setNewIndexName(String newIndexName)
Sets the alias to rollover to another indexvoid
setRolloverTarget(String rolloverTarget)
Sets the rollover target to rollover to another indexvoid
setWaitForActiveShards(ActiveShardCount waitForActiveShards)
Sets the wait for active shards configuration for the rolled index that gets created.org.elasticsearch.common.xcontent.XContentBuilder
toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
validate()
void
writeTo(StreamOutput out)
Write this into the StreamOutput.Methods inherited from class org.elasticsearch.action.support.master.AcknowledgedRequest
ackTimeout, timeout, timeout, timeout
Methods inherited from class org.elasticsearch.action.support.master.MasterNodeRequest
masterNodeTimeout, masterNodeTimeout, masterNodeTimeout
Methods inherited from class org.elasticsearch.action.ActionRequest
getShouldStoreResult
Methods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTask, toString
Methods inherited from class org.elasticsearch.transport.TransportMessage
decRef, incRef, remoteAddress, remoteAddress, tryIncRef
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.cluster.ack.AckedRequest
masterNodeTimeout
Methods inherited from interface org.elasticsearch.action.IndicesRequest
allowsRemoteIndices
Methods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTask
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Constructor Details
-
RolloverRequest
- Throws:
IOException
-
RolloverRequest
-
-
Method Details
-
validate
- Specified by:
validate
in classActionRequest
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Overrides:
writeTo
in classAcknowledgedRequest<RolloverRequest>
- Throws:
IOException
-
indices
Description copied from interface:IndicesRequest
Returns the array of indices that the action relates to- Specified by:
indices
in interfaceIndicesRequest
-
indicesOptions
Description copied from interface:IndicesRequest
Returns the indices options used to resolve indices. They tell for instance whether a single index is accepted, whether an empty array will be converted to _all, and how wildcards will be expanded if needed.- Specified by:
indicesOptions
in interfaceIndicesRequest
-
includeDataStreams
public boolean includeDataStreams()Description copied from interface:IndicesRequest
Determines whether the request should be applied to data streams. Whenfalse
, none of the names or wildcard expressions inIndicesRequest.indices()
should be applied to or expanded to any data streams. All layers involved in the request's fulfillment including security, name resolution, etc., should respect this flag.- Specified by:
includeDataStreams
in interfaceIndicesRequest
-
setRolloverTarget
Sets the rollover target to rollover to another index -
setNewIndexName
Sets the alias to rollover to another index -
dryRun
public void dryRun(boolean dryRun)Sets if the rollover should not be executed when conditions are met -
setWaitForActiveShards
Sets the wait for active shards configuration for the rolled index that gets created. -
addMaxIndexAgeCondition
public void addMaxIndexAgeCondition(org.elasticsearch.core.TimeValue age)Adds condition to check if the index is at leastage
old -
addMaxIndexDocsCondition
public void addMaxIndexDocsCondition(long numDocs)Adds condition to check if the index has at leastnumDocs
-
addMaxIndexSizeCondition
Adds a size-based condition to check if the index size is at leastsize
. -
addMaxPrimaryShardSizeCondition
Adds a size-based condition to check if the size of the largest primary shard is at leastsize
. -
isDryRun
public boolean isDryRun() -
getConditions
-
getRolloverTarget
-
getNewIndexName
-
getCreateIndexRequest
Returns the innerCreateIndexRequest
. Allows to configure mappings, settings and aliases for the new index. -
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
toXContent
in interfaceorg.elasticsearch.common.xcontent.ToXContent
- Throws:
IOException
-
fromXContent
public void fromXContent(boolean isTypeIncluded, org.elasticsearch.common.xcontent.XContentParser parser) throws IOException- Throws:
IOException
-