Package org.elasticsearch.index.reindex
Class BulkByScrollTask.Status
java.lang.Object
org.elasticsearch.index.reindex.BulkByScrollTask.Status
- All Implemented Interfaces:
NamedWriteable,Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject,SuccessfullyProcessed,Task.Status
- Enclosing class:
- BulkByScrollTask
public static class BulkByScrollTask.Status
extends Object
implements Task.Status, SuccessfullyProcessed
Status of the reindex, update by query, or delete by query. While in
general we allow Task.Status implementations to make
backwards incompatible changes to their
ToXContent.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent.Params)
implementations, this one has become defacto standardized because Kibana
parses it. As such, we should be very careful about removing things from
this.-
Nested Class Summary
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.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic Stringstatic Stringstatic Stringstatic Stringstatic StringXContent param name to indicate if "created" count must be included in the response.static StringXContent param name to indicate if "updated" count must be included in the response.static Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic Stringstatic StringFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionStatus(Integer sliceId, long total, long updated, long created, long deleted, int batches, long versionConflicts, long noops, long bulkRetries, long searchRetries, org.elasticsearch.core.TimeValue throttled, float requestsPerSecond, String reasonCancelled, org.elasticsearch.core.TimeValue throttledUntil)Status(List<BulkByScrollTask.StatusOrException> sliceStatuses, String reasonCancelled)Constructor merging many statuses.Status(StreamInput in) -
Method Summary
Modifier and TypeMethodDescriptionstatic voiddeclareFields(org.elasticsearch.common.xcontent.ObjectParser<? extends BulkByScrollTask.StatusBuilder,Void> parser)booleanbooleanequalsWithoutSliceStatus(Object o, boolean includeUpdated, boolean includeCreated)static BulkByScrollTask.StatusfromXContent(org.elasticsearch.common.xcontent.XContentParser parser)intNumber of scan responses this request has processed.longNumber of retries that had to be attempted due to bulk actions being rejected.longCount of documents created.longCount of successful delete operations.longgetNoops()Number of noops (skipped bulk items) as part of this request.The reason that the request was canceled or null if it hasn't been.floatThe number of requests per second to which to throttle the request.longNumber of retries that had to be attempted due to search actions being rejected.Statuses of the sub requests into which this sub-request was sliced.org.elasticsearch.core.TimeValueThe total time this request has throttled itself not including the current throttle time if it is currently sleeping.org.elasticsearch.core.TimeValueRemaining delay of any current throttle sleep or 0 if not sleeping.longgetTotal()The total number of documents this request will process.longCount of documents updated.longNumber of version conflicts this request has hit.Returns the name of the writeable objectinthashCode()static BulkByScrollTask.StatusinnerFromXContent(org.elasticsearch.common.xcontent.XContentParser parser)voidinnerToString(StringBuilder builder)org.elasticsearch.common.xcontent.XContentBuilderinnerXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)We need to write a manual parser for this because ofBulkByScrollTask.StatusOrException.toString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.index.reindex.SuccessfullyProcessed
getSuccessfullyProcessedMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Field Details
-
NAME
- See Also:
- Constant Field Values
-
INCLUDE_CREATED
XContent param name to indicate if "created" count must be included in the response.- See Also:
- Constant Field Values
-
INCLUDE_UPDATED
XContent param name to indicate if "updated" count must be included in the response.- See Also:
- Constant Field Values
-
SLICE_ID_FIELD
- See Also:
- Constant Field Values
-
TOTAL_FIELD
- See Also:
- Constant Field Values
-
UPDATED_FIELD
- See Also:
- Constant Field Values
-
CREATED_FIELD
- See Also:
- Constant Field Values
-
DELETED_FIELD
- See Also:
- Constant Field Values
-
BATCHES_FIELD
- See Also:
- Constant Field Values
-
VERSION_CONFLICTS_FIELD
- See Also:
- Constant Field Values
-
NOOPS_FIELD
- See Also:
- Constant Field Values
-
RETRIES_FIELD
- See Also:
- Constant Field Values
-
RETRIES_BULK_FIELD
- See Also:
- Constant Field Values
-
RETRIES_SEARCH_FIELD
- See Also:
- Constant Field Values
-
THROTTLED_RAW_FIELD
- See Also:
- Constant Field Values
-
THROTTLED_HR_FIELD
- See Also:
- Constant Field Values
-
REQUESTS_PER_SEC_FIELD
- See Also:
- Constant Field Values
-
CANCELED_FIELD
- See Also:
- Constant Field Values
-
THROTTLED_UNTIL_RAW_FIELD
- See Also:
- Constant Field Values
-
THROTTLED_UNTIL_HR_FIELD
- See Also:
- Constant Field Values
-
SLICES_FIELD
- See Also:
- Constant Field Values
-
FIELDS_SET
-
-
Constructor Details
-
Status
public Status(Integer sliceId, long total, long updated, long created, long deleted, int batches, long versionConflicts, long noops, long bulkRetries, long searchRetries, org.elasticsearch.core.TimeValue throttled, float requestsPerSecond, @Nullable String reasonCancelled, org.elasticsearch.core.TimeValue throttledUntil) -
Status
public Status(List<BulkByScrollTask.StatusOrException> sliceStatuses, @Nullable 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
- Throws:
IOException
-
-
Method Details
-
declareFields
public static void declareFields(org.elasticsearch.common.xcontent.ObjectParser<? extends BulkByScrollTask.StatusBuilder,Void> parser) -
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
getWriteableName
Description copied from interface:NamedWriteableReturns the name of the writeable object- Specified by:
getWriteableNamein interfaceNamedWriteable
-
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:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
IOException
-
innerXContent
public org.elasticsearch.common.xcontent.XContentBuilder innerXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOExceptionWe need to write a manual parser for this because ofBulkByScrollTask.StatusOrException. SinceBulkByScrollTask.StatusOrException.fromXContent(XContentParser)tries to peek at a field first before deciding what needs to be it cannot use anObjectParser.- Throws:
IOException
-
fromXContent
public static BulkByScrollTask.Status fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws IOException- Throws:
IOException
-
innerFromXContent
public static BulkByScrollTask.Status innerFromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws IOException- Throws:
IOException
-
toString
-
innerToString
-
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 org.elasticsearch.core.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
The reason that the request was canceled or null if it hasn't been. -
getThrottledUntil
public org.elasticsearch.core.TimeValue getThrottledUntil()Remaining delay of any current throttle sleep or 0 if not sleeping. -
getSliceStatuses
Statuses of the sub requests into which this sub-request was sliced. Empty if this request wasn't sliced into sub-requests. -
hashCode
public int hashCode() -
equalsWithoutSliceStatus
-
equals
-