Reputation: 1302
I am worried because i get this trace log after starting a Hazelcast Instance:
com.hazelcast.internal.partition.impl.PartitionStateManager
[10.XXX.XXX.XXX]:5701 [dev] [3.7] Initializing cluster partition table arrangement...
Tested with last version of Hazelcast 3.7 but the same with 3.6, and using default Hazelcast config in a multicast environment
I dont get any more trace related with this and looks that still is "Initializing Cluster Partition", but everything works fine !
Everything works fine apparently, get from imaps, put objects, synchronize with remote members of a cluster....
What does it mean exactly? It is a sign that something is wrong ?
Thank you
Upvotes: 3
Views: 1932
Reputation: 6104
It is a necessary operation. The partition table assignment is created on first use of partitions (like put / get / ... operations) and gets generated on the fly. So this is a perfectly fine log :)
Upvotes: 1