vcrfxia commented on code in PR #13365:
URL: https://github.com/apache/kafka/pull/13365#discussion_r1136263824


##########
streams/src/main/java/org/apache/kafka/streams/state/internals/LogicalKeyValueSegments.java:
##########
@@ -57,6 +57,11 @@ public void openExisting(final ProcessorContext context, 
final long streamTime)
         physicalStore.openDB(context.appConfigs(), context.stateDir());
     }
 
+    @Override
+    public void cleanupExpiredSegments(final long streamTime) {
+        super.cleanupExpiredSegments(streamTime);

Review Comment:
   The method from AbstractSegments is protected, but LogicalKeyValueSegments 
needs to expose it publicly so that it can be called from the versioned store 
implementation.



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to