Package org.elasticsearch.discovery.zen
Class MasterFaultDetection
- java.lang.Object
-
- org.elasticsearch.discovery.zen.FaultDetection
-
- org.elasticsearch.discovery.zen.MasterFaultDetection
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public class MasterFaultDetection extends FaultDetection
A fault detection that pings the master periodically to see if its alive.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceMasterFaultDetection.Listenerstatic classMasterFaultDetection.MasterPingRequeststatic classMasterFaultDetection.MasterPingResponseResponsestatic classMasterFaultDetection.ThisIsNotTheMasterYouAreLookingForExceptionThrown when a ping reaches the wrong node
-
Field Summary
Fields Modifier and Type Field Description static StringMASTER_PING_ACTION_NAME-
Fields inherited from class org.elasticsearch.discovery.zen.FaultDetection
clusterName, CONNECT_ON_NETWORK_DISCONNECT_SETTING, connectionListener, connectOnNetworkDisconnect, PING_INTERVAL_SETTING, PING_RETRIES_SETTING, PING_TIMEOUT_SETTING, pingInterval, pingRetryCount, pingRetryTimeout, REGISTER_CONNECTION_LISTENER_SETTING, registerConnectionListener, threadPool, transportService
-
-
Constructor Summary
Constructors Constructor Description MasterFaultDetection(Settings settings, ThreadPool threadPool, TransportService transportService, Supplier<ClusterState> clusterStateSupplier, MasterService masterService, ClusterName clusterName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddListener(MasterFaultDetection.Listener listener)voidclose()protected voidhandleTransportDisconnect(DiscoveryNode node)DiscoveryNodemasterNode()voidremoveListener(MasterFaultDetection.Listener listener)voidrestart(DiscoveryNode masterNode, String reason)voidstop(String reason)
-
-
-
Field Detail
-
MASTER_PING_ACTION_NAME
public static final String MASTER_PING_ACTION_NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MasterFaultDetection
public MasterFaultDetection(Settings settings, ThreadPool threadPool, TransportService transportService, Supplier<ClusterState> clusterStateSupplier, MasterService masterService, ClusterName clusterName)
-
-
Method Detail
-
masterNode
public DiscoveryNode masterNode()
-
addListener
public void addListener(MasterFaultDetection.Listener listener)
-
removeListener
public void removeListener(MasterFaultDetection.Listener listener)
-
restart
public void restart(DiscoveryNode masterNode, String reason)
-
stop
public void stop(String reason)
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classFaultDetection
-
handleTransportDisconnect
protected void handleTransportDisconnect(DiscoveryNode node)
-
-