Reputation: 1
Currently, my application runs in a cluster using with Coherence as datagrid and it is configured so that only a few nodes have local partition enabled. It is done by setting tangosol.coherence.distributed.localstorage property.
Now I have to migrate to Hazelcast and I would like to replicate to behavior I currently have with Coherence. Is there a configuration in Hazelcast that would allow me to that?
Upvotes: 0
Views: 213
Reputation: 886
If you're looking to have a cluster member which does not own any partition storage, the Hazelcast equivalent concept is a Lite Member.
https://docs.hazelcast.org/docs/latest/manual/html-single/#enabling-lite-members
If you're looking to enable/disable storage at the client side, Hazelcast has near cache, similar to near cache in Coherence.
https://docs.hazelcast.org/docs/latest/manual/html-single/#near-cache
Upvotes: 0
Reputation: 1215
No. There is not, in Hazelcast, a configuration equivalent to Coherencetangosol.coherence.distributed.localstorage configuratiation
Upvotes: 0