Hello Jose,

It looks like you need include all nodes into the baseline topology.
It can be done via `IgniteCluster` interface as follows:
    // Connecting to the cluster.
    Ignite ignite = Ignition.start();
    // Getting all the server nodes that are *already up and running*.
    Collection<ClusterNode> nodes = ignite.cluster().forServers().nodes();
    // Setting the baseline topology that is represented by these nodes.
    ignite.cluster().setBaselineTopology(nodes);

Also, you can use command line tool (`control.sh` sript) which is shipped
with Apache Ignite.

The comprehensive explanation and examples can be found here
https://apacheignite.readme.io/docs/cluster-activation
https://cwiki.apache.org/confluence/display/IGNITE/IEP-4+Baseline+topology+for+caches

Thanks!




--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to