lw309637554 commented on a change in pull request #2379:
URL: https://github.com/apache/hudi/pull/2379#discussion_r552329734



##########
File path: 
hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieClusteringJob.java
##########
@@ -153,7 +161,12 @@ private int doSchedule(JavaSparkContext jsc) throws 
Exception {
     String schemaStr = getSchemaFromLatestInstant();
     SparkRDDWriteClient client =
         UtilHelpers.createHoodieClient(jsc, cfg.basePath, schemaStr, 
cfg.parallelism, Option.empty(), props);
-    return client.scheduleClusteringAtInstant(cfg.clusteringInstantTime, 
Option.empty()) ? 0 : -1;
+    Option<String> instantTime = client.scheduleClustering(Option.empty());
+    if (instantTime.isPresent()) {
+      cfg.clusteringInstantTime = instantTime.get();

Review comment:
       done, also add a method for test




----------------------------------------------------------------
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:
us...@infra.apache.org


Reply via email to