danny0405 commented on code in PR #13064: URL: https://github.com/apache/hudi/pull/13064#discussion_r2026103908
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/action/clean/CleanPlanActionExecutor.java: ########## @@ -192,6 +198,19 @@ protected Option<HoodieCleanerPlan> requestClean(String startCleanTime) { return option; } + private void validateForLatestTimestamp(HoodieInstant cleanInstant) { + try { + if (!skipLocking) { + txnManager.beginTransaction(Option.of(cleanInstant), Option.empty()); + } + table.validateForLatestTimestamp(cleanInstant.getTimestamp()); + } finally { + if (!skipLocking) { Review Comment: is the lock only used for timestamp validation? so we still support concurrent cleaning? -- 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: commits-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org