Package org.elasticsearch.index.reindex
Class BulkByScrollResponse
java.lang.Object
org.elasticsearch.transport.TransportMessage
org.elasticsearch.transport.TransportResponse
org.elasticsearch.action.ActionResponse
org.elasticsearch.index.reindex.BulkByScrollResponse
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentFragment
public class BulkByScrollResponse extends ActionResponse implements ToXContentFragment
Response used for actions that index many documents using a scroll request.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.EmptyNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description BulkByScrollResponse(java.lang.Iterable<BulkByScrollResponse> toMerge, java.lang.String reasonCancelled)BulkByScrollResponse(StreamInput in)BulkByScrollResponse(TimeValue took, BulkByScrollTask.Status status, java.util.List<BulkItemResponse.Failure> bulkFailures, java.util.List<ScrollableHitSource.SearchFailure> searchFailures, boolean timedOut) -
Method Summary
Modifier and Type Method Description static BulkByScrollResponsefromXContent(XContentParser parser)intgetBatches()java.util.List<BulkItemResponse.Failure>getBulkFailures()All of the bulk failures.longgetBulkRetries()The number of times that the request had retry bulk actions.longgetCreated()longgetDeleted()longgetNoops()java.lang.StringgetReasonCancelled()The reason that the request was canceled or null if it hasn't been.java.util.List<ScrollableHitSource.SearchFailure>getSearchFailures()All search failures.longgetSearchRetries()The number of times that the request had retry search actions.BulkByScrollTask.StatusgetStatus()TimeValuegetTook()longgetTotal()longgetUpdated()longgetVersionConflicts()booleanisTimedOut()Did any of the sub-requests that were part of this request timeout?java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Constructor Details
-
BulkByScrollResponse
- Throws:
java.io.IOException
-
BulkByScrollResponse
public BulkByScrollResponse(TimeValue took, BulkByScrollTask.Status status, java.util.List<BulkItemResponse.Failure> bulkFailures, java.util.List<ScrollableHitSource.SearchFailure> searchFailures, boolean timedOut) -
BulkByScrollResponse
public BulkByScrollResponse(java.lang.Iterable<BulkByScrollResponse> toMerge, @Nullable java.lang.String reasonCancelled)
-
-
Method Details
-
getTook
-
getStatus
-
getCreated
public long getCreated() -
getTotal
public long getTotal() -
getDeleted
public long getDeleted() -
getUpdated
public long getUpdated() -
getBatches
public int getBatches() -
getVersionConflicts
public long getVersionConflicts() -
getNoops
public long getNoops() -
getReasonCancelled
public java.lang.String getReasonCancelled()The reason that the request was canceled or null if it hasn't been. -
getBulkRetries
public long getBulkRetries()The number of times that the request had retry bulk actions. -
getSearchRetries
public long getSearchRetries()The number of times that the request had retry search actions. -
getBulkFailures
All of the bulk failures. Version conflicts are only included if the request sets abortOnVersionConflict to true (the default). -
getSearchFailures
All search failures. -
isTimedOut
public boolean isTimedOut()Did any of the sub-requests that were part of this request timeout? -
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-