Skip to content

Commit

Permalink
Add a new autoscaling shuffle test (ray-project#16948)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericl committed Jul 12, 2021
1 parent 4bde71c commit fa0ff05
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
10 changes: 10 additions & 0 deletions release/nightly_tests/nightly_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,16 @@
prepare: python wait_cluster.py 4 600
script: python shuffle/shuffle_test.py --num-partitions=200 --partition-size=500e6 --no-streaming

# Test autoscaling 1TB streaming shuffle with a large number of partitions.
- name: autoscaling_shuffle_1tb_1000_partitions
cluster:
app_config: shuffle/shuffle_app_config.yaml
compute_template: shuffle/shuffle_compute_autoscaling.yaml

run:
timeout: 3000
script: python shuffle/shuffle_test.py --num-partitions=1000 --partition-size=1e9 --no-streaming

# Test multi nodes 1TB streaming shuffle with a large number of partitions.
- name: shuffle_1tb_1000_partition
cluster:
Expand Down
19 changes: 19 additions & 0 deletions release/nightly_tests/shuffle/shuffle_compute_autoscaling.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
region: us-west-2

aws:
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
VolumeSize: 500

head_node_type:
name: head_node
instance_type: i3.4xlarge

worker_node_types:
- name: worker_node
instance_type: i3.4xlarge
min_workers: 0
max_workers: 19
use_spot: false

0 comments on commit fa0ff05

Please sign in to comment.