Scott, In my thought it has to depend of a partition lose policy on cluster[1]. Because a contains of distributed collection stored in system Ignite cache, that obeys rules of all cluster caches.
[1]: https://apacheignite.readme.io/docs/partition-loss-policies On Mon, Aug 3, 2020 at 8:35 AM scottmf <[email protected]> wrote: > hi, If I setup my *Ignite Set* as specified below what will happen when a > node leaves the cluster topology forever? Will I simply lose the elements > which are stored locally - via collation = true - or will I run into > problems? > > Overall I want the all cluster nodes to be aware of all elements in the > distributed set. If a node leaves the topology i want the elements > associated with said node to simply disappear from the set. > > Will this configuration achieve that functionality? > > CollectionConfiguration cacheConfiguration = new > CollectionConfiguration(); > cacheConfiguration.setCollocated(true); > cacheConfiguration.setBackups(0); > cacheConfiguration.setGroupName("grp"); > this.countQueriesSet = ignite.set("myset", cacheConfiguration); > > > ------------------------------ > Sent from the Apache Ignite Users mailing list archive > <http://apache-ignite-users.70518.x6.nabble.com/> at Nabble.com. > -- Vladislav Pyatkov
