You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/08/24 16:45:05 UTC

[GitHub] [ignite] ascherbakoff commented on a change in pull request #9352: IGNITE-15364 Fixed an issue that could break data consistency.

ascherbakoff commented on a change in pull request #9352:
URL: https://github.com/apache/ignite/pull/9352#discussion_r695026293



##########
File path: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/topology/GridDhtPartitionTopologyImpl.java
##########
@@ -596,7 +596,8 @@ else if (localNode(p, aff))
 
                 long updateSeq = this.updateSeq.incrementAndGet();
 
-                cntrMap.clear();
+                if (!exchFut.firstEvent().eventNode().isClient() || exchFut.changedAffinity())

Review comment:
       Shouldn't the condition be
   
   if (exchFut.exchangeType() == ALL && !exchFut.rebalanced())
         cntrMap.clear();




-- 
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-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org