From 68e54300bda01357e7f16215d33ba11a27909310 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Tue, 4 Aug 2026 21:55:39 +0000 Subject: [PATCH] Benchmark single-replica services of all sizes on ClickHouse Cloud The Scale tier now offers a single-replica option, so 1-replica services are no longer limited to 8 and 12 GiB. Run the full memory range (8..356 GiB) for every replica count on all three providers. Co-Authored-By: Claude Fable 5 --- clickhouse-cloud/combinations.sh | 40 +++++--------------------------- 1 file changed, 6 insertions(+), 34 deletions(-) diff --git a/clickhouse-cloud/combinations.sh b/clickhouse-cloud/combinations.sh index fb4e087bb6..21bebc3c35 100755 --- a/clickhouse-cloud/combinations.sh +++ b/clickhouse-cloud/combinations.sh @@ -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 @@ -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