I have posted this earlier but did not get any response, hence trying one
more time.


Have an application where the writes happens mostly from one node and 
reads/compute happens on all the nodes. The problem that I have is that the 
data is not getting distributed across nodes meaning the disk on the node 
where writes are happening is getting filled and disk is running out of 
space where as other nodes are disks are almost 99% empty and no data is 
getting written there. 

Here is the cache configuration: 

                        CacheConfiguration<String, String> cacheConfig = new 
CacheConfiguration<String, String>(); 
                        cacheConfig.setCacheMode(CacheMode.PARTITIONED); 
                       
cacheConfig.setRebalanceMode(CacheRebalanceMode.ASYNC); 
                        cacheConfig.setRebalanceDelay(120000); 
                        cacheConfig.setName("eventCache-"+
System.getProperty(RUN_ID) +"-"+ 
tenantId); 
                        cacheConfig.setBackups(0); 
                       
cacheConfig.setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL); 
                
cacheConfig.setWriteSynchronizationMode(CacheWriteSynchronizationMode.FULL_SYNC);
 


Any pointers?? 

Thanx and Regards, 
KR Kumar 



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to