sk0x50 commented on a change in pull request #5779: IGNITE-10508 Support the 
new checkpoint feature not wait for the previous operation to complete
URL: https://github.com/apache/ignite/pull/5779#discussion_r253413331
 
 

 ##########
 File path: 
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/GridCacheDatabaseSharedManager.java
 ##########
 @@ -2922,11 +2931,26 @@ public void cancelOrWaitPartitionDestroy(int grpId, 
int partId) throws IgniteChe
     /**
      * Partition destroy queue.
      */
-    private static class PartitionDestroyQueue {
+    static class PartitionDestroyQueue {
         /** */
         private final ConcurrentMap<T2<Integer, Integer>, 
PartitionDestroyRequest> pendingReqs =
             new ConcurrentHashMap<>();
 
+        /** */
+        private PartitionDestroyQueue prevDestroyQueue;
+
+        /** */
+        private final GridFutureAdapter<?> doneFut = new GridFutureAdapter<>();
+
+        /** */
+        private Iterator<PartitionDestroyRequest> it;
+
+        /** */
+        private AtomicInteger inProgressTasks = new AtomicInteger();
+
+        /** */
+        private int parts;
 
 Review comment:
   This variable is not used, please remove it.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to