Skip to content

Commit

Permalink
Correct application invoking
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessar committed Jul 10, 2017
1 parent 16475ef commit 5d53328
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions etc/start_local_glow_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ trap ctrl_c SIGINT
echo "You may press ctrl-c to kill all started processes..."

go build glow.go
glow master --address="${MASTER_ADDRESS}" &
./glow master --address="${MASTER_ADDRESS}" &
pids+=($!)
echo "Started glow master at ${MASTER_ADDRESS}, pid: $!"

glow agent --dir="${GLOW_BASE_DIR}/agent1" --max.executors=5 --memory=500 \
./glow agent --dir="${GLOW_BASE_DIR}/agent1" --max.executors=5 --memory=500 \
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT1}" &
pids+=($!)
echo "Started glow agent, pid: $!"

glow agent --dir="${GLOW_BASE_DIR}/agent2" --max.executors=5 --memory=500 \
./glow agent --dir="${GLOW_BASE_DIR}/agent2" --max.executors=5 --memory=500 \
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT2}" &
pids+=($!)
echo "Started glow agent, pid: $!"

glow agent --dir="${GLOW_BASE_DIR}/agent3" --max.executors=5 --memory=500 \
./glow agent --dir="${GLOW_BASE_DIR}/agent3" --max.executors=5 --memory=500 \
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT3}" &
pids+=($!)
echo "Started glow agent, pid: $!"
Expand Down

0 comments on commit 5d53328

Please sign in to comment.