Jeff Zhang created SPARK-11099:
----------------------------------

             Summary: Default conf property file is not loaded 
                 Key: SPARK-11099
                 URL: https://issues.apache.org/jira/browse/SPARK-11099
             Project: Spark
          Issue Type: Bug
            Reporter: Jeff Zhang
            Priority: Critical


spark.driver.extraClassPath doesn't take effect in the latest code, and find 
the root cause is due to the default conf property file is not loaded 

The bug is caused by this code snippet in AbstractCommandBuilder
{code}
  Map<String, String> getEffectiveConfig() throws IOException {
    if (effectiveConfig == null) {
      if (propertiesFile == null) {
        effectiveConfig = conf;       
      } else {
        effectiveConfig = new HashMap<>(conf);
        Properties p = loadPropertiesFile();
        for (String key : p.stringPropertyNames()) {
          if (!effectiveConfig.containsKey(key)) {
            effectiveConfig.put(key, p.getProperty(key));
          }
        }
      }
    }
    return effectiveConfig;
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to