hmatu edited a comment on issue #1242: [HUDI-544] Adjust the read and write path of archive URL: https://github.com/apache/incubator-hudi/pull/1242#issuecomment-581873000 @hddong @n3nash, `ArchivedCommitsCommand` contains two bellow commands, if just using `metaClient.getArchivePath() + "/.commits_.archive*"`, it will affect old tables. Compare to changes: - `metaClient.getArchivePath() + "/.commits_.archive*"` - `basePath + "/.hoodie/.commits_.archive*"` These two archive paths are different: - `/table/.hoodie/archived/.commits_.archive*` - `/table/.hoodie/.commits_archive*` So the better way is add `archiveFolderPattern` to `show archived commits` command. ``` show archived commit stats ``` ``` show archived commits ```
---------------------------------------------------------------- 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
