Created 09-14-2016 11:18 AM
I want to execute "./sbin/start-master.sh", but I'm unable to locate this file in the /sbin folder. I wanted to find the file using echo $SPARK_HOME but the result is empty. I'm on HDP 2.4.
That leads to the question: Where is Spark?
Created 09-14-2016 11:26 AM
Normally it's under /usr/hdp/current/spark-client
Created 09-14-2016 11:26 AM
Normally it's under /usr/hdp/current/spark-client
Created 09-14-2016 11:35 AM
Sorry, too quick on the trigger.
Normally SPARK_HOME=/usr/hdp/current/spark-client
In my (old) sandbox the start_master.sh script is located at /usr/hdp/2.4.0.0-169/spark/sbin/start-master.sh.
Created 09-14-2016 11:26 AM
Sometimes asking the question is half the answer:
find . -name start-master.sh
gave
./usr/hdp/2.4.0.0-169/spark/sbin/start-master.sh
Created 09-14-2016 11:29 AM
You need to go where your Spark client is installed. Depending of your install/OS, it may be :
/usr/hdp/current/spark-client/sbin
Hope this helps.