public class IgniteClusterAsyncImpl extends AsyncSupportAdapter<IgniteCluster> implements IgniteCluster, Externalizable
curFut| Constructor and Description |
|---|
IgniteClusterAsyncImpl()
Required by
Externalizable. |
IgniteClusterAsyncImpl(IgniteClusterImpl cluster) |
| Modifier and Type | Method and Description |
|---|---|
ClusterGroup |
forAttribute(String name,
String val)
Creates projection for nodes containing given name and value
specified in user attributes.
|
ClusterGroup |
forCacheNodes(String cacheName)
Creates projection for all nodes that have cache with specified name running.
|
ClusterGroup |
forClientNodes(String cacheName)
Creates projection for all nodes that have cache with specified name running and cache distribution mode is
CacheDistributionMode.CLIENT_ONLY or CacheDistributionMode.NEAR_ONLY. |
ClusterGroup |
forDaemons()
Gets projection consisting from the daemon nodes in this projection.
|
ClusterGroup |
forDataNodes(String cacheName)
Creates projection for all nodes that have cache with specified name running and cache distribution mode is
CacheDistributionMode.PARTITIONED_ONLY or CacheDistributionMode.NEAR_PARTITIONED. |
ClusterGroup |
forHost(ClusterNode node)
Gets grid projection consisting from the nodes in this projection residing on the
same host as given node.
|
ClusterGroup |
forLocal()
Gets monadic projection consisting from the local node.
|
ClusterGroup |
forNode(ClusterNode node,
ClusterNode... nodes)
Creates a grid projection for the given node.
|
ClusterGroup |
forNodeId(UUID id,
UUID... ids)
Creates a grid projection for a node with specified ID.
|
ClusterGroup |
forNodeIds(Collection<UUID> ids)
Creates a grid projection over nodes with specified node IDs.
|
ClusterGroup |
forNodes(Collection<? extends ClusterNode> nodes)
Creates a grid projection over a given set of nodes.
|
ClusterGroup |
forOldest()
Creates grid projection with one oldest node in the current projection.
|
ClusterGroup |
forOthers(ClusterGroup prj)
Creates a grid projection for nodes not included into given projection.
|
ClusterGroup |
forOthers(ClusterNode node,
ClusterNode... nodes)
Creates a grid projection for nodes other than given nodes.
|
ClusterGroup |
forPredicate(IgnitePredicate<ClusterNode> p)
Creates a grid projection which includes all nodes that pass the given predicate filter.
|
ClusterGroup |
forRandom()
Creates grid projection with one random node from current projection.
|
ClusterGroup |
forRemotes()
Gets grid projection consisting from the nodes in this projection excluding the local node.
|
ClusterGroup |
forStreamer(String streamerName,
String... streamerNames)
Creates projection for all nodes that have streamer with specified name running.
|
ClusterGroup |
forYoungest()
Creates grid projection with one youngest node in the current projection.
|
Ignite |
ignite()
Gets instance of grid.
|
ClusterNode |
localNode()
Gets local grid node.
|
<K> Map<ClusterNode,Collection<K>> |
mapKeysToNodes(String cacheName,
Collection<? extends K> keys)
This method provides ability to detect which cache keys are mapped to which nodes
on cache instance with given name.
|
<K> ClusterNode |
mapKeyToNode(String cacheName,
K key)
This method provides ability to detect which cache keys are mapped to which nodes
on cache instance with given name.
|
ClusterMetrics |
metrics()
Gets a metrics snapshot for this projection.
|
ClusterNode |
node()
Gets first node from the list of nodes in this projection.
|
ClusterNode |
node(UUID id)
Gets a node for given ID from this grid projection.
|
<K,V> ConcurrentMap<K,V> |
nodeLocalMap()
Gets node-local storage instance.
|
Collection<ClusterNode> |
nodes()
Gets read-only collections of nodes in this projection.
|
boolean |
pingNode(UUID nodeId)
Pings a remote node.
|
IgnitePredicate<ClusterNode> |
predicate()
Gets predicate that defines a subset of nodes for this projection.
|
void |
readExternal(ObjectInput in) |
protected Object |
readResolve() |
void |
resetMetrics()
Resets local I/O, job, and task execution metrics.
|
void |
restartNodes()
Restarts nodes satisfying optional set of predicates.
|
void |
restartNodes(Collection<UUID> ids)
Restarts nodes defined by provided IDs.
|
Collection<GridTuple3<String,Boolean,String>> |
startNodes(Collection<Map<String,Object>> hosts,
Map<String,Object> dflts,
boolean restart,
int timeout,
int maxConn)
Starts one or more nodes on remote host(s).
|
Collection<GridTuple3<String,Boolean,String>> |
startNodes(File file,
boolean restart,
int timeout,
int maxConn)
Starts one or more nodes on remote host(s).
|
void |
stopNodes()
Stops nodes satisfying optional set of predicates.
|
void |
stopNodes(Collection<UUID> ids)
Stops nodes defined by provided IDs.
|
Collection<ClusterNode> |
topology(long topVer)
Gets a topology by version.
|
long |
topologyVersion()
Gets current topology version.
|
void |
writeExternal(ObjectOutput out) |
createAsyncInstance, createFuture, future, future, isAsync, saveOrGet, withAsyncclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitwithAsyncfuture, isAsyncpublic IgniteClusterAsyncImpl()
Externalizable.public IgniteClusterAsyncImpl(IgniteClusterImpl cluster)
cluster - Cluster.public ClusterNode localNode()
localNode in interface IgniteClusterpublic ClusterGroup forLocal()
forLocal in interface IgniteClusterpublic <K,V> ConcurrentMap<K,V> nodeLocalMap()
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 ConcurrentMap and is safe for multi-threaded access.
nodeLocalMap in interface IgniteClusterpublic boolean pingNode(UUID nodeId)
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.
pingNode in interface IgniteClusternodeId - ID of a node to ping.true if node for a given ID is alive, false otherwise.DiscoverySpipublic long topologyVersion()
TcpDiscoverySpi) 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.topologyVersion in interface IgniteCluster@Nullable public Collection<ClusterNode> topology(long topVer)
null if topology history storage doesn't contain
specified topology version (history currently keeps last 1000 snapshots).topology in interface IgniteClustertopVer - Topology version.null otherwise.public <K> Map<ClusterNode,Collection<K>> mapKeysToNodes(@Nullable String cacheName, @Nullable Collection<? extends K> keys)
This method works as following:
CacheAffinityFunction is
used to determine which keys are mapped to which groups of nodes.
mapKeysToNodes in interface IgniteClustercacheName - Cache name, if null, then default cache instance is used.keys - Cache keys to map to nodes.@Nullable public <K> ClusterNode mapKeyToNode(@Nullable String cacheName, K key)
This method works as following:
CacheAffinityFunction
is returned.
mapKeyToNode in interface IgniteClustercacheName - Cache name, if null, then default cache instance is used.key - Cache key to map to a node.null if cache with given name
is not present in the grid.public Collection<GridTuple3<String,Boolean,String>> startNodes(File file, boolean restart, int timeout, int maxConn)
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).
startNodes in interface IgniteClusterfile - Configuration file.restart - Whether to stop existing nodes. If true, all existing
nodes on the host will be stopped before starting new ones. If
false, 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.public Collection<GridTuple3<String,Boolean,String>> startNodes(Collection<Map<String,Object>> hosts, @Nullable Map<String,Object> dflts, boolean restart, int timeout, int maxConn)
Each map in hosts collection
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~5 defines 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 restart flag is false,
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").
|
dflts map defines default values. They are applied to undefined parameters in
hosts collection.
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).
startNodes in interface IgniteClusterhosts - Startup parameters.dflts - Default values.restart - Whether to stop existing nodes. If true, all existing
nodes on the host will be stopped before starting new ones. If
false, 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.public void stopNodes()
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.
stopNodes in interface IgniteClusterpublic void stopNodes(Collection<UUID> 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.
stopNodes in interface IgniteClusterids - IDs defining nodes to stop.public void restartNodes()
NOTE: this command only works for grid nodes started with Ignition
ignite.sh or ignite.bat scripts.
restartNodes in interface IgniteClusterpublic void restartNodes(Collection<UUID> ids)
NOTE: this command only works for grid nodes started with Ignition
ignite.sh or ignite.bat scripts.
restartNodes in interface IgniteClusterids - IDs defining nodes to restart.public void resetMetrics()
resetMetrics in interface IgniteClusterpublic Ignite ignite()
ignite in interface ClusterGrouppublic ClusterGroup forNodes(Collection<? extends ClusterNode> nodes)
forNodes in interface ClusterGroupnodes - Collection of nodes to create a projection from.public ClusterGroup forNode(ClusterNode node, ClusterNode... nodes)
forNode in interface ClusterGroupnode - Node to get projection for.nodes - Optional additional nodes to include into projection.public ClusterGroup forOthers(ClusterNode node, ClusterNode... nodes)
forOthers in interface ClusterGroupnode - Node to exclude from new grid projection.nodes - Optional additional nodes to exclude from projection.public ClusterGroup forOthers(ClusterGroup prj)
forOthers in interface ClusterGroupprj - Projection to exclude from new grid projection.public ClusterGroup forNodeIds(Collection<UUID> ids)
forNodeIds in interface ClusterGroupids - Collection of node IDs.public ClusterGroup forNodeId(UUID id, UUID... ids)
forNodeId in interface ClusterGroupid - Node ID to get projection for.ids - Optional additional node IDs to include into projection.public ClusterGroup forPredicate(IgnitePredicate<ClusterNode> p)
forPredicate in interface ClusterGroupp - Predicate filter for nodes to include into this projection.public ClusterGroup forAttribute(String name, @Nullable String val)
User attributes for every node are optional and can be specified in
grid node configuration. See IgniteConfiguration.getUserAttributes()
for more information.
forAttribute in interface ClusterGroupname - Name of the attribute.val - Optional attribute value to match.public ClusterGroup forCacheNodes(String cacheName)
forCacheNodes in interface ClusterGroupcacheName - Cache name.public ClusterGroup forDataNodes(String cacheName)
CacheDistributionMode.PARTITIONED_ONLY or CacheDistributionMode.NEAR_PARTITIONED.forDataNodes in interface ClusterGroupcacheName - Cache name.CacheConfiguration.getDistributionMode()public ClusterGroup forClientNodes(String cacheName)
CacheDistributionMode.CLIENT_ONLY or CacheDistributionMode.NEAR_ONLY.forClientNodes in interface ClusterGroupcacheName - Cache name.CacheConfiguration.getDistributionMode()public ClusterGroup forStreamer(String streamerName, @Nullable String... streamerNames)
forStreamer in interface ClusterGroupstreamerName - Streamer name.streamerNames - Optional additional streamer names to include into projection.public ClusterGroup forRemotes()
forRemotes in interface ClusterGrouppublic ClusterGroup forHost(ClusterNode node)
forHost in interface ClusterGroupnode - Node residing on the host for which projection is created.public ClusterGroup forDaemons()
Daemon nodes are the usual grid nodes that participate in topology but not visible on the main APIs, i.e. they are not part of any projections. The only way to see daemon nodes is to use this method.
Daemon nodes are used primarily for management and monitoring functionality that is build on Ignite and needs to participate in the topology but also needs to be excluded from "normal" topology so that it won't participate in task execution or in-memory data grid storage.
forDaemons in interface ClusterGrouppublic ClusterGroup forRandom()
forRandom in interface ClusterGrouppublic ClusterGroup forOldest()
forOldest in interface ClusterGrouppublic ClusterGroup forYoungest()
forYoungest in interface ClusterGrouppublic Collection<ClusterNode> nodes()
nodes in interface ClusterGroup@Nullable public ClusterNode node(UUID id)
node in interface ClusterGroupid - Node ID.null if such node does not exist in this
projection.@Nullable public ClusterNode node()
node in interface ClusterGroupnull if projection is empty.public IgnitePredicate<ClusterNode> predicate()
predicate in interface ClusterGrouppublic ClusterMetrics metrics()
metrics in interface ClusterGrouppublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizableIOExceptionClassNotFoundExceptionpublic void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionprotected Object readResolve() throws ObjectStreamException
ObjectStreamException - If failed.
Follow @ApacheIgnite
Ignite Fabric : ver. 1.0.0-RC3 Release Date : March 24 2015