Package org.elasticsearch.index.reindex
Class BulkByScrollTask.Status
- java.lang.Object
-
- org.elasticsearch.index.reindex.BulkByScrollTask.Status
-
- All Implemented Interfaces:
NamedWriteable,Writeable,ToXContent,ToXContentObject,SuccessfullyProcessed,Task.Status
- Enclosing class:
- BulkByScrollTask
public static class BulkByScrollTask.Status extends java.lang.Object implements Task.Status, SuccessfullyProcessed
-
-
Nested Class Summary
-
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 java.lang.StringINCLUDE_CREATEDXContent param name to indicate if "created" count must be included in the response.static java.lang.StringINCLUDE_UPDATEDXContent param name to indicate if "updated" count must be included in the response.static java.lang.StringNAME-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Status(java.lang.Integer sliceId, long total, long updated, long created, long deleted, int batches, long versionConflicts, long noops, long bulkRetries, long searchRetries, TimeValue throttled, float requestsPerSecond, java.lang.String reasonCancelled, TimeValue throttledUntil)Status(java.util.List<BulkByScrollTask.StatusOrException> sliceStatuses, java.lang.String reasonCancelled)Constructor merging many statuses.Status(StreamInput in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBatches()Number of scan responses this request has processed.longgetBulkRetries()Number of retries that had to be attempted due to bulk actions being rejected.longgetCreated()Count of documents created.longgetDeleted()Count of successful delete operations.longgetNoops()Number of noops (skipped bulk items) as part of this request.java.lang.StringgetReasonCancelled()The reason that the request was canceled or null if it hasn't been.floatgetRequestsPerSecond()The number of requests per second to which to throttle the request.longgetSearchRetries()Number of retries that had to be attempted due to search actions being rejected.java.util.List<BulkByScrollTask.StatusOrException>getSliceStatuses()Statuses of the sub requests into which this sub-request was sliced.TimeValuegetThrottled()The total time this request has throttled itself not including the current throttle time if it is currently sleeping.TimeValuegetThrottledUntil()Remaining delay of any current throttle sleep or 0 if not sleeping.longgetTotal()The total number of documents this request will process.longgetUpdated()Count of documents updated.longgetVersionConflicts()Number of version conflicts this request has hit.java.lang.StringgetWriteableName()Returns the name of the writeable objectvoidinnerToString(java.lang.StringBuilder builder)XContentBuilderinnerXContent(XContentBuilder builder, ToXContent.Params params)java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.index.reindex.SuccessfullyProcessed
getSuccessfullyProcessed
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
INCLUDE_CREATED
public static final java.lang.String INCLUDE_CREATED
XContent param name to indicate if "created" count must be included in the response.- See Also:
- Constant Field Values
-
INCLUDE_UPDATED
public static final java.lang.String INCLUDE_UPDATED
XContent param name to indicate if "updated" count must be included in the response.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Status
public Status(java.lang.Integer sliceId, long total, long updated, long created, long deleted, int batches, long versionConflicts, long noops, long bulkRetries, long searchRetries, TimeValue throttled, float requestsPerSecond, @Nullable java.lang.String reasonCancelled, TimeValue throttledUntil)
-
Status
public Status(java.util.List<BulkByScrollTask.StatusOrException> sliceStatuses, @Nullable java.lang.String reasonCancelled)
Constructor merging many statuses.- Parameters:
sliceStatuses- Statuses of sub requests that this task was sliced into.reasonCancelled- Reason that this *this* task was cancelled. Note that each entry insliceStatusescan be cancelled independently of this task but if this task is cancelled then the workers *should* be cancelled.
-
Status
public Status(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:WriteableWrite this into the StreamOutput.
-
getWriteableName
public java.lang.String getWriteableName()
Description copied from interface:NamedWriteableReturns the name of the writeable object- Specified by:
getWriteableNamein interfaceNamedWriteable
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
innerXContent
public XContentBuilder innerXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
innerToString
public void innerToString(java.lang.StringBuilder builder)
-
getTotal
public long getTotal()
The total number of documents this request will process. 0 means we don't yet know or, possibly, there are actually 0 documents to process. Its ok that these have the same meaning because any request with 0 actual documents should be quite short lived.
-
getUpdated
public long getUpdated()
Description copied from interface:SuccessfullyProcessedCount of documents updated.- Specified by:
getUpdatedin interfaceSuccessfullyProcessed
-
getCreated
public long getCreated()
Description copied from interface:SuccessfullyProcessedCount of documents created.- Specified by:
getCreatedin interfaceSuccessfullyProcessed
-
getDeleted
public long getDeleted()
Description copied from interface:SuccessfullyProcessedCount of successful delete operations.- Specified by:
getDeletedin interfaceSuccessfullyProcessed
-
getBatches
public int getBatches()
Number of scan responses this request has processed.
-
getVersionConflicts
public long getVersionConflicts()
Number of version conflicts this request has hit.
-
getNoops
public long getNoops()
Number of noops (skipped bulk items) as part of this request.
-
getBulkRetries
public long getBulkRetries()
Number of retries that had to be attempted due to bulk actions being rejected.
-
getSearchRetries
public long getSearchRetries()
Number of retries that had to be attempted due to search actions being rejected.
-
getThrottled
public TimeValue getThrottled()
The total time this request has throttled itself not including the current throttle time if it is currently sleeping.
-
getRequestsPerSecond
public float getRequestsPerSecond()
The number of requests per second to which to throttle the request. Float.POSITIVE_INFINITY means unlimited.
-
getReasonCancelled
public java.lang.String getReasonCancelled()
The reason that the request was canceled or null if it hasn't been.
-
getThrottledUntil
public TimeValue getThrottledUntil()
Remaining delay of any current throttle sleep or 0 if not sleeping.
-
getSliceStatuses
public java.util.List<BulkByScrollTask.StatusOrException> getSliceStatuses()
Statuses of the sub requests into which this sub-request was sliced. Empty if this request wasn't sliced into sub-requests.
-
-