Re: ignite.destroyCache() method hangs the cluster

2017-09-11 Thread ender
Hi Mikhail, Same problem still exists in ignite ver. 2.1.0#20170720-sha1:a6ca5c8a. As a workaround, I manually clear the cache with iterating and deleting entries before destroying cache: IgniteCache cache = ignite.cache(cachename); for (Cache.Entry objectObjectEntry : cache) {

Re: ignite.destroyCache() method hangs the cluster

2017-09-13 Thread Ender
Hi Again, I've uploaded sample project on GitHub. https://github.com/enderekici/ignitetest.git Thank you. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

ignite.destroyCache() method hangs the cluster

2017-09-08 Thread Ender Ekici
Hi, We have a test machine which has 8 cores with 32Gb ram. We are using ignite 1.8.3. On ignite there is only one cache which has 10M records (db size 7Gb~ ignite cache size 14Gb~) We reload this cache with a cron scheduler.(Every night) For example: cacheName: products (alias) realCacheName: pro