aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorKousuke Saruta <sarutak@oss.nttdata.co.jp>2014-10-28 12:29:01 -0700
committerAndrew Or <andrew@databricks.com>2014-10-28 12:29:01 -0700
commit44d8b45a38c8d934628373a3b21084432516ee00 (patch)
tree60885edb1b4b5bfa499e2346c600304de893f60b /sbin
parent7768a800d4c4c19d76cef1ee40af6900bbac821c (diff)
downloadspark-44d8b45a38c8d934628373a3b21084432516ee00.tar.gz
spark-44d8b45a38c8d934628373a3b21084432516ee00.tar.bz2
spark-44d8b45a38c8d934628373a3b21084432516ee00.zip
[SPARK-4110] Wrong comments about default settings in spark-daemon.sh
In spark-daemon.sh, thare are following comments. # SPARK_CONF_DIR Alternate conf dir. Default is ${SPARK_PREFIX}/conf. # SPARK_LOG_DIR Where log files are stored. PWD by default. But, I think the default value for SPARK_CONF_DIR is `${SPARK_HOME}/conf` and for SPARK_LOG_DIR is `${SPARK_HOME}/logs`. Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp> Closes #2972 from sarutak/SPARK-4110 and squashes the following commits: 5a171a2 [Kousuke Saruta] Fixed wrong comments
Diffstat (limited to 'sbin')
-rwxr-xr-xsbin/spark-daemon.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/spark-daemon.sh b/sbin/spark-daemon.sh
index cba475e2dd..89608bc41b 100755
--- a/sbin/spark-daemon.sh
+++ b/sbin/spark-daemon.sh
@@ -21,8 +21,8 @@
#
# Environment Variables
#
-# SPARK_CONF_DIR Alternate conf dir. Default is ${SPARK_PREFIX}/conf.
-# SPARK_LOG_DIR Where log files are stored. PWD by default.
+# SPARK_CONF_DIR Alternate conf dir. Default is ${SPARK_HOME}/conf.
+# SPARK_LOG_DIR Where log files are stored. ${SPARK_HOME}/logs by default.
# SPARK_MASTER host:path where spark code should be rsync'd from
# SPARK_PID_DIR The pid files are stored. /tmp by default.
# SPARK_IDENT_STRING A string representing this instance of spark. $USER by default