aboutsummaryrefslogblamecommitdiff
path: root/bin/start-slaves.sh
blob: eb7663101b7846c452269fb2a6b206704e50d523 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                      
#!/usr/bin/env bash

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

. "$bin/spark-config.sh"

# Find the port number for the master
if [ "$SPARK_MASTER_PORT" = "" ]; then
  SPARK_MASTER_PORT=7077
fi

hostname=`hostname`
ip=`host "$hostname" | cut -d " " -f 4`

"$bin"/spark-daemons.sh start spark.deploy.worker.Worker spark://$ip:$SPARK_MASTER_PORT