Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 6 additions & 34 deletions clickhouse-cloud/combinations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,22 @@ PROVIDER=aws
REGION='ap-southeast-2'
PARALLEL_REPLICA=false

for REPLICAS in 1
do
for MEMORY in 8 12
do
export PROVIDER REPLICAS REGION MEMORY PARALLEL_REPLICA
./cloud-api.sh &
sleep 10 # Prevent "Too many requests" to the API
done
done

for REPLICAS in 2 3
# The Scale tier supports single-replica services of every size,
# so all replica counts run over the full range of memory sizes.
for REPLICAS in 1 2 3
do
for MEMORY in 8 12 16 32 64 120 236 356
do
export PROVIDER REPLICAS REGION MEMORY PARALLEL_REPLICA
./cloud-api.sh &
sleep 10
sleep 10 # Prevent "Too many requests" to the API
done
done

PROVIDER=gcp
REGION='us-east1'

for REPLICAS in 1
do
for MEMORY in 8 12
do
export PROVIDER REPLICAS REGION MEMORY PARALLEL_REPLICA
./cloud-api.sh &
sleep 10
done
done

for REPLICAS in 2 3
for REPLICAS in 1 2 3
do
for MEMORY in 8 12 16 32 64 120 236 356
do
Expand All @@ -54,17 +36,7 @@ done
PROVIDER=azure
REGION='westus3'

for REPLICAS in 1
do
for MEMORY in 8 12
do
export PROVIDER REPLICAS REGION MEMORY PARALLEL_REPLICA
./cloud-api.sh &
sleep 10
done
done

for REPLICAS in 2 3
for REPLICAS in 1 2 3
do
for MEMORY in 8 12 16 32 64 120 236 356
do
Expand Down
Loading