Hey, Setting the base topology on the server's startup did the trick.
Thanks, Slava! B R, *Jose Otavio Rizzatti* Senior Software Engineer - Mobile Developer Platform +31 6 22257080 | [email protected] | uber.com On Wed, Apr 25, 2018 at 4:11 PM, slava.koptilin <[email protected]> wrote: > 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/ >
