BUCKET_SIZE_MAY_BE_TOO_SMALL_CWOBJ0032=CWOBJ0032W: The number of buckets for map {0} may be too small. The current number of buckets is {1}. The current number of entries in the map is {2}. The following condition was observed: {3}.
Explanation
The number of buckets should be the estimated number of entries in a map. This message may also result if the hashCode() method of the object type is not well formed. Performance of your application may be impacted.
User response
Examine the current number of buckets and determine if it needs to be increased. Also examine the hashCode() algorithm to determine if it needs to be modified to better distribute the entries across the buckets.