n3nash commented on a change in pull request #1274: [HUDI-571] Add 'commits
show archived' command to CLI
URL: https://github.com/apache/incubator-hudi/pull/1274#discussion_r372573105
##########
File path:
hudi-common/src/main/java/org/apache/hudi/common/table/timeline/HoodieArchivedTimeline.java
##########
@@ -96,7 +101,16 @@ private void readObject(java.io.ObjectInputStream in)
throws IOException, ClassN
}
public static Path getArchiveLogPath(String archiveFolder) {
- return new Path(archiveFolder, HOODIE_COMMIT_ARCHIVE_LOG_FILE);
+ return new Path(archiveFolder, HOODIE_COMMIT_ARCHIVE_LOG_FILE_PREFIX);
+ }
+
+ public void loadInstantDetailsInMemory(String startTs, String endTs) {
+ loadInstants(startTs, endTs);
+ }
+
+ public void removeInstantDetailsFromMemory(String startTs, String endTs) {
Review comment:
nit : s/removeInstantDetailsFromMemory/clearInstantDetailsFromMemory
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services