Class ReplicationResponse.ShardInfo.Failure
- java.lang.Object
-
- org.elasticsearch.action.support.replication.ReplicationResponse.ShardInfo.Failure
-
- All Implemented Interfaces:
ShardOperationFailedException,Streamable,ToXContent,ToXContentObject
- Enclosing class:
- ReplicationResponse.ShardInfo
public static class ReplicationResponse.ShardInfo.Failure extends java.lang.Object implements ShardOperationFailedException, ToXContentObject
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Failure(ShardId shardId, java.lang.String nodeId, java.lang.Exception cause, RestStatus status, boolean primary)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReplicationResponse.ShardInfo.FailurefromXContent(XContentParser parser)ShardIdfullShardId()java.lang.ThrowablegetCause()The cause of this failurejava.lang.Stringindex()The index the operation failed on.java.lang.StringnodeId()booleanprimary()voidreadFrom(StreamInput in)Set this object's fields from a StreamInput.java.lang.Stringreason()The reason of the failure.intshardId()The index the operation failed on.RestStatusstatus()The status of the failure.XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this object's fields to a StreamOutput.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.io.stream.Streamable
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
Failure
public Failure(ShardId shardId, @Nullable java.lang.String nodeId, java.lang.Exception cause, RestStatus status, boolean primary)
-
-
Method Detail
-
index
public java.lang.String index()
Description copied from interface:ShardOperationFailedExceptionThe index the operation failed on. Might returnnullif it can't be derived.- Specified by:
indexin interfaceShardOperationFailedException- Returns:
- On what index the failure occurred.
-
shardId
public int shardId()
Description copied from interface:ShardOperationFailedExceptionThe index the operation failed on. Might return-1if it can't be derived.- Specified by:
shardIdin interfaceShardOperationFailedException- Returns:
- On what shard id the failure occurred.
-
fullShardId
public ShardId fullShardId()
-
nodeId
@Nullable public java.lang.String nodeId()
- Returns:
- On what node the failure occurred.
-
reason
public java.lang.String reason()
Description copied from interface:ShardOperationFailedExceptionThe reason of the failure.- Specified by:
reasonin interfaceShardOperationFailedException- Returns:
- A text description of the failure
-
status
public RestStatus status()
Description copied from interface:ShardOperationFailedExceptionThe status of the failure.- Specified by:
statusin interfaceShardOperationFailedException- Returns:
- The status to report if this failure was a primary failure.
-
getCause
public java.lang.Throwable getCause()
Description copied from interface:ShardOperationFailedExceptionThe cause of this failure- Specified by:
getCausein interfaceShardOperationFailedException
-
primary
public boolean primary()
- Returns:
- Whether this failure occurred on a primary shard. (this only reports true for delete by query)
-
readFrom
public void readFrom(StreamInput in) throws java.io.IOException
Description copied from interface:StreamableSet this object's fields from a StreamInput.- Specified by:
readFromin interfaceStreamable- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:StreamableWrite this object's fields to a StreamOutput.- Specified by:
writeToin interfaceStreamable- Throws:
java.io.IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public static ReplicationResponse.ShardInfo.Failure fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-