When an object is fetched from the persistence store by Ignite's cache using CacheStore, its backup copy is not created.
Can someone tell me how that back up works in Ignite for above scenario?
My Configuration:
- Use cluster of two Ignite servers.
- Cache properties.
cacheConfig.setWriteThrough(true);
cacheConfig.setReadThrough(true);
cacheConfig.setBackups(1);
cacheConfig.setWriteBehindEnabled(true);
cacheConfig.setWriteSynchronizationMode(CacheWriteSynchronizationMode.FULL_ASYNC);
cacheConfig.setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL);
cacheConfig.setCacheStoreFactory(FactoryBuilder.factoryOf(ObjectLoader.class));