Hazelcast: When to increase Partition Count?

Hazelcast stores data in partitions. Default partition number is 271.

You can increase the partition number, if data size per partition is bigger than 100 Mb.

Why?

By consistent hashing* algorithm, partitions are migrated when  nodes join or leave the cluster. While a partition is migrating, operations related to this partition are retried. So migration should be completed as soon as possible. Small partitions cause quick migrations and more responsive cluster.