Class ReplicationResponse.ShardInfo

java.lang.Object
org.elasticsearch.action.support.replication.ReplicationResponse.ShardInfo
All Implemented Interfaces:
Writeable, org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContentObject
Enclosing class:
ReplicationResponse

public static class ReplicationResponse.ShardInfo extends Object implements Writeable, org.elasticsearch.xcontent.ToXContentObject
  • Constructor Details

  • Method Details

    • getTotal

      public int getTotal()
      Returns:
      the total number of shards the write should go to (replicas and primaries). This includes relocating shards, so this number can be higher than the number of shards.
    • getSuccessful

      public int getSuccessful()
      Returns:
      the total number of shards the write succeeded on (replicas and primaries). This includes relocating shards, so this number can be higher than the number of shards.
    • getFailed

      public int getFailed()
      Returns:
      The total number of replication failures.
    • getFailures

      public ReplicationResponse.ShardInfo.Failure[] getFailures()
      Returns:
      The replication failures that have been captured in the case writes have failed on replica shards.
    • status

      public RestStatus status()
    • writeTo

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

      public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException
      Specified by:
      toXContent in interface org.elasticsearch.xcontent.ToXContent
      Throws:
      IOException
    • fromXContent

      public static ReplicationResponse.ShardInfo fromXContent(org.elasticsearch.xcontent.XContentParser parser) throws IOException
      Throws:
      IOException
    • toString

      public String toString()
      Overrides:
      toString in class Object