[jira] [Created] (IGNITE-11395) GridAffinityAssignment should use list of node UUIDs instead of ClusterNodes

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-11395) GridAffinityAssignment should use list of node UUIDs instead of ClusterNodes

Anton Vinogradov (Jira)
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)