vinothchandar commented on code in PR #13340:
URL: https://github.com/apache/hudi/pull/13340#discussion_r2110726471


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java:
##########
@@ -1633,14 +1634,10 @@ protected void cleanIfNecessary(BaseHoodieWriteClient 
writeClient, String instan
     // Trigger cleaning with suffixes based on the same instant time. This 
ensures that any future
     // delta commits synced over will not have an instant time lesser than the 
last completed instant on the
     // metadata table.
-    writeClient.clean(createCleanInstantTime(instantTime));
+    writeClient.clean();

Review Comment:
   old code ultimately calls sth like 
   
   ```
   public String createNewInstantTime(boolean shouldLock) {
       TimeGenerator timeGenerator = TimeGenerators
           .getTimeGenerator(timeGeneratorConfig, storageConf);
       return TimelineUtils.generateInstantTime(shouldLock, timeGenerator);
     }
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to