StefanRRichter commented on a change in pull request #6875: [FLINK-9808] [state 
backends] Migrate state when necessary in state backends
URL: https://github.com/apache/flink/pull/6875#discussion_r226663119
 
 

 ##########
 File path: 
flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBKeyedStateBackend.java
 ##########
 @@ -1389,6 +1388,149 @@ private void copyStateDataHandleData(
                return Tuple2.of(stateInfo.f0, newMetaInfo);
        }
 
+       private <N, S extends State, SV> 
RegisteredKeyValueStateBackendMetaInfo<N, SV> migrateStateIfNecessary(
+                       StateDescriptor<S, SV> stateDesc,
+                       TypeSerializer<N> namespaceSerializer,
+                       Tuple2<ColumnFamilyHandle, RegisteredStateMetaInfoBase> 
stateInfo,
+                       @Nullable StateSnapshotTransformer<SV> 
snapshotTransformer) throws Exception {
+
+               StateMetaInfoSnapshot restoredMetaInfoSnapshot = 
restoredKvStateMetaInfos.get(stateDesc.getName());
 
 Review comment:
   This line and the following check are already done by the caller in exactly 
the same way. Wouldn't it make more sense to then pass `StateMetaInfoSnapshot` 
as argument from the caller?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to