tkalkirill commented on code in PR #907:
URL: https://github.com/apache/ignite-3/pull/907#discussion_r913664207
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/checkpoint/Checkpoint.java:
##########
@@ -17,36 +17,33 @@
package org.apache.ignite.internal.pagememory.persistence.checkpoint;
-import org.apache.ignite.internal.pagememory.FullPageId;
-import org.apache.ignite.internal.pagememory.persistence.PersistentPageMemory;
-
/**
* Data class of checkpoint information.
*/
class Checkpoint {
- /** Checkpoint pages. */
- final IgniteConcurrentMultiPairQueue<PersistentPageMemory, FullPageId>
dirtyPages;
+ /** orted dirty pages from data regions that should be checkpointed. */
+ final CheckpointDirtyPages dirtyPages;
/** Checkpoint progress status. */
final CheckpointProgressImpl progress;
/** Number of dirty pages. */
- final int dirtyPagesSize;
+ final long dirtyPagesSize;
Review Comment:
Fix it.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]