rkhachatryan commented on a change in pull request #18391:
URL: https://github.com/apache/flink/pull/18391#discussion_r803667329



##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/state/changelog/ChangelogStateHandleStreamImpl.java
##########
@@ -44,23 +46,42 @@
 
     private final long size;
     private final long incrementalSize;
+    private final StateHandleID stateHandleID;
 
     public ChangelogStateHandleStreamImpl(
             List<Tuple2<StreamStateHandle, Long>> handlesAndOffsets,
             KeyGroupRange keyGroupRange,
-            long size) {
-        this(handlesAndOffsets, keyGroupRange, size, size);
+            long size,
+            long incrementalSize) {
+        this(
+                handlesAndOffsets,
+                keyGroupRange,
+                size,
+                incrementalSize,
+                new StateHandleID(UUID.randomUUID().toString()));

Review comment:
       Sorry, misplaced this comment.
   [Moved](https://github.com/apache/flink/pull/18391/files#r803666621) to 
`ChangelogStateBackendHandleImpl`.




-- 
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


Reply via email to