--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at http://groups.google.com/group/hazelcast.
For more options, visit https://groups.google.com/groups/opt_out.
I'm using Hazelcast 3.4 in a cluster with 5+ nodes. I have a map where keys are complex objects ( not primitive types). At any point of time, the size of the map may be around 200K.
I understand that the entries/values in a map will be stored in different partitions. However, I would like to know the following.
2 & 3 are follow up questions.
Is keySet() a distributed operation ? (i.e. will it surely involve remote machine communication in a cluster environment)
Is localKeySet() a distributed operation ?
Some more background on the problem:
I need to inform a third party program about the keys present in the hazelcast map in my program during regular intervals of time by calling a service cachedKeys(K[] keys) exposed by the third party program.
Option 1: call keySet() from any one of the nodes in the cluster to retrieve all the keys in the map and then call cachedKeys(K[] keys) service from that node.
Option 2: call localKeySet() from each of the nodes in the cluster to identify the local keys owned by each nodes, followed by cachedKeys(K[] keys) call from each node.
com.hazelcast.nio.serialization.Data class (binary form). Will there be--
You received this message because you are subscribed to a topic in the Google Groups "Hazelcast" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/hazelcast/09Hpf-SbY1s/unsubscribe.
To unsubscribe from this group and all its topics, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at http://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/482c9975-6415-422f-801b-ba3f1cd2b3ac%40googlegroups.com.