danny0405 commented on code in PR #13064: URL: https://github.com/apache/hudi/pull/13064#discussion_r2026105444
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/action/rollback/BaseRollbackPlanActionExecutor.java: ########## @@ -62,12 +66,15 @@ public BaseRollbackPlanActionExecutor(HoodieEngineContext context, HoodieInstant instantToRollback, boolean skipTimelinePublish, boolean shouldRollbackUsingMarkers, - boolean isRestore) { + boolean isRestore, + boolean skipLocking) { super(context, config, table, instantTime); this.instantToRollback = instantToRollback; this.skipTimelinePublish = skipTimelinePublish; this.shouldRollbackUsingMarkers = shouldRollbackUsingMarkers && !instantToRollback.isCompleted(); this.isRestore = isRestore; + this.txnManager = new TransactionManager(config, table.getStorage()); + this.skipLocking = skipLocking; Review Comment: init the txn manager only if the lock is required? -- 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