aboutsummaryrefslogblamecommitdiff
path: root/bin/start-master.sh
blob: ad19d483310d16a40bca517c2cedc284d4507632 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                              









                                                                                                                 
#!/usr/bin/env bash

# Starts the master on the machine this script is executed on.

bin=`dirname "$0"`
bin=`cd "$bin"; pwd`

. "$bin/spark-config.sh"

# Set SPARK_PUBLIC_DNS so the master report the correct webUI address to the slaves
if [ "$SPARK_PUBLIC_DNS" = "" ]; then
    # If we appear to be running on EC2, use the public address by default:
    if [[ `hostname` == *ec2.internal ]]; then
        echo "RUNNING ON EC2"
        export SPARK_PUBLIC_DNS=`wget -q -O - http://instance-data.ec2.internal/latest/meta-data/public-hostname`
    fi
fi

"$bin"/spark-daemon.sh start spark.deploy.master.Master