EVT_CACHE_REBALANCE_STARTED and EVT_CACHE_REBALANCE_STOPPED events are fired only when partitions are coming to the node
I’m trying to find out if it’s a bug, a feature, or am I doing something wrong… So, using Ignite 2.15.0, listening to the local node events in my Ignite Service: ignite.events().localListen((Event evt) -> { System.out.println(“Ignite event: ” + evt.name()); return true; }, EVT_CACHE_REBALANCE_STARTED, EVT_CACHE_REBALANCE_STOPPED, EVT_CACHE_REBALANCE_PART_UNLOADED); I have a PARTITIONED cache with backup count = … Read more