blob: 785949ee0eb421033a4904b1bfbabe6d628e408a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/sh
set -eu
if [ ${DEBUG:+1} ]; then
set -xo pipefail
fi
if [ "$#" -ne 3 ]; then
echo "Usage: 'sh ${PWD}/$0 <num-workers> <master-machine> <worker-machine>'"
exit 1
fi
NUM_WORKERS="$1"
MASTER_MACHINE="$2"
WORKER_MACHINE="$3"
if [ "$NUM_WORKERS" -lt 1 ] || [ "$NUM_WORKERS" -gt 4 ]; then
echo "<num-workers> must be 1, 2, 3, or 4"
exit 1
fi
if [ -z "$MASTER_MACHINE" ]; then
echo "Error: Master machine type cannot be empty."
exit 1
fi
if [ -z "$WORKER_MACHINE" ]; then
echo "Error: Worker machine type cannot be empty."
exit 1
fi
COMMON_PARAMS="\
--project=${PROJECT} \
--region=${REGION} \
--service-account=${SERVICE_ACCOUNT}@${PROJECT}.iam.gserviceaccount.com \
--master-boot-disk-size=400 \
--worker-boot-disk-size=400 \
--worker-machine-type=${WORKER_MACHINE} \
--master-machine-type=${MASTER_MACHINE}"
if [ "$NUM_WORKERS" -eq 1 ]; then
echo ">>>> Creating a single-node cluster..."
gcloud dataproc clusters create "${CLUSTER}" \
${COMMON_PARAMS} \
--single-node
else
echo ">>>> Creating a cluster with ${NUM_WORKERS} workers..."
gcloud dataproc clusters create "${CLUSTER}" \
${COMMON_PARAMS} \
--num-workers="${NUM_WORKERS}"
fi
|