Ilya Kasnacheev created IGNITE-11395:
----------------------------------------
Summary: GridAffinityAssignment should use list of node UUIDs instead of ClusterNodes
Key: IGNITE-11395
URL:
https://issues.apache.org/jira/browse/IGNITE-11395 Project: Ignite
Issue Type: Bug
Components: binary, compute
Affects Versions: 2.7
Reporter: Ilya Kasnacheev
GridAffinityAssignment and GridAffinityAssignmentV2 currently carry
private List<List<ClusterNode>> assignment;
Those are fat objects since they contain node metrics. Nevertheless they get serialized and sent away when affinityCall() is performed.
We should make GridAffinityAssignmentV3 which will instead have
private List<List<UUID>> assignment;
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)