abhijeetk88 commented on code in PR #16584: URL: https://github.com/apache/kafka/pull/16584#discussion_r1719930368
########## core/src/main/scala/kafka/log/UnifiedLog.scala: ########## @@ -1334,6 +1334,27 @@ class UnifiedLog(@volatile var logStartOffset: Long, } else { Some(new TimestampAndOffset(RecordBatch.NO_TIMESTAMP, -1L, Optional.of(-1))) } + } else if (targetTimestamp == ListOffsetsRequest.EARLIEST_PENDING_UPLOAD_OFFSET_TIMESTAMP) { Review Comment: Done ########## clients/src/main/java/org/apache/kafka/common/requests/ListOffsetsRequest.java: ########## @@ -49,6 +49,8 @@ public class ListOffsetsRequest extends AbstractRequest { public static final long LATEST_TIERED_TIMESTAMP = -5L; + public static final long EARLIEST_PENDING_UPLOAD_OFFSET_TIMESTAMP = -6L; Review Comment: Done -- 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