Class IsolatedDiscoverySpi
- java.lang.Object
-
- org.apache.ignite.spi.IgniteSpiAdapter
-
- org.apache.ignite.spi.discovery.isolated.IsolatedDiscoverySpi
-
- All Implemented Interfaces:
org.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
,DiscoverySpi
,IgniteSpi
@IgniteSpiMultipleInstancesSupport(true) @DiscoverySpiHistorySupport(true) @DiscoverySpiOrderSupport(true) public class IsolatedDiscoverySpi extends IgniteSpiAdapter implements org.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
Special discovery SPI implementation to start a single-node cluster in "isolated" mode. When used, node doesn't try to seek or communicate to other nodes that may be up and running even in the same JVM. At the same time all functions like sending discovery messages are functional with only note that no messages are sent to network but are processed by local node immediately when they are created.
-
-
Field Summary
-
Fields inherited from class org.apache.ignite.spi.IgniteSpiAdapter
ignite, igniteInstanceName, log
-
-
Constructor Summary
Constructors Constructor Description IsolatedDiscoverySpi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
allNodesSupport(org.apache.ignite.internal.IgniteFeatures feature)
void
clientReconnect()
boolean
clientReconnectSupported()
Serializable
consistentId()
Gets consistent ID.void
disconnect()
Tells discovery SPI to disconnect from topology.void
failNode(UUID nodeId, @Nullable String warning)
Initiates failure of provided node.long
getGridStartTime()
Gets start time of the very first node in the grid.ClusterNode
getLocalNode()
Gets local node.ClusterNode
getNode(UUID nodeId)
Gets node by ID.Collection<ClusterNode>
getRemoteNodes()
Gets collection of remote nodes in grid or empty collection if no remote nodes found.protected void
injectResources(Ignite ignite)
Inject ignite instance.boolean
isClientMode()
Whether or not discovery is started in client mode.boolean
knownNode(UUID nodeId)
protected void
onContextInitialized0(IgniteSpiContext spiCtx)
Method to be called in the end of onContextInitialized method.boolean
pingNode(UUID nodeId)
Pings the remote node to see if it's alive.void
resolveCommunicationFailure(ClusterNode node, Exception err)
void
sendCustomEvent(DiscoverySpiCustomMessage msg)
Sends custom message across the ring.void
setAuthenticator(DiscoverySpiNodeAuthenticator auth)
Sets discovery SPI node authenticator.void
setDataExchange(DiscoverySpiDataExchange exchange)
Sets a handler for initial data exchange between Ignite nodes.void
setInternalListener(org.apache.ignite.internal.managers.discovery.IgniteDiscoverySpiInternalListener lsnr)
For TESTING only.void
setListener(@Nullable DiscoverySpiListener lsnr)
Sets a listener for discovery events.void
setMetricsProvider(DiscoveryMetricsProvider metricsProvider)
Sets discovery metrics provider.void
setNodeAttributes(Map<String,Object> attrs, IgniteProductVersion ver)
Sets node attributes and node version which will be distributed in grid during join process.void
simulateNodeFailure()
For TESTING only.void
spiStart(@Nullable String igniteInstanceName)
This method is called to start SPI.void
spiStop()
This method is called to stop SPI.boolean
supportsCommunicationFailureResolve()
-
Methods inherited from class org.apache.ignite.spi.IgniteSpiAdapter
addTimeoutObject, assertParameter, checkConfigurationConsistency0, clientFailureDetectionTimeout, configInfo, createSpiAttributeName, failureDetectionTimeout, failureDetectionTimeoutEnabled, failureDetectionTimeoutEnabled, getConsistentAttributeNames, getExceptionRegistry, getName, getNodeAttributes, getSpiContext, ignite, initFailureDetectionTimeout, injectables, isNodeStopping, onBeforeStart, onClientDisconnected, onClientReconnected, onContextDestroyed, onContextDestroyed0, onContextInitialized, registerMBean, removeTimeoutObject, setName, started, startInfo, startStopwatch, stopInfo, unregisterMBean
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.ignite.spi.IgniteSpi
getName, getNodeAttributes, onClientDisconnected, onClientReconnected, onContextDestroyed, onContextInitialized
-
-
-
-
Method Detail
-
consistentId
public Serializable consistentId() throws IgniteSpiException
Gets consistent ID.- Specified by:
consistentId
in interfaceDiscoverySpi
- Returns:
- Consistent ID of this Ignite instance or
null
if not applicable. - Throws:
IgniteSpiException
- If failed.
-
getRemoteNodes
public Collection<ClusterNode> getRemoteNodes()
Gets collection of remote nodes in grid or empty collection if no remote nodes found.- Specified by:
getRemoteNodes
in interfaceDiscoverySpi
- Returns:
- Collection of remote nodes.
-
getLocalNode
public ClusterNode getLocalNode()
Gets local node.- Specified by:
getLocalNode
in interfaceDiscoverySpi
- Overrides:
getLocalNode
in classIgniteSpiAdapter
- Returns:
- Local node.
-
getNode
public ClusterNode getNode(UUID nodeId)
Gets node by ID.- Specified by:
getNode
in interfaceDiscoverySpi
- Parameters:
nodeId
- Node ID.- Returns:
- Node with given ID or
null
if node is not found.
-
pingNode
public boolean pingNode(UUID nodeId)
Pings the remote node to see if it's alive.- Specified by:
pingNode
in interfaceDiscoverySpi
- Parameters:
nodeId
- Node Id.- Returns:
true
if node alive,false
otherwise.
-
setNodeAttributes
public void setNodeAttributes(Map<String,Object> attrs, IgniteProductVersion ver)
Sets node attributes and node version which will be distributed in grid during join process. Note that these attributes cannot be changed and set only once. set- Specified by:
setNodeAttributes
in interfaceDiscoverySpi
- Parameters:
attrs
- Map of node attributes.ver
- Product version.
-
setListener
public void setListener(@Nullable @Nullable DiscoverySpiListener lsnr)
Sets a listener for discovery events. Refer toDiscoveryEvent
for a set of all possible discovery events.TODO: This method should be removed from public API in Apache Ignite 3.0
- Specified by:
setListener
in interfaceDiscoverySpi
- Parameters:
lsnr
- Listener to discovery events ornull
to unset the listener.
-
setDataExchange
public void setDataExchange(DiscoverySpiDataExchange exchange)
Sets a handler for initial data exchange between Ignite nodes.- Specified by:
setDataExchange
in interfaceDiscoverySpi
- Parameters:
exchange
- Discovery data exchange handler.
-
setMetricsProvider
public void setMetricsProvider(DiscoveryMetricsProvider metricsProvider)
Sets discovery metrics provider. Use metrics provided byDiscoveryMetricsProvider.metrics()
method to exchange dynamic metrics between nodes.- Specified by:
setMetricsProvider
in interfaceDiscoverySpi
- Parameters:
metricsProvider
- Provider of metrics data.
-
disconnect
public void disconnect() throws IgniteSpiException
Tells discovery SPI to disconnect from topology. This is very close to callingIgniteSpi.spiStop()
with accounting that it is not a full stop, but disconnect due to segmentation.- Specified by:
disconnect
in interfaceDiscoverySpi
- Throws:
IgniteSpiException
- If any error occurs.
-
setAuthenticator
public void setAuthenticator(DiscoverySpiNodeAuthenticator auth)
Sets discovery SPI node authenticator. This method is called before SPI start() method.- Specified by:
setAuthenticator
in interfaceDiscoverySpi
- Parameters:
auth
- Discovery SPI authenticator.
-
getGridStartTime
public long getGridStartTime()
Gets start time of the very first node in the grid. This value should be the same on all nodes in the grid and it should not change even if very first node fails of leaves grid.- Specified by:
getGridStartTime
in interfaceDiscoverySpi
- Returns:
- Start time of the first node in grid or
0
if SPI implementation does not support this method.
-
sendCustomEvent
public void sendCustomEvent(DiscoverySpiCustomMessage msg) throws IgniteException
Sends custom message across the ring.- Specified by:
sendCustomEvent
in interfaceDiscoverySpi
- Parameters:
msg
- Custom message.- Throws:
IgniteException
- if failed to sent the event message.
-
failNode
public void failNode(UUID nodeId, @Nullable @Nullable String warning)
Initiates failure of provided node.- Specified by:
failNode
in interfaceDiscoverySpi
- Parameters:
nodeId
- Node ID.warning
- Warning to be shown on all cluster nodes.
-
isClientMode
public boolean isClientMode() throws IllegalStateException
Whether or not discovery is started in client mode.- Specified by:
isClientMode
in interfaceDiscoverySpi
- Returns:
true
if node is in client mode.- Throws:
IllegalStateException
- If discovery SPI has not started.
-
spiStart
public void spiStart(@Nullable @Nullable String igniteInstanceName) throws IgniteSpiException
This method is called to start SPI. After this method returns successfully kernel assumes that SPI is fully operational.- Specified by:
spiStart
in interfaceIgniteSpi
- Parameters:
igniteInstanceName
- Name of Ignite instance this SPI is being started for (null
for default Ignite instance).- Throws:
IgniteSpiException
- Throws in case of any error during SPI start.
-
spiStop
public void spiStop() throws IgniteSpiException
This method is called to stop SPI. After this method returns kernel assumes that this SPI is finished and all resources acquired by it are released.Note that this method can be called at any point including during recovery of failed start. It should make no assumptions on what state SPI will be in when this method is called.
- Specified by:
spiStop
in interfaceIgniteSpi
- Throws:
IgniteSpiException
- Thrown in case of any error during SPI stop.
-
onContextInitialized0
protected void onContextInitialized0(IgniteSpiContext spiCtx) throws IgniteSpiException
Method to be called in the end of onContextInitialized method.- Overrides:
onContextInitialized0
in classIgniteSpiAdapter
- Parameters:
spiCtx
- SPI context.- Throws:
IgniteSpiException
- In case of errors.
-
knownNode
public boolean knownNode(UUID nodeId)
- Specified by:
knownNode
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
- Parameters:
nodeId
- Node ID.- Returns:
True
if node joining or already joined topology.
-
clientReconnectSupported
public boolean clientReconnectSupported()
- Specified by:
clientReconnectSupported
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
- Returns:
True
if SPI supports client reconnect.
-
clientReconnect
public void clientReconnect()
- Specified by:
clientReconnect
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
-
injectResources
protected void injectResources(Ignite ignite)
Inject ignite instance.- Overrides:
injectResources
in classIgniteSpiAdapter
- Parameters:
ignite
- Ignite instance.
-
allNodesSupport
public boolean allNodesSupport(org.apache.ignite.internal.IgniteFeatures feature)
- Specified by:
allNodesSupport
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
- Parameters:
feature
- Feature to check.- Returns:
true
if all nodes support the given feature.
-
simulateNodeFailure
public void simulateNodeFailure()
For TESTING only.- Specified by:
simulateNodeFailure
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
-
setInternalListener
public void setInternalListener(org.apache.ignite.internal.managers.discovery.IgniteDiscoverySpiInternalListener lsnr)
For TESTING only.- Specified by:
setInternalListener
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
- Parameters:
lsnr
- Listener.
-
supportsCommunicationFailureResolve
public boolean supportsCommunicationFailureResolve()
- Specified by:
supportsCommunicationFailureResolve
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
- Returns:
True
if supports communication error resolve.
-
resolveCommunicationFailure
public void resolveCommunicationFailure(ClusterNode node, Exception err)
- Specified by:
resolveCommunicationFailure
in interfaceorg.apache.ignite.internal.managers.discovery.IgniteDiscoverySpi
- Parameters:
node
- Problem node.err
- Connection error.
-
-