/** @throws Exception If failed. */ public void testLocalIfBackupsEnabled() throws Exception { g1Cfg.setCacheConfiguration( concat(dataCaches(1024), metaCaches(), GridCacheConfiguration.class)); for (GridCacheConfiguration cc : g1Cfg.getCacheConfiguration()) { cc.setCacheMode(PARTITIONED); cc.setBackups(1); } checkGridStartFails(g1Cfg, "GGFS data cache cannot be used with backups", true); }
/** * @param cacheName Cache name. * @return Cache configuration. * @throws Exception In case of error. */ private GridCacheConfiguration cacheConfiguration(@Nullable String cacheName) throws Exception { GridCacheConfiguration cfg = defaultCacheConfiguration(); cfg.setAtomicityMode(TRANSACTIONAL); cfg.setDistributionMode(NEAR_PARTITIONED); if (cacheName == null) cfg.setCacheMode(LOCAL); else if (PARTITIONED_CACHE_NAME.equals(cacheName)) { cfg.setCacheMode(PARTITIONED); cfg.setBackups(0); } else cfg.setCacheMode(REPLICATED); cfg.setName(cacheName); cfg.setWriteSynchronizationMode( REPLICATED_ASYNC_CACHE_NAME.equals(cacheName) ? FULL_ASYNC : FULL_SYNC); return cfg; }