We are experiencing missing cached records if number of records exceeds certain numbers Currently actual number of records from database is 522575 (key entries). After loading to Ignite Cache, and cache size returning 522511 records, missing 64 entries. if we replace Ignite Cache with regular java cache LinkedHashMap, error is not happening? Current Cache Structure and configuration is as the following;
*CacheConfiguration<Long, ArrayList<MyPOJO>> cacheCfg = new CacheConfiguration<>(cacheName); cacheCfg.setStartSize(startSize); cacheCfg.setCacheMode(CacheMode.LOCAL); cacheCfg.setIndexedTypes(Long.class,ArrayList.class); cacheCfg.setCacheStoreFactory(FactoryBuilder.factoryOf(MyCacheLoadOnlyStore.class))* This issue is not happening with during our unit tests and also runs with lower number of records. We currently use Ignite 1.8.0 but we realized this error while using 1.5.0 version of Ignite. Any advise is really appreciated, otherwise we have to drop off using Ignite. Thanks, -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Missing-records-Ignite-cache-size-grows-tp10809.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
