Package org.elasticsearch.discovery.zen
Class UnicastZenPing
java.lang.Object
org.elasticsearch.discovery.zen.UnicastZenPing
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,Releasable,ZenPing
public class UnicastZenPing extends java.lang.Object implements ZenPing
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classUnicastZenPing.PingingRoundstatic classUnicastZenPing.UnicastPingRequeststatic classUnicastZenPing.UnicastPingResponseNested classes/interfaces inherited from interface org.elasticsearch.discovery.zen.ZenPing
ZenPing.PingCollection, ZenPing.PingResponse -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACTION_NAMEprotected EsThreadPoolExecutorunicastZenPingExecutorService -
Constructor Summary
Constructors Constructor Description UnicastZenPing(Settings settings, ThreadPool threadPool, TransportService transportService, SeedHostsProvider seedHostsProvider, PingContextProvider contextProvider) -
Method Summary
Modifier and Type Method Description voidclearTemporalResponses()Clears the list of cached ping responses.voidclose()protected voidfinishPingingRound(UnicastZenPing.PingingRound pingingRound)protected TransportResponseHandler<UnicastZenPing.UnicastPingResponse>getPingResponseHandler(UnicastZenPing.PingingRound pingingRound, DiscoveryNode node)protected VersiongetVersion()voidping(java.util.function.Consumer<ZenPing.PingCollection> resultsConsumer, TimeValue duration)Sends three rounds of pings notifying the specifiedConsumerwhen pinging is complete.protected voidping(java.util.function.Consumer<ZenPing.PingCollection> resultsConsumer, TimeValue scheduleDuration, TimeValue requestDuration)a variant ofping(Consumer, TimeValue), but allows separating the scheduling duration from the duration used for request level time outs.protected voidsendPings(TimeValue timeout, UnicastZenPing.PingingRound pingingRound)voidstart()protected voidsubmitToExecutor(AbstractRunnable abstractRunnable)
-
Field Details
-
ACTION_NAME
public static final java.lang.String ACTION_NAME- See Also:
- Constant Field Values
-
unicastZenPingExecutorService
-
-
Constructor Details
-
UnicastZenPing
public UnicastZenPing(Settings settings, ThreadPool threadPool, TransportService transportService, SeedHostsProvider seedHostsProvider, PingContextProvider contextProvider)
-
-
Method Details
-
close
public void close()- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein interfaceReleasable
-
start
public void start() -
clearTemporalResponses
public void clearTemporalResponses()Clears the list of cached ping responses. -
ping
public void ping(java.util.function.Consumer<ZenPing.PingCollection> resultsConsumer, TimeValue duration)Sends three rounds of pings notifying the specifiedConsumerwhen pinging is complete. Pings are sent after resolving configured unicast hosts to their IP address (subject to DNS caching within the JVM). A batch of pings is sent, then another batch of pings is sent at half the specifiedTimeValue, and then another batch of pings is sent at the specifiedTimeValue. The pings that are sent carry a timeout of 1.25 times the specifiedTimeValue. When pinging each node, a connection and handshake is performed, with a connection timeout of the specifiedTimeValue. -
ping
protected void ping(java.util.function.Consumer<ZenPing.PingCollection> resultsConsumer, TimeValue scheduleDuration, TimeValue requestDuration)a variant ofping(Consumer, TimeValue), but allows separating the scheduling duration from the duration used for request level time outs. This is useful for testing -
finishPingingRound
-
sendPings
-
submitToExecutor
-
getPingResponseHandler
protected TransportResponseHandler<UnicastZenPing.UnicastPingResponse> getPingResponseHandler(UnicastZenPing.PingingRound pingingRound, DiscoveryNode node) -
getVersion
-