You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Ilya Kasnacheev (JIRA)" <ji...@apache.org> on 2019/02/22 15:41:00 UTC

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

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)