Class IgniteClusterImpl
- java.lang.Object
-
- org.apache.ignite.internal.cluster.ClusterGroupAdapter
-
- org.apache.ignite.internal.cluster.IgniteClusterImpl
-
- All Implemented Interfaces:
Externalizable,Serializable,ClusterGroup,IgniteCluster,ClusterGroupEx,IgniteClusterEx,IgniteAsyncSupport
public class IgniteClusterImpl extends ClusterGroupAdapter implements IgniteClusterEx
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.ignite.internal.cluster.ClusterGroupAdapter
ctx, p
-
Fields inherited from interface org.apache.ignite.IgniteCluster
MAX_TAG_LENGTH
-
-
Constructor Summary
Constructors Constructor Description IgniteClusterImpl()Required byExternalizable.IgniteClusterImpl(GridKernalContext ctx)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanactive()Checks Ignite grid is active or not active.voidactive(boolean active)Changes Ignite grid state to active or inactive.voidbaselineAutoAdjustEnabled(boolean baselineAutoAdjustEnabled)IgniteFuture<?>baselineAutoAdjustEnabledAsync(boolean baselineAutoAdjustEnabled)BaselineAutoAdjustStatusbaselineAutoAdjustStatus()longbaselineAutoAdjustTimeout()voidbaselineAutoAdjustTimeout(long baselineAutoAdjustTimeout)IgniteFuture<?>baselineAutoAdjustTimeoutAsync(long baselineAutoAdjustTimeout)voidclearNodeMap()Clears node local map.voidclearStatistics(Collection<String> caches)Clear statistics for caches cluster wide.@Nullable IgniteFuture<?>clientReconnectFuture()If local client node disconnected from cluster returns future that will be completed when client reconnected.voidclientReconnectFuture(IgniteFuture<?> reconnecFut)@Nullable Collection<BaselineNode>currentBaselineTopology()Gets current baseline topology.booleandisableWal(String cacheName)Disables write-ahead logging for specified cache.voidenableStatistics(Collection<String> caches, boolean enabled)Enables/disables statistics for caches cluster wide.booleanenableWal(String cacheName)Enables write-ahead logging for specified cache.ClusterGroupforLocal()Gets a cluster group consisting from the local node.<R> IgniteFuture<R>future()Gets and resets future for previous asynchronous operation.UUIDid()Cluster ID is a unique identifier automatically generated when cluster starts up for the very first time.booleanisAsync()booleanisBaselineAutoAdjustEnabled()booleanisWalEnabled(String cacheName)Checks if write-ahead logging is enabled for specified cache.ClusterNodelocalNode()Gets local grid node.<K,V>
ConcurrentMap<K,V>nodeLocalMap()Gets node-local storage instance.booleanpingNode(UUID nodeId)Pings a remote node.voidreadExternal(ObjectInput in)protected ObjectreadResolve()Reconstructs object on unmarshalling.voidresetMetrics()Resets local I/O, job, and task execution metrics.voidrestartNodes()Restarts nodes satisfying optional set of predicates.voidrestartNodes(Collection<UUID> ids)Restarts nodes defined by provided IDs.voidsetBaselineTopology(long topVer)Sets baseline topology constructed from the cluster topology of the given version (the method succeeds only if the cluster topology has not changed).voidsetBaselineTopology(Collection<? extends BaselineNode> baselineTop)Sets baseline topology.voidsetId(UUID id)Not part of public API.voidsetTag(@Nullable String tag)Not part of public API.voidsetTxTimeoutOnPartitionMapExchange(long timeout)Sets transaction timeout on partition map exchange.ShutdownPolicyshutdownPolicy()Returns a policy of shutdown or default valueIgniteConfiguration.DFLT_SHUTDOWN_POLICYif the property is not set.voidshutdownPolicy(ShutdownPolicy shutdownPolicy)Sets a shutdown policy on a cluster.voidstart()Invoke when metastorage ready to start component.Collection<ClusterStartNodeResult>startNodes(File file, boolean restart, int timeout, int maxConn)Starts one or more nodes on remote host(s).Collection<ClusterStartNodeResult>startNodes(Collection<Map<String,Object>> hosts, @Nullable Map<String,Object> dflts, boolean restart, int timeout, int maxConn)Starts one or more nodes on remote host(s).IgniteFuture<Collection<ClusterStartNodeResult>>startNodesAsync(File file, boolean restart, int timeout, int maxConn)Starts one or more nodes on remote host(s) asynchronously.IgniteFuture<Collection<ClusterStartNodeResult>>startNodesAsync(Collection<Map<String,Object>> hosts, @Nullable Map<String,Object> dflts, boolean restart, int timeout, int maxConn)Starts one or more nodes on remote host(s) asynchronously.ClusterStatestate()Gets current cluster state.voidstate(ClusterState newState)Changes current cluster state to givennewStatecluster state.voidstate(ClusterState newState, boolean force)Changes current cluster state to givennewStatecluster state.voidstopNodes()Stops nodes satisfying optional set of predicates.voidstopNodes(Collection<UUID> ids)Stops nodes defined by provided IDs.Stringtag()User-defined tag describing the cluster.voidtag(String tag)Enables user to add a specific label to the cluster e.g. to describe purpose of the cluster or any its characteristics.Collection<ClusterNode>topology(long topVer)Gets a topology by version.longtopologyVersion()Gets current topology version.StringtoString()voidtriggerBaselineAutoAdjust(long topVer)Sets baseline topology constructed from the cluster topology of the given version (the method succeeds only if the cluster topology has not changed).IgniteClusterwithAsync()Gets instance of this component with asynchronous mode enabled.voidwriteExternal(ObjectOutput out)-
Methods inherited from class org.apache.ignite.internal.cluster.ClusterGroupAdapter
compute, ensureLastTopologyState, events, executorService, forAttribute, forCacheNodes, forCacheNodes, forClientNodes, forClients, forDataNodes, forHost, forHost, forNode, forNodeId, forNodeIds, forNodes, forOldest, forOthers, forOthers, forPredicate, forRandom, forRemotes, forServers, forYoungest, guard, hostNames, ignite, message, metrics, node, node, nodes, predicate, resetState, resolveCurrentNodes, services, setKernalContext, unguard
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.ignite.cluster.ClusterGroup
forAttribute, forCacheNodes, forClientNodes, forClients, forDataNodes, forHost, forHost, forNode, forNodeId, forNodeIds, forNodes, forOldest, forOthers, forOthers, forPredicate, forRandom, forRemotes, forServers, forYoungest, hostNames, ignite, metrics, node, node, nodes, predicate
-
Methods inherited from interface org.apache.ignite.internal.cluster.ClusterGroupEx
forCacheNodes
-
-
-
-
Constructor Detail
-
IgniteClusterImpl
public IgniteClusterImpl()
Required byExternalizable.
-
IgniteClusterImpl
public IgniteClusterImpl(GridKernalContext ctx)
- Parameters:
ctx- Kernal context.
-
-
Method Detail
-
start
public void start()
Invoke when metastorage ready to start component.
-
forLocal
public ClusterGroup forLocal()
Gets a cluster group consisting from the local node.- Specified by:
forLocalin interfaceIgniteCluster- Returns:
- Cluster group consisting from the local node.
-
localNode
public ClusterNode localNode()
Gets local grid node.- Specified by:
localNodein interfaceIgniteCluster- Returns:
- Local grid node.
-
nodeLocalMap
public <K,V> ConcurrentMap<K,V> nodeLocalMap()
Gets node-local storage instance.Node-local values are similar to thread locals in a way that these values are not distributed and kept only on local node (similar like thread local values are attached to the current thread only). Node-local values are used primarily by closures executed from the remote nodes to keep intermediate state on the local node between executions.
There's only one instance of node local storage per local node. Node local storage is based on
ConcurrentMapand is safe for multi-threaded access.- Specified by:
nodeLocalMapin interfaceIgniteCluster- Type Parameters:
K- Type of keys in the node local map.V- Type of mapped values in the node local map.- Returns:
- Node local storage instance for the local node.
-
pingNode
public boolean pingNode(UUID nodeId)
Pings a remote node.Discovery SPIs usually have some latency in discovering failed nodes. Hence, communication to remote nodes may fail at times if an attempt was made to establish communication with a failed node. This method can be used to check if communication has failed due to node failure or due to some other reason.
- Specified by:
pingNodein interfaceIgniteCluster- Parameters:
nodeId- ID of a node to ping.- Returns:
trueif node for a given ID is alive,falseotherwise.- See Also:
DiscoverySpi
-
topologyVersion
public long topologyVersion()
Gets current topology version. In case of TCP discovery (seeTcpDiscoverySpi) topology versions are sequential - they start from'1'and get incremented every time whenever a node joins or leaves. For other discovery SPIs topology versions may not be (and likely are not) sequential.- Specified by:
topologyVersionin interfaceIgniteCluster- Returns:
- Current topology version.
-
topology
public Collection<ClusterNode> topology(long topVer) throws UnsupportedOperationException
Gets a topology by version. Returnsnullif topology history storage doesn't contain specified topology version (history currently keeps last1000snapshots).- Specified by:
topologyin interfaceIgniteCluster- Parameters:
topVer- Topology version.- Returns:
- Collection of grid nodes which represented by specified topology version,
if it is present in history storage,
nullotherwise. - Throws:
UnsupportedOperationException- If underlying SPI implementation does not support topology history. Currently onlyTcpDiscoverySpisupports topology history.
-
startNodes
public Collection<ClusterStartNodeResult> startNodes(File file, boolean restart, int timeout, int maxConn) throws IgniteException
Starts one or more nodes on remote host(s).This method takes INI file which defines all startup parameters. It can contain one or more sections, each for a host or for range of hosts (note that they must have different names) and a special '
defaults' section with default values. They are applied to undefined parameters in host's sections.Returned result is collection of tuples. Each tuple corresponds to one node start attempt and contains hostname, success flag and error message if attempt was not successful. Note that successful attempt doesn't mean that node was actually started and joined topology. For large topologies (> 100s nodes) it can take over 10 minutes for all nodes to start. See individual node logs for details.
Supports asynchronous execution (see
IgniteAsyncSupport).- Specified by:
startNodesin interfaceIgniteCluster- Parameters:
file- Configuration file.restart- Whether to stop existing nodes. Iftrue, all existing nodes on the host will be stopped before starting new ones. Iffalse, nodes will be started only if there are less nodes on the host than expected.timeout- Connection timeout.maxConn- Number of parallel SSH connections to one host.- Returns:
- Collection of start node results, each containing host name, result (success or failure) and error message (if any).
- Throws:
IgniteException- In case of error.
-
startNodesAsync
public IgniteFuture<Collection<ClusterStartNodeResult>> startNodesAsync(File file, boolean restart, int timeout, int maxConn) throws IgniteException
Starts one or more nodes on remote host(s) asynchronously.This method takes INI file which defines all startup parameters. It can contain one or more sections, each for a host or for range of hosts (note that they must have different names) and a special '
defaults' section with default values. They are applied to undefined parameters in host's sections.Completed future contains collection of tuples. Each tuple corresponds to one node start attempt and contains hostname, success flag and error message if attempt was not successful. Note that successful attempt doesn't mean that node was actually started and joined topology. For large topologies (> 100s nodes) it can take over 10 minutes for all nodes to start. See individual node logs for details.
- Specified by:
startNodesAsyncin interfaceIgniteCluster- Parameters:
file- Configuration file.restart- Whether to stop existing nodes. Iftrue, all existing nodes on the host will be stopped before starting new ones. Iffalse, nodes will be started only if there are less nodes on the host than expected.timeout- Connection timeout.maxConn- Number of parallel SSH connections to one host.- Returns:
- a Future representing pending completion of the starting nodes.
- Throws:
IgniteException- In case of error.
-
startNodes
public Collection<ClusterStartNodeResult> startNodes(Collection<Map<String,Object>> hosts, @Nullable @Nullable Map<String,Object> dflts, boolean restart, int timeout, int maxConn) throws IgniteException
Starts one or more nodes on remote host(s).Each map in
hostscollection defines startup parameters for one host or for a range of hosts. The following parameters are supported:Name Type Description host String Hostname (required). Can define several hosts if their IPs are sequential. E.g., 10.0.0.1~5defines range of five IP addresses. Other parameters are applied to all hosts equally.port Integer Port number (default is 22).uname String Username (if not defined, current local username will be used). passwd String Password (if not defined, private key file must be defined). key File Private key file (if not defined, password must be defined). nodes Integer Expected number of nodes on the host. If some nodes are started already, then only remaining nodes will be started. If current count of nodes is equal to this number, and restartflag isfalse, then nothing will happen.igniteHome String Path to Ignite installation folder. If not defined, IGNITE_HOME environment variable must be set on remote hosts. cfg String Path to configuration file (relative to igniteHome).script String Custom startup script file name and path (relative to igniteHome). You can also specify a space-separated list of parameters in the same string (for example:"bin/my-custom-script.sh -v").dfltsmap defines default values. They are applied to undefined parameters inhostscollection.Returned result is collection of tuples. Each tuple corresponds to one node start attempt and contains hostname, success flag and error message if attempt was not successful. Note that successful attempt doesn't mean that node was actually started and joined topology. For large topologies (> 100s nodes) it can take over 10 minutes for all nodes to start. See individual node logs for details.
Supports asynchronous execution (see
IgniteAsyncSupport).- Specified by:
startNodesin interfaceIgniteCluster- Parameters:
hosts- Startup parameters.dflts- Default values.restart- Whether to stop existing nodes. Iftrue, all existing nodes on the host will be stopped before starting new ones. Iffalse, nodes will be started only if there are less nodes on the host than expected.timeout- Connection timeout in milliseconds.maxConn- Number of parallel SSH connections to one host.- Returns:
- Collection of start node results, each containing host name, result (success or failure) and error message (if any).
- Throws:
IgniteException- In case of error.
-
startNodesAsync
public IgniteFuture<Collection<ClusterStartNodeResult>> startNodesAsync(Collection<Map<String,Object>> hosts, @Nullable @Nullable Map<String,Object> dflts, boolean restart, int timeout, int maxConn) throws IgniteException
Starts one or more nodes on remote host(s) asynchronously.Each map in
hostscollection defines startup parameters for one host or for a range of hosts. The following parameters are supported:Name Type Description host String Hostname (required). Can define several hosts if their IPs are sequential. E.g., 10.0.0.1~5defines range of five IP addresses. Other parameters are applied to all hosts equally.port Integer Port number (default is 22).uname String Username (if not defined, current local username will be used). passwd String Password (if not defined, private key file must be defined). key File Private key file (if not defined, password must be defined). nodes Integer Expected number of nodes on the host. If some nodes are started already, then only remaining nodes will be started. If current count of nodes is equal to this number, and restartflag isfalse, then nothing will happen.igniteHome String Path to Ignite installation folder. If not defined, IGNITE_HOME environment variable must be set on remote hosts. cfg String Path to configuration file (relative to igniteHome).script String Custom startup script file name and path (relative to igniteHome). You can also specify a space-separated list of parameters in the same string (for example:"bin/my-custom-script.sh -v").dfltsmap defines default values. They are applied to undefined parameters inhostscollection.Completed future contains collection of tuples. Each tuple corresponds to one node start attempt and contains hostname, success flag and error message if attempt was not successful. Note that successful attempt doesn't mean that node was actually started and joined topology. For large topologies (> 100s nodes) it can take over 10 minutes for all nodes to start. See individual node logs for details.
- Specified by:
startNodesAsyncin interfaceIgniteCluster- Parameters:
hosts- Startup parameters.dflts- Default values.restart- Whether to stop existing nodes. Iftrue, all existing nodes on the host will be stopped before starting new ones. Iffalse, nodes will be started only if there are less nodes on the host than expected.timeout- Connection timeout in milliseconds.maxConn- Number of parallel SSH connections to one host.- Returns:
- a Future representing pending completion of the starting nodes.
- Throws:
IgniteException- In case of error.
-
stopNodes
public void stopNodes() throws IgniteExceptionStops nodes satisfying optional set of predicates.NOTE:
System.exit(Ignition.KILL_EXIT_CODE)will be executed on each stopping node. If you have other applications running in the same JVM along with Ignition, those applications will be stopped as well.- Specified by:
stopNodesin interfaceIgniteCluster- Throws:
IgniteException- In case of error.
-
stopNodes
public void stopNodes(Collection<UUID> ids) throws IgniteException
Stops nodes defined by provided IDs.NOTE:
System.exit(Ignition.KILL_EXIT_CODE)will be executed on each stopping node. If you have other applications running in the same JVM along with Ignition, those applications will be stopped as well.- Specified by:
stopNodesin interfaceIgniteCluster- Parameters:
ids- IDs defining nodes to stop.- Throws:
IgniteException- In case of error.
-
restartNodes
public void restartNodes() throws IgniteExceptionRestarts nodes satisfying optional set of predicates.NOTE: this command only works for grid nodes started with Ignition
ignite.shorignite.batscripts.- Specified by:
restartNodesin interfaceIgniteCluster- Throws:
IgniteException- In case of error.
-
restartNodes
public void restartNodes(Collection<UUID> ids) throws IgniteException
Restarts nodes defined by provided IDs.NOTE: this command only works for grid nodes started with Ignition
ignite.shorignite.batscripts.- Specified by:
restartNodesin interfaceIgniteCluster- Parameters:
ids- IDs defining nodes to restart.- Throws:
IgniteException- In case of error.
-
resetMetrics
public void resetMetrics()
Resets local I/O, job, and task execution metrics.- Specified by:
resetMetricsin interfaceIgniteCluster
-
active
public boolean active()
Checks Ignite grid is active or not active.- Specified by:
activein interfaceIgniteCluster- Returns:
Trueif grid is active.FalseIf grid is not active.
-
active
public void active(boolean active)
Changes Ignite grid state to active or inactive.NOTE: Deactivation clears in-memory caches (without persistence) including the system caches.
- Specified by:
activein interfaceIgniteCluster- Parameters:
active- IfTruestart activation process. IfFalsestart deactivation process.
-
state
public ClusterState state()
Gets current cluster state.- Specified by:
statein interfaceIgniteCluster- Returns:
- Current cluster state.
-
state
public void state(ClusterState newState) throws IgniteException
Changes current cluster state to givennewStatecluster state.NOTE: Deactivation clears in-memory caches (without persistence) including the system caches.
- Specified by:
statein interfaceIgniteCluster- Parameters:
newState- New cluster state.- Throws:
IgniteException- If there is an already started transaction or lock in the same thread.
-
state
public void state(ClusterState newState, boolean force) throws IgniteException
Changes current cluster state to givennewStatecluster state.NOTE: Deactivation clears in-memory caches (without persistence) including the system caches.
- Specified by:
statein interfaceIgniteClusterEx- Parameters:
newState- New cluster state.force- Force deactivation.- Throws:
IgniteException- If there is an already started transaction or lock in the same thread.
-
currentBaselineTopology
@Nullable public @Nullable Collection<BaselineNode> currentBaselineTopology()
Gets current baseline topology. If baseline topology was not set, will returnnull.- Specified by:
currentBaselineTopologyin interfaceIgniteCluster- Returns:
- Collection of nodes included to the current baseline topology.
-
setBaselineTopology
public void setBaselineTopology(Collection<? extends BaselineNode> baselineTop)
Sets baseline topology. The cluster must be activated for this method to be called.- Specified by:
setBaselineTopologyin interfaceIgniteCluster- Parameters:
baselineTop- A collection of nodes to be included to the baseline topology.
-
triggerBaselineAutoAdjust
public void triggerBaselineAutoAdjust(long topVer)
Sets baseline topology constructed from the cluster topology of the given version (the method succeeds only if the cluster topology has not changed). All client nodes will be filtered out of the resulting baseline.- Parameters:
topVer- Topology version to set.
-
setBaselineTopology
public void setBaselineTopology(long topVer)
Sets baseline topology constructed from the cluster topology of the given version (the method succeeds only if the cluster topology has not changed). All client nodes will be filtered out of the resulting baseline.- Specified by:
setBaselineTopologyin interfaceIgniteCluster- Parameters:
topVer- Topology version to set.
-
shutdownPolicy
public ShutdownPolicy shutdownPolicy()
Returns a policy of shutdown or default valueIgniteConfiguration.DFLT_SHUTDOWN_POLICYif the property is not set.- Specified by:
shutdownPolicyin interfaceIgniteCluster- Returns:
- Shutdown policy.
-
shutdownPolicy
public void shutdownPolicy(ShutdownPolicy shutdownPolicy)
Sets a shutdown policy on a cluster. If a policy is specified here the value will override static configuration onIgniteConfiguration.setShutdownPolicy(ShutdownPolicy)and persists to cluster meta storage.- Specified by:
shutdownPolicyin interfaceIgniteCluster- Parameters:
shutdownPolicy- Shutdown policy.
-
enableStatistics
public void enableStatistics(Collection<String> caches, boolean enabled)
Enables/disables statistics for caches cluster wide.- Specified by:
enableStatisticsin interfaceIgniteCluster- Parameters:
caches- Collection of cache names.enabled- Statistics enabled flag.
-
clearStatistics
public void clearStatistics(Collection<String> caches)
Clear statistics for caches cluster wide.- Specified by:
clearStatisticsin interfaceIgniteCluster- Parameters:
caches- Collection of cache names.
-
setTxTimeoutOnPartitionMapExchange
public void setTxTimeoutOnPartitionMapExchange(long timeout)
Sets transaction timeout on partition map exchange.- Specified by:
setTxTimeoutOnPartitionMapExchangein interfaceIgniteCluster- Parameters:
timeout- Transaction timeout on partition map exchange in milliseconds.
-
withAsync
public IgniteCluster withAsync()
Gets instance of this component with asynchronous mode enabled.- Specified by:
withAsyncin interfaceIgniteAsyncSupport- Specified by:
withAsyncin interfaceIgniteCluster- Returns:
- Instance of this component with asynchronous mode enabled.
-
enableWal
public boolean enableWal(String cacheName) throws IgniteException
Enables write-ahead logging for specified cache. Restoring crash-recovery guarantees of a previous call toIgniteCluster.disableWal(String).Internally this method will wait for all current cache operations to finish and prevent new cache operations from being executed. Then checkpoint is initiated to flush all data to disk. Control is returned to the callee when all data is persisted to disk.
WAL state can be changed only for persistent caches.
NOTE: Currently, this method should only be called on a stable topology when no nodes are leaving or joining cluster, and all baseline nodes are present. Cache may be stuck in inconsistent state due to violation of these conditions. It is advised to destroy such cache.
- Specified by:
enableWalin interfaceIgniteCluster- Parameters:
cacheName- Cache name.- Returns:
- Whether WAL enabled by this call.
- Throws:
IgniteException- If error occurs.- See Also:
IgniteCluster.disableWal(String),IgniteCluster.isWalEnabled(String)
-
disableWal
public boolean disableWal(String cacheName) throws IgniteException
Disables write-ahead logging for specified cache. When WAL is disabled, changes are not logged to disk. This significantly improves cache update speed. The drawback is absence of local crash-recovery guarantees. If node is crashed, local content of WAL-disabled cache will be cleared on restart to avoid data corruption.Internally this method will wait for all current cache operations to finish and prevent new cache operations from being executed. Then checkpoint is initiated to flush all data to disk. Control is returned to the callee when all dirty pages are prepared for checkpoint, but not necessarily flushed to disk.
WAL state can be changed only for persistent caches.
NOTE: Currently, this method should only be called on a stable topology when no nodes are leaving or joining cluster, and all baseline nodes are present. Cache may be stuck in inconsistent state due to violation of these conditions. It is advised to destroy such cache.
- Specified by:
disableWalin interfaceIgniteCluster- Parameters:
cacheName- Cache name.- Returns:
- Whether WAL disabled by this call.
- Throws:
IgniteException- If error occurs.- See Also:
IgniteCluster.enableWal(String),IgniteCluster.isWalEnabled(String)
-
isWalEnabled
public boolean isWalEnabled(String cacheName) throws IgniteException
Checks if write-ahead logging is enabled for specified cache.- Specified by:
isWalEnabledin interfaceIgniteCluster- Parameters:
cacheName- Cache name.- Returns:
Trueif WAL is enabled for cache.- Throws:
IgniteException- See Also:
IgniteCluster.disableWal(String),IgniteCluster.enableWal(String)
-
id
public UUID id()
Cluster ID is a unique identifier automatically generated when cluster starts up for the very first time. It is a cluster-wide property so all nodes of the cluster (including client nodes) return the same value. In in-memory clusters ID is generated again upon each cluster restart. In clusters running in persistent mode cluster ID is stored to disk and is used even after full cluster restart.- Specified by:
idin interfaceIgniteCluster- Returns:
- Unique cluster ID.
-
setId
public void setId(UUID id)
Not part of public API. Enables ClusterProcessor to set ID in the following cases:- For the first time on node startup.
- Set to null on client disconnect.
- Set to some not-null value on client reconnect.
- Parameters:
id- ID to set.
-
tag
public String tag()
User-defined tag describing the cluster.- Specified by:
tagin interfaceIgniteCluster- Returns:
- Current tag value same across all nodes of the cluster.
-
tag
public void tag(String tag) throws IgniteCheckedException
Enables user to add a specific label to the cluster e.g. to describe purpose of the cluster or any its characteristics. Tag is set cluster-wide, value set on one node will be distributed across all nodes (including client nodes) in the cluster. Maximum tag length is limited byIgniteCluster.MAX_TAG_LENGTHvalue.- Specified by:
tagin interfaceIgniteCluster- Parameters:
tag- New tag to be set.- Throws:
IgniteCheckedException- In case tag change is requested on inactive cluster or concurrent tag change request was completed before the current one. Also provided tag is checked for max length.
-
setTag
public void setTag(@Nullable @Nullable String tag)Not part of public API. Enables ClusterProcessor to set tag in the following cases:- For the first time on node startup.
- Set to null on client disconnect.
- Set to some not-null value on client reconnect.
- Parameters:
tag- Tag to set.
-
isBaselineAutoAdjustEnabled
public boolean isBaselineAutoAdjustEnabled()
- Specified by:
isBaselineAutoAdjustEnabledin interfaceIgniteCluster- Returns:
- Value of manual baseline control or auto adjusting baseline.
TrueIf cluster in auto-adjust.FalseIf cluster in manual.
-
baselineAutoAdjustEnabled
public void baselineAutoAdjustEnabled(boolean baselineAutoAdjustEnabled)
- Specified by:
baselineAutoAdjustEnabledin interfaceIgniteCluster- Parameters:
baselineAutoAdjustEnabled- Value of manual baseline control or auto adjusting baseline.TrueIf cluster in auto-adjust.FalseIf cluster in manuale.
-
baselineAutoAdjustEnabledAsync
public IgniteFuture<?> baselineAutoAdjustEnabledAsync(boolean baselineAutoAdjustEnabled)
- Parameters:
baselineAutoAdjustEnabled- Value of manual baseline control or auto adjusting baseline.TrueIf cluster in auto-adjust.FalseIf cluster in manuale.- Returns:
- Future for await operation completion.
-
baselineAutoAdjustTimeout
public long baselineAutoAdjustTimeout()
- Specified by:
baselineAutoAdjustTimeoutin interfaceIgniteCluster- Returns:
- Number of milliseconds to wait before the actual topology change since last server topology change (node join/left/fail).
-
baselineAutoAdjustTimeout
public void baselineAutoAdjustTimeout(long baselineAutoAdjustTimeout)
- Specified by:
baselineAutoAdjustTimeoutin interfaceIgniteCluster- Parameters:
baselineAutoAdjustTimeout- Number of milliseconds to wait before the actual topology change since last server topology change (node join/left/fail).
-
baselineAutoAdjustTimeoutAsync
public IgniteFuture<?> baselineAutoAdjustTimeoutAsync(long baselineAutoAdjustTimeout)
- Parameters:
baselineAutoAdjustTimeout- Value of time which we would wait before the actual topology change since last server topology change (node join/left/fail).- Returns:
- Future for await operation completion.
-
baselineAutoAdjustStatus
public BaselineAutoAdjustStatus baselineAutoAdjustStatus()
- Specified by:
baselineAutoAdjustStatusin interfaceIgniteCluster- Returns:
- Status of baseline auto-adjust.
-
isAsync
public boolean isAsync()
- Specified by:
isAsyncin interfaceIgniteAsyncSupport- Returns:
Trueif asynchronous mode is enabled.
-
future
public <R> IgniteFuture<R> future()
Gets and resets future for previous asynchronous operation.- Specified by:
futurein interfaceIgniteAsyncSupport- Type Parameters:
R- Type of the future result.- Returns:
- Future for previous asynchronous operation.
-
clearNodeMap
public void clearNodeMap()
Clears node local map.
-
clientReconnectFuture
public void clientReconnectFuture(IgniteFuture<?> reconnecFut)
- Parameters:
reconnecFut- Reconnect future.
-
clientReconnectFuture
@Nullable public @Nullable IgniteFuture<?> clientReconnectFuture()
If local client node disconnected from cluster returns future that will be completed when client reconnected.- Specified by:
clientReconnectFuturein interfaceIgniteCluster- Returns:
- Future that will be completed when client reconnected.
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Overrides:
readExternalin classClusterGroupAdapter- Throws:
IOExceptionClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Overrides:
writeExternalin classClusterGroupAdapter- Throws:
IOException
-
readResolve
protected Object readResolve() throws ObjectStreamException
Reconstructs object on unmarshalling.- Overrides:
readResolvein classClusterGroupAdapter- Returns:
- Reconstructed object.
- Throws:
ObjectStreamException- Thrown in case of unmarshalling error.
-
-