I am storing entries in IgniteCache, and After each time interval (lets say 1 Hr), entries stored in that Hour should get Evicted and Stored to Hbase. How can I achieve this?
I tried as follows.
setExpiryPolicyFactory(CreatedExpiryPolicy.factoryOf(Duration.ONE_HOUR));
But this evicts entries one by one, after 1 Hour when particular entry was inserted, I want Bulk eviction and those evicted entries will be stored in HBASE.