rkhachatryan commented on a change in pull request #18324: URL: https://github.com/apache/flink/pull/18324#discussion_r790617559
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/state/changelog/ChangelogStateBackendHandle.java ########## @@ -113,6 +124,19 @@ public long getStateSize() { + nonMaterialized.stream().mapToLong(StateObject::getStateSize).sum(); } + @Override + public long getIncrementalStateSize() { + long incrementalStateSize = + incrementalMaterializeSize == undefinedIncrementalMaterializeSize + ? materialized.stream() + .mapToLong(StateObject::getIncrementalStateSize) + .sum() + : incrementalMaterializeSize; Review comment: Reached consensus in [another thread](https://github.com/apache/flink/pull/18324#discussion_r790249924). -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org