Class Join
java.lang.Object
org.opensearch.cluster.coordination.Join
- All Implemented Interfaces:
org.opensearch.core.common.io.stream.Writeable
Triggered by a
StartJoinRequest
, instances of this class represent join votes,
and have a source and target node. The source node is the node that provides the vote,
and the target node is the node for which this vote is cast. A node will only cast
a single vote per term, and this for a unique target node. The vote also carries
information about the current state of the node that provided the vote, so that
the receiver of the vote can determine if it has a more up-to-date state than the
source node.- Opensearch.internal:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.opensearch.core.common.io.stream.Writeable
org.opensearch.core.common.io.stream.Writeable.Reader<V>, org.opensearch.core.common.io.stream.Writeable.WriteableRegistry, org.opensearch.core.common.io.stream.Writeable.Writer<V>
-
Constructor Summary
ConstructorDescriptionJoin
(DiscoveryNode sourceNode, DiscoveryNode targetNode, long term, long lastAcceptedTerm, long lastAcceptedVersion) Join
(org.opensearch.core.common.io.stream.StreamInput in) -
Method Summary
Modifier and TypeMethodDescriptionboolean
long
long
long
getTerm()
int
hashCode()
boolean
targetMatches
(DiscoveryNode matchingNode) toString()
void
writeTo
(org.opensearch.core.common.io.stream.StreamOutput out)
-
Constructor Details
-
Join
public Join(DiscoveryNode sourceNode, DiscoveryNode targetNode, long term, long lastAcceptedTerm, long lastAcceptedVersion) -
Join
- Throws:
IOException
-
-
Method Details
-
writeTo
- Specified by:
writeTo
in interfaceorg.opensearch.core.common.io.stream.Writeable
- Throws:
IOException
-
getSourceNode
-
getTargetNode
-
targetMatches
-
getLastAcceptedVersion
public long getLastAcceptedVersion() -
getTerm
public long getTerm() -
getLastAcceptedTerm
public long getLastAcceptedTerm() -
toString
-
equals
-
hashCode
public int hashCode()
-