[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user