Class ScrollableHitSource.SearchFailure

java.lang.Object
org.elasticsearch.index.reindex.ScrollableHitSource.SearchFailure
All Implemented Interfaces:
Writeable, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentObject
Enclosing class:
ScrollableHitSource

public static class ScrollableHitSource.SearchFailure
extends java.lang.Object
implements Writeable, org.elasticsearch.common.xcontent.ToXContentObject
A failure during search. Like ShardSearchFailure but useful for reindex from remote as well.
  • 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.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.String INDEX_FIELD  
    static java.lang.String NODE_FIELD  
    static java.lang.String REASON_FIELD  
    static java.lang.String SHARD_FIELD  
    static java.lang.String STATUS_FIELD  

    Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent

    EMPTY_PARAMS
  • Constructor Summary

    Constructors
    Constructor Description
    SearchFailure​(java.lang.Throwable reason)
    Build a search failure that doesn't have shard information available.
    SearchFailure​(java.lang.Throwable reason, java.lang.String index, java.lang.Integer shardId, java.lang.String nodeId)  
    SearchFailure​(java.lang.Throwable reason, java.lang.String index, java.lang.Integer shardId, java.lang.String nodeId, RestStatus status)  
    SearchFailure​(StreamInput in)
    Read from a stream.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getIndex()  
    java.lang.String getNodeId()  
    java.lang.Throwable getReason()  
    java.lang.Integer getShardId()  
    RestStatus getStatus()  
    java.lang.String toString()  
    org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)  
    void writeTo​(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.common.xcontent.ToXContentObject

    isFragment
  • Field Details

  • Constructor Details

    • SearchFailure

      public SearchFailure​(java.lang.Throwable reason, @Nullable java.lang.String index, @Nullable java.lang.Integer shardId, @Nullable java.lang.String nodeId)
    • SearchFailure

      public SearchFailure​(java.lang.Throwable reason, @Nullable java.lang.String index, @Nullable java.lang.Integer shardId, @Nullable java.lang.String nodeId, RestStatus status)
    • SearchFailure

      public SearchFailure​(java.lang.Throwable reason)
      Build a search failure that doesn't have shard information available.
    • SearchFailure

      public SearchFailure​(StreamInput in) throws java.io.IOException
      Read from a stream.
      Throws:
      java.io.IOException
  • Method Details

    • writeTo

      public void writeTo​(StreamOutput out) throws java.io.IOException
      Description copied from interface: Writeable
      Write this into the StreamOutput.
      Specified by:
      writeTo in interface Writeable
      Throws:
      java.io.IOException
    • getIndex

      public java.lang.String getIndex()
    • getShardId

      public java.lang.Integer getShardId()
    • getStatus

      public RestStatus getStatus()
    • getReason

      public java.lang.Throwable getReason()
    • getNodeId

      @Nullable public java.lang.String getNodeId()
    • toXContent

      public org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException
      Specified by:
      toXContent in interface org.elasticsearch.common.xcontent.ToXContent
      Throws:
      java.io.IOException
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object