Hi,
I am using ignite 2.7.0, when I am trying to test write through and write
behind, I am running in to issues. when I enable write through I am able to
write to mysql database while in case of write through data is not getting
written in database. any help is appriciated
CacheConfiguration<Long, Employee> employeeCacheConfiguration = new
CacheConfiguration<>("EmployeeCache");
employeeCacheConfiguration.setIndexedTypes(Long.class,
Employee.class);
employeeCacheConfiguration.setWriteBehindEnabled(true);
// employeeCacheConfiguration.setWriteBehindFlushFrequency(1);
employeeCacheConfiguration.setWriteBehindBatchSize(1);
employeeCacheConfiguration.setWriteBehindFlushSize(1);
employeeCacheConfiguration.setReadThrough(true);
// employeeCacheConfiguration.setWriteThrough(true);
I tried various configurations such as flush frequency, batch size etc but
write behind is not working :(
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/