zhangyue19921010 commented on a change in pull request #3259: URL: https://github.com/apache/hudi/pull/3259#discussion_r670109986
########## File path: hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieClusteringJob.java ########## @@ -121,17 +141,26 @@ public static void main(String[] args) { public int cluster(int retry) { this.fs = FSUtils.getFs(cfg.basePath, jsc.hadoopConfiguration()); int ret = UtilHelpers.retry(retry, () -> { - if (cfg.runSchedule) { - LOG.info("Do schedule"); - Option<String> instantTime = doSchedule(jsc); - int result = instantTime.isPresent() ? 0 : -1; - if (result == 0) { - LOG.info("The schedule instant time is " + instantTime.get()); + String runningMode = cfg.runningMode == null ? "" : cfg.runningMode.toLowerCase(); + switch (runningMode) { + case SCHEDULE: { + LOG.info("Running Mode: [" + SCHEDULE + "]; Do schedule"); + Option<String> instantTime = doSchedule(jsc); + int result = instantTime.isPresent() ? 0 : -1; + if (result == 0) { + LOG.info("The schedule instant time is " + instantTime.get()); + } + return result; + } + case SCHEDULE_AND_EXECUTE: { + LOG.info("Running Mode: [" + SCHEDULE_AND_EXECUTE + "]"); + return doScheduleAndCluster(jsc); + } + case EXECUTE: + default: { + LOG.info("Running Mode: [" + EXECUTE + "]; Do cluster"); Review comment: Nice catching. I changed the default behavior as `LOG.info("Unsupported running mode [" + runningMode + "], quit the job directly");` in case users set a wrong value of --mode like `--mode abcd`. -- 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