Class ResizeRequest
- 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<ResizeRequest>
-
- org.elasticsearch.action.admin.indices.shrink.ResizeRequest
-
- All Implemented Interfaces:
IndicesRequest,AckedRequest,Writeable,ToXContent,ToXContentObject,TaskAwareRequest
public class ResizeRequest extends AcknowledgedRequest<ResizeRequest> implements IndicesRequest, ToXContentObject
Request class to shrink an index into a single shard
-
-
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
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
Fields Modifier and Type Field Description static ObjectParser<ResizeRequest,java.lang.Void>PARSER-
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
Constructors Constructor Description ResizeRequest(java.lang.String targetIndex, java.lang.String sourceIndex)ResizeRequest(StreamInput in)
-
Method Summary
Modifier and Type Method Description voidfromXContent(XContentParser parser)java.lang.BooleangetCopySettings()ResizeTypegetResizeType()Returns the type of the resize operationjava.lang.StringgetSourceIndex()Returns the source index nameCreateIndexRequestgetTargetIndexRequest()Returns theCreateIndexRequestfor the shrink indexjava.lang.String[]indices()Returns the array of indices that the action relates toIndicesOptionsindicesOptions()Returns the indices options used to resolve indices.voidsetCopySettings(java.lang.Boolean copySettings)voidsetResizeType(ResizeType type)The type of the resize operationvoidsetSourceIndex(java.lang.String index)voidsetTargetIndex(CreateIndexRequest targetIndexRequest)voidsetWaitForActiveShards(int waitForActiveShards)A shortcut forsetWaitForActiveShards(ActiveShardCount)where the numerical shard count is passed in, instead of having to first callActiveShardCount.from(int)to get the ActiveShardCount.voidsetWaitForActiveShards(ActiveShardCount waitForActiveShards)Sets the number of shard copies that should be active for creation of the new shrunken index to return.XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)ActionRequestValidationExceptionvalidate()voidwriteTo(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
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.cluster.ack.AckedRequest
masterNodeTimeout
-
Methods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTask
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
PARSER
public static final ObjectParser<ResizeRequest,java.lang.Void> PARSER
-
-
Constructor Detail
-
ResizeRequest
public ResizeRequest(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
ResizeRequest
public ResizeRequest(java.lang.String targetIndex, java.lang.String sourceIndex)
-
-
Method Detail
-
validate
public ActionRequestValidationException validate()
- Specified by:
validatein classActionRequest
-
setSourceIndex
public void setSourceIndex(java.lang.String index)
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classAcknowledgedRequest<ResizeRequest>- Throws:
java.io.IOException
-
indices
public java.lang.String[] indices()
Description copied from interface:IndicesRequestReturns the array of indices that the action relates to- Specified by:
indicesin interfaceIndicesRequest
-
indicesOptions
public IndicesOptions indicesOptions()
Description copied from interface:IndicesRequestReturns 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:
indicesOptionsin interfaceIndicesRequest
-
setTargetIndex
public void setTargetIndex(CreateIndexRequest targetIndexRequest)
-
getTargetIndexRequest
public CreateIndexRequest getTargetIndexRequest()
Returns theCreateIndexRequestfor the shrink index
-
getSourceIndex
public java.lang.String getSourceIndex()
Returns the source index name
-
setWaitForActiveShards
public void setWaitForActiveShards(ActiveShardCount waitForActiveShards)
Sets the number of shard copies that should be active for creation of the new shrunken index to return. Defaults toActiveShardCount.DEFAULT, which will wait for one shard copy (the primary) to become active. Set this value toActiveShardCount.ALLto wait for all shards (primary and all replicas) to be active before returning. Otherwise, useActiveShardCount.from(int)to set this value to any non-negative integer, up to the number of copies per shard (number of replicas + 1), to wait for the desired amount of shard copies to become active before returning. Index creation will only wait up until the timeout value for the number of shard copies to be active before returning. CheckShardsAcknowledgedResponse.isShardsAcknowledged()to determine if the requisite shard copies were all started before returning or timing out.- Parameters:
waitForActiveShards- number of active shard copies to wait on
-
setWaitForActiveShards
public void setWaitForActiveShards(int waitForActiveShards)
A shortcut forsetWaitForActiveShards(ActiveShardCount)where the numerical shard count is passed in, instead of having to first callActiveShardCount.from(int)to get the ActiveShardCount.
-
setResizeType
public void setResizeType(ResizeType type)
The type of the resize operation
-
getResizeType
public ResizeType getResizeType()
Returns the type of the resize operation
-
setCopySettings
public void setCopySettings(java.lang.Boolean copySettings)
-
getCopySettings
public java.lang.Boolean getCopySettings()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public void fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-