denis-chudov commented on code in PR #5092: URL: https://github.com/apache/ignite-3/pull/5092#discussion_r1967495388
########## modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/rebalance/DistributionZoneRebalanceEngineV2.java: ########## @@ -140,14 +143,19 @@ public void stop() { private WatchListener createDistributionZonesDataNodesListener() { return evt -> IgniteUtils.inBusyLockAsync(busyLock, () -> { - Set<Node> dataNodes = parseDataNodes(evt.entryEvent().newEntry().value()); + Set<NodeWithAttributes> dataNodesWithAttributes = parseDataNodes(evt.entryEvent().newEntry().value(), evt.timestamp()); - if (dataNodes == null) { + if (dataNodesWithAttributes == null) { // The zone was removed so data nodes were removed too. return nullCompletedFuture(); } - int zoneId = extractZoneIdDataNodes(evt.entryEvent().newEntry().key()); + Set<Node> dataNodes = dataNodesWithAttributes.stream() + .map(NodeWithAttributes::node) + .collect(toSet()); + + int zoneId = extractZoneId(evt.entryEvent().newEntry().key(), DISTRIBUTION_ZONE_DATA_NODES_HISTORY_PREFIX Review Comment: fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org