ibessonov commented on code in PR #5289: URL: https://github.com/apache/ignite-3/pull/5289#discussion_r1969661714
########## modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/PersistentPageMemory.java: ########## @@ -1816,6 +1821,27 @@ public CheckpointUrgency checkpointUrgency() { return checkpointUrgency.get(); } + /** + * Checks if region is sufficiently full. + * + * @param dirtyRatioThreshold Max allowed dirty pages ration. + */ + public boolean shouldThrottle(double dirtyRatioThreshold) { + Segment[] segments = this.segments; + + if (segments == null) { + return false; + } + + for (Segment segment : segments) { Review Comment: It's an array, there's no allocation of iterator here -- 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-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org