Need to set a FIFO eviction policy on hazelcast Map. The idea is when the heap is occupied with 90% memory, the system will start freeing up oldest data. LRU and LFU does not work and the system can fill up 90% within minutes as well while not being accessed one. Any ideas would be welcome. FYI we are using java client for hazelcast map.
Asked
Active
Viewed 225 times
1 Answers
-1
You should never have heap utilization of 90% since the GC will kick in all the time. Depending on GC combination used it should be between 50 and 70%.
In terms of Hazelcast configuration, which version do you use?

noctarius
- 5,979
- 19
- 20
-
using hazelcast 3.5.1 – rohit Dec 23 '15 at 11:52