Re: Apache Ignite application deploy without rebalancing

2018-04-25 Thread Pavel Kovalenko
Hello, Most probably there is no actual rebalancing started and we fire REBALANCE_STARTED event ahead of time. Could you please turn on INFO log level for Ignite classes and check that after node shutdown a message "Skipping rebalancing" appears in logs? 2018-04-25 7:55 GMT+03:00 moon-duck : > U

Re: Apache Ignite application deploy without rebalancing

2018-04-24 Thread moon-duck
Unfortunately not work T^T I did 2way like below 1. I set region name in cache configuration -> not work 2. I set DefaultDataRegionConfiguration except regionName -> not work below log is when I set DefaultDataRegionConfiguration except any other region **) when loading* 2018-04-25 13:32:44.887

Re: Apache Ignite application deploy without rebalancing

2018-04-24 Thread slava.koptilin
Hello, It seems that you have to assign your cacheы to "myName" data region as follows: config.setCacheConfiguration( new CacheConfiguration() .setName(name1) .*setDataRegionName("myName")* .setBackups(1) .setCacheMode(PARTITIONED) .setWriteSynchroni

Apache Ignite application deploy without rebalancing

2018-04-24 Thread moon-duck
Hi, I asked this question at stackoverflow. In my case, Spring Rest API embed ignite, that API is act as cache. There are only Put/Get API, and they put to /get from Ignite caches. My total Configuration like below(Java Code) IgniteConfiguration config = new IgniteConfiguration(); //discover