Hi,
You can get all caches configuration from Java API:
IgniteCache<String, Object> cache =
dr1Hub.getOrCreateCache("CACHE");
CacheConfiguration conf =
cache.getConfiguration(CacheConfiguration.class);
System.out.println("------------------------------------------------");
System.out.println("Cache name " + conf.getName());
System.out.println("Atomicity mode " + conf.getAtomicityMode());
System.out.println("Backups " + conf.getBackups());
System.out.println("------------------------------------------------");
Output:
------------------------------------------------
Cache name CACHE
Atomicity mode TRANSACTIONAL
Backups 1
------------------------------------------------
Also possible to get it from Mbeans:
1)Start jconsole
2)choose Mbeans tab
3)org.apache->id->gridname->cache_groups->cache_name->attributes
BR,
Andrei
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/