Vladislav Pyatkov created IGNITE-22128:
------------------------------------------
Summary: Balancing partitions across stripes
Key: IGNITE-22128
URL: https://issues.apache.org/jira/browse/IGNITE-22128
Project: Ignite
Issue Type: Improvement
Reporter: Vladislav Pyatkov
h3. Motivation
Right now, we use a hash to balance partitions.
{code:java}
public int getStripe(NodeId nodeId) {
return Math.abs(nodeId.hashCode() % stripes);
}
{code}
This approach might lead to a skew.
h3. Definition of done
Partition is distributed by the round-robin algorithm.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)