Skip to content
Snippets Groups Projects
Commit f67bcbed authored by Reynold Xin's avatar Reynold Xin
Browse files

Use SPARK_MASTER_IP if it is set in start-slaves.sh.

parent 63fe4e9d
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,21 @@ if [ "$SPARK_MASTER_PORT" = "" ]; then
SPARK_MASTER_PORT=7077
fi
hostname=`hostname`
ip=`host "$hostname" | cut -d " " -f 4`
if [ "$SPARK_MASTER_IP" = "" ]; then
hostname=`hostname`
hostouput=`host "$hostname"`
if [[ "$hostouput" == *"not found"* ]]; then
echo $hostouput
echo "Fail to identiy the IP for the master."
echo "Set SPARK_MASTER_IP explicitly in configuration instead."
exit 1
fi
ip=`host "$hostname" | cut -d " " -f 4`
else
ip=$SPARK_MASTER_IP
fi
echo "Master IP: $ip"
"$bin"/spark-daemons.sh start spark.deploy.worker.Worker spark://$ip:$SPARK_MASTER_PORT
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment