There is a known issue with cache groups which lead to
CorruptedTreeException. Try to remove
cacheCfg.setGroupName(groupName);
from your configuration. I'll check whether JIRA ticket was created or not
for this problem.

ср, 26 июн. 2019 г. в 04:17, SamsonLai <[email protected]>:

> Yes they are created using JAVA API. The JAVA version is 1.8 and please
> find
> below the code we used to create and get the caches. Thanks.
>
> private IgniteCache<?, ?> getIgniteCache(String cacheName, String
> groupName){
>         CacheConfiguration cacheCfg = new CacheConfiguration();
>         cacheCfg.setName(cacheName);
>         cacheCfg.setBackups(0);
>         cacheCfg.setCacheMode(CacheMode.REPLICATED);
>
>         cacheCfg.setGroupName(groupName);
>         cacheCfg.setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL);
>
>         return this.ignite.getOrCreateCache(cacheCfg);
> }
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Reply via email to