diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-12-28 15:17:04 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-12-28 15:17:04 +0100 |
commit | 2aa010e47387f5c60d63824dce65f76f22eecddc (patch) | |
tree | cf39154c7e58c697da3d9c0e00fad711fe9e59c0 /scripts/04-dataproc-create-cluster.sh | |
parent | 246369828ecdaf879923b19ff222881cbe6c3953 (diff) |
Check on scripts + update num worker
Diffstat (limited to 'scripts/04-dataproc-create-cluster.sh')
-rwxr-xr-x | scripts/04-dataproc-create-cluster.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/04-dataproc-create-cluster.sh b/scripts/04-dataproc-create-cluster.sh new file mode 100755 index 0000000..ada258d --- /dev/null +++ b/scripts/04-dataproc-create-cluster.sh @@ -0,0 +1,38 @@ +#!/bin/sh + +set -eu + +if [ "$#" -ne 1 ]; then + echo "Usage: 'sh ${PWD}/$0 <num-workers>'" + exit 1 +fi + + +NUM_WORKERS="$1" +if [ "$NUM_WORKERS" -lt 1 ] || [ "$NUM_WORKERS" -gt 4 ]; then + echo "<num-workers> must be 1, 2, 3, or 4" + exit 1 +fi + + +COMMON_PARAMS="\ + --project=${PROJECT} \ + --region=${REGION} \ + --service-account=${SERVICE_ACCOUNT}@${PROJECT}.iam.gserviceaccount.com \ + --master-boot-disk-size=240 \ + --worker-boot-disk-size=240 \ + --worker-machine-type=n1-standard-2 \ + --master-machine-type=n1-standard-2" + + +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 |