Reputation: 416
I am using :
hazelcast3.4
1 Load Balancer
2 cluster nodes
1 distributed cache over that clusters(IMAP = sessionMap)
I have been running some performence scripts and as I see on hazelcastmancenter
, entry sizes for same map named sessionMap
have not been equal:
How can i solve it ?
Thanks
Upvotes: 1
Views: 48
Reputation: 416
I learned why the entry sizes are different on cluster nodes. Hazelcast does not equalize the entries on the clusters, It just combines the JVMs thus when you want to check the size of the distributed map , the total size equals sum of the entries on the clusters . map.size = 845 +900 = 1745.
Upvotes: 1