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<Object, Object> cache = ignite.cache(cachename);
for (Cache.Entry<Object, Object> objectObjectEntry : cache) {
cache.remove(objectObjectEntry.getKey());
}
ignite.destroyCache(cacheName);
cache.clear() method also blocks the cache.get operations.
Is there any better method for destroying cache without blocking?
Thank you.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/