I am trying to set TTL on a record in IMap which is loaded from cassandra mapStore. To achieve this I have implemented an EntryAdded and a EntryUpdated eventlistener for the IMap.But the methods aren't invoked when I read the data from mapstore and put it back to hazelcast.
Is my expectation wrong? If so then what are the possible solutions to achieve this?
Thanks
MapLoader.loadAll()
will generate he ADDED event when the IMap is initially populated. ThereafterMapLoader.load()
won't generate the ADDED event for objects loaded afterwards.This is inconsistent, and logged as an issue, https://github.com/hazelcast/hazelcast/issues/7771
Even once this is fixed, it won't set the TTL on entry differently from another.
For that, you may want to investigate the "cache-aside" design pattern, where your code tests the IMap for data presence, and does a Cassandra retrieve and Hazelcast save, which would allow a different TTL per entry.