Add nightly tests for push-based shuffle (#24352)

Adds 1TB tests for push-based random shuffle and sort. Initially marked unstable.
This commit is contained in:
Stephanie Wang 2022-05-02 14:35:14 -04:00 committed by GitHub
parent 59debac670
commit fbbc9c33d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 1 deletions

View file

@ -5,7 +5,7 @@ aws:
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
VolumeSize: 500
VolumeSize: 1000
head_node_type:
name: head_node

View file

@ -3525,6 +3525,54 @@
type: sdk_command
file_manager: sdk
- name: dataset_shuffle_push_based_random_shuffle_1tb
group: core-dataset-tests
working_dir: nightly_tests
legacy:
test_name: dataset_shuffle_push_based_random_shuffle_1tb
test_suite: dataset_test
stable: false
frequency: nightly
team: core
cluster:
cluster_env: shuffle/shuffle_app_config.yaml
cluster_compute: shuffle/datasets_large_scale_compute_small_instances.yaml
run:
timeout: 7200
script: RAY_DATASET_PUSH_BASED_SHUFFLE=1 python dataset/sort.py --num-partitions=1000 --partition-size=1e9 --shuffle
wait_for_nodes:
num_nodes: 20
timeout: 900
type: sdk_command
file_manager: sdk
- name: dataset_shuffle_push_based_sort_1tb
group: core-dataset-tests
working_dir: nightly_tests
legacy:
test_name: dataset_shuffle_push_based_sort_1tb
test_suite: dataset_test
stable: false
frequency: nightly
team: core
cluster:
cluster_env: shuffle/shuffle_app_config.yaml
cluster_compute: shuffle/datasets_large_scale_compute_small_instances.yaml
run:
timeout: 7200
script: RAY_DATASET_PUSH_BASED_SHUFFLE=1 python dataset/sort.py --num-partitions=1000 --partition-size=1e9
wait_for_nodes:
num_nodes: 20
timeout: 900
type: sdk_command
file_manager: sdk
##################
# Core Chaos tests
##################