rpuch commented on code in PR #5474:
URL: https://github.com/apache/ignite-3/pull/5474#discussion_r2020553000
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/checkpoint/Checkpointer.java:
##########
@@ -152,6 +152,8 @@ public class Checkpointer extends IgniteWorker {
/** Current checkpoint progress. This field is updated only by checkpoint
thread. */
private volatile @Nullable CheckpointProgressImpl
currentCheckpointProgress;
+ private volatile @Nullable CheckpointProgressImpl
currentCheckpointProgressForThrottling;
Review Comment:
How is it different from `currentCheckpointProgress`?
##########
modules/runner/src/testFixtures/java/org/apache/ignite/internal/testframework/TestIgnitionManager.java:
##########
@@ -66,7 +66,8 @@ public class TestIgnitionManager {
"ignite.storage.profiles.default_aimem.initSize",
Integer.toString(256 * MiB),
"ignite.storage.profiles.default_aimem.maxSize",
Integer.toString(256 * MiB),
"ignite.storage.profiles.default.engine", "aipersist",
- "ignite.storage.profiles.default.size", Integer.toString(256 * MiB)
+ "ignite.storage.profiles.default.size", Integer.toString(256 *
MiB),
+ "ignite.system.properties.aipersistThrottling", "disabled"
Review Comment:
Do we have any integration test where throttling is enabled?
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/throttling/SpeedBasedMemoryConsumptionThrottlingStrategy.java:
##########
@@ -191,13 +191,14 @@ private long speedBasedParkTime(int cpWrittenPages, long
donePages, int cpTotalP
} else {
return getParkTime(dirtyPagesRatio,
donePages,
- notEvictedPagesTotal(cpTotalPages),
+ cpTotalPages,
Review Comment:
How about adding TODO IGNITE-24937 so that we don't forget where to make the
call?
--
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]