Package org.elasticsearch.discovery.zen
Class UnicastZenPing
java.lang.Object
org.elasticsearch.discovery.zen.UnicastZenPing
- All Implemented Interfaces:
Closeable
,AutoCloseable
,org.elasticsearch.core.Releasable
,ZenPing
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected class
static class
static class
Nested classes/interfaces inherited from interface org.elasticsearch.discovery.zen.ZenPing
ZenPing.PingCollection, ZenPing.PingResponse
-
Field Summary
-
Constructor Summary
ConstructorDescriptionUnicastZenPing(Settings settings, ThreadPool threadPool, TransportService transportService, SeedHostsProvider seedHostsProvider, PingContextProvider contextProvider)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Clears the list of cached ping responses.void
close()
protected void
finishPingingRound(UnicastZenPing.PingingRound pingingRound)
getPingResponseHandler(UnicastZenPing.PingingRound pingingRound, DiscoveryNode node)
protected Version
void
ping(Consumer<ZenPing.PingCollection> resultsConsumer, org.elasticsearch.core.TimeValue duration)
Sends three rounds of pings notifying the specifiedConsumer
when pinging is complete.protected void
ping(Consumer<ZenPing.PingCollection> resultsConsumer, org.elasticsearch.core.TimeValue scheduleDuration, org.elasticsearch.core.TimeValue requestDuration)
a variant ofping(Consumer, TimeValue)
, but allows separating the scheduling duration from the duration used for request level time outs.protected void
sendPings(org.elasticsearch.core.TimeValue timeout, UnicastZenPing.PingingRound pingingRound)
void
start()
protected void
submitToExecutor(AbstractRunnable abstractRunnable)
-
Field Details
-
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:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceorg.elasticsearch.core.Releasable
-
start
public void start() -
clearTemporalResponses
public void clearTemporalResponses()Clears the list of cached ping responses. -
ping
public void ping(Consumer<ZenPing.PingCollection> resultsConsumer, org.elasticsearch.core.TimeValue duration)Sends three rounds of pings notifying the specifiedConsumer
when 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(Consumer<ZenPing.PingCollection> resultsConsumer, org.elasticsearch.core.TimeValue scheduleDuration, org.elasticsearch.core.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
protected void sendPings(org.elasticsearch.core.TimeValue timeout, UnicastZenPing.PingingRound pingingRound) -
submitToExecutor
-
getPingResponseHandler
protected TransportResponseHandler<UnicastZenPing.UnicastPingResponse> getPingResponseHandler(UnicastZenPing.PingingRound pingingRound, DiscoveryNode node) -
getVersion
-