Saisai Shao created AMBARI-13648: ------------------------------------ Summary: Fix incorrect SPARK_CONF_DIR in Ambari stack definition Key: AMBARI-13648 URL: https://issues.apache.org/jira/browse/AMBARI-13648 Project: Ambari Issue Type: Bug Components: stacks Reporter: Saisai Shao
What AMBARI-13584 did is not correct: {code} export SPARK_CONF_DIR=${SPARK_CONF_DIR:-{{spark_home}}}/conf {code} Which will lead to failure start up of history server, we have to change to: {code} export SPARK_CONF_DIR=${SPARK_CONF_DIR:-{{spark_home}}/conf} {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)