Skip to content

Commit 8655a37

Browse files
authored
[Data] Update whether release tests use autoscaling (#51562)
Some of the release test metrics are difficult to interpret because of autoscaling. So, this PR updates many of them to use fixed-size clusters. See [What sort of cluster should release tests use?](https://docs.google.com/spreadsheets/d/1JF-KNNOQfQg-oRGJQwX7oPHCrDuDBNyFufTgxDTiKsQ/edit?gid=0#gid=0) --------- Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu>
1 parent 75941e7 commit 8655a37

File tree

4 files changed

+180
-124
lines changed

4 files changed

+180
-124
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
2+
region: us-west-2
3+
4+
advanced_configurations_json:
5+
BlockDeviceMappings:
6+
- DeviceName: /dev/sda1
7+
Ebs:
8+
DeleteOnTermination: true
9+
VolumeSize: 512
10+
11+
head_node_type:
12+
name: head_node
13+
instance_type: m5.2xlarge
14+
resources:
15+
cpu: 0
16+
17+
worker_node_types:
18+
- name: worker_node
19+
instance_type: m5.4xlarge
20+
min_workers: 32
21+
max_workers: 32
22+
use_spot: false

release/nightly_tests/dataset/autoscaling_gpu_head_compute.yaml renamed to release/nightly_tests/dataset/fixed_size_gpu_head_compute.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ head_node_type:
1717
worker_node_types:
1818
- name: worker-node
1919
instance_type: m5.2xlarge
20-
min_workers: 0
20+
min_workers: 10
2121
max_workers: 10
2222
use_spot: false

0 commit comments

Comments
 (0)