You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionDemander.java
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1207,8 +1207,14 @@ public void requestPartitions() {
1207
1207
return;
1208
1208
}
1209
1209
1210
-
if (waitCnt.decrementAndGet() == 0)
1210
+
if (waitCnt.decrementAndGet() == 0) {
1211
+
U.log(log, "Eviction completed successfully" +
1212
+
" [grp=" + grp.cacheOrGroupName() + ", reason='preparation for rebalancing'" +
Copy file name to clipboardExpand all lines: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/topology/GridDhtLocalPartition.java
+16-7Lines changed: 16 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ public class GridDhtLocalPartition extends GridCacheConcurrentMapImpl implements
132
132
133
133
/** Rent future. */
134
134
@GridToStringExclude
135
-
privatefinalGridFutureAdapter<?>rent;
135
+
privatefinalRentFuturerent;
136
136
137
137
/** */
138
138
@GridToStringExclude
@@ -212,11 +212,7 @@ public GridDhtLocalPartition(
Copy file name to clipboardExpand all lines: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/topology/GridDhtPartitionTopologyImpl.java
Copy file name to clipboardExpand all lines: modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/topology/GridDhtLocalPartitionSyncEviction.java
0 commit comments