ccding commented on a change in pull request #11390: URL: https://github.com/apache/kafka/pull/11390#discussion_r778990618
########## File path: clients/src/main/java/org/apache/kafka/common/requests/ListOffsetsRequest.java ########## @@ -42,6 +42,11 @@ public static final long LATEST_TIMESTAMP = -1L; public static final long MAX_TIMESTAMP = -3L; + /** + * It is used to represent the earliest message stored in the local log which is also called the local-log-start-offset + */ + public static final long EARLIEST_LOCAL_TIMESTAMP = -4L; Review comment: `local-log-start-timestamp` instead of `local-log-start-offset` in the comment? -- 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