adixitconfluent commented on code in PR #17825:
URL: https://github.com/apache/kafka/pull/17825#discussion_r1844656641
##########
core/src/main/java/kafka/server/share/SharePartition.java:
##########
@@ -2426,4 +2421,28 @@ public String toString() {
")";
}
}
+
+ /**
+ * FetchOffsetMetadata class is used to cache offset and its log metadata.
+ */
+ static final class OffsetMetadata {
+ private long offset;
+ private LogOffsetMetadata offsetMetadata;
+
+ OffsetMetadata() {
+ }
Review Comment:
i've pushed the changes in my latest commit. Thanks!
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]