1
0

[HUDI-3450] Avoid passing empty string spark master to hudi cli (#4844)

Co-authored-by: Wenning Ding <wenningd@amazon.com>
This commit is contained in:
wenningd
2022-02-28 08:37:24 -08:00
committed by GitHub
parent 05e395ae5f
commit 18dc89cf79
2 changed files with 38 additions and 1 deletions

View File

@@ -79,7 +79,9 @@ public class SparkUtil {
if (properties.getProperty(HoodieCliSparkConfig.CLI_SPARK_MASTER) != null) {
sparkMasterNode = properties.getProperty(HoodieCliSparkConfig.CLI_SPARK_MASTER);
}
sparkMasterNode = sparkMaster.orElse(sparkMasterNode);
if (sparkMaster.isPresent() && !sparkMaster.get().trim().isEmpty()) {
sparkMasterNode = sparkMaster.orElse(sparkMasterNode);
}
sparkConf.setMaster(sparkMasterNode);
// Configure driver