forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TEST] Additional data processing nightly test (ray-project#16078)
* in progress * in progress * almost done * Lint * almost done * All tests are available now * Change the test a little more stressful * Modify paramter to make tests a little more stressful
- Loading branch information
Showing
12 changed files
with
146 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
release/nightly_tests/dask_on_ray/large_scale_dask_on_ray_app_config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
base_image: "anyscale/ray-ml:pinned-nightly-py37" | ||
env_vars: {"RAY_scheduler_hybrid_threshold": "0"} | ||
debian_packages: [] | ||
|
||
python: | ||
pip_packages: ["dask[complete]", tqdm, scipy, xarray, zarr, boto, s3fs, pyarrow] | ||
conda_packages: [] | ||
|
||
post_build_cmds: | ||
# - pip install fastparquet | ||
- pip3 uninstall -y ray | ||
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }} | ||
- pip3 install -U ray[default] | ||
- echo {{env["DATESTAMP"]}} |
9 changes: 4 additions & 5 deletions
9
...e_scale_dask_on_ray_compute_template.yaml → ...e_scale_dask_on_ray_compute_template.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
max_workers: 20 | ||
|
||
# TODO(ekl/sang) switch to i2.8xl and mount the NVMe disks | ||
head_node_type: | ||
name: head_node | ||
instance_type: i3.8xlarge | ||
resources: {"object_store_memory": 53687091200} | ||
|
||
worker_node_types: | ||
- name: worker_node | ||
instance_type: i3.8xlarge | ||
min_workers: 20 | ||
max_workers: 20 | ||
min_workers: 4 | ||
max_workers: 4 | ||
use_spot: false | ||
resources: {"object_store_memory": 53687091200} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,21 +154,39 @@ | |
compute_template: shuffle/shuffle_compute_smoke.yaml # Does not exist yet | ||
|
||
# Test multi nodes 100GB shuffle with a large number of partitions. | ||
# TODO(sang): Not working due to a bug https://github.com/ray-project/ray/issues/16025. | ||
# - name: shuffle_100gb_large_partition | ||
# owner: | ||
# mail: "[email protected]" | ||
# slack: "@proj-data-processing" | ||
|
||
# cluster: | ||
# app_config: shuffle/shuffle_app_config.yaml | ||
# compute_template: shuffle/shuffle_compute_multi.yaml | ||
|
||
# run: | ||
# timeout: 3000 | ||
# prepare: python wait_cluster.py 4 600 | ||
# script: python shuffle/shuffle_test.py --num-partitions=1000 --partition-size=100e6 | ||
|
||
# smoke_test: | ||
# cluster: | ||
# compute_template: shuffle/shuffle_compute_smoke.yaml # Does not exist yet | ||
- name: shuffle_1tb_large_partition | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@proj-data-processing" | ||
|
||
cluster: | ||
app_config: shuffle/shuffle_app_config.yaml | ||
compute_template: shuffle/shuffle_compute_large_scale.yaml | ||
|
||
run: | ||
timeout: 3000 | ||
prepare: python wait_cluster.py 20 600 | ||
script: python shuffle/shuffle_test.py --num-partitions=1000 --partition-size=1e9 | ||
|
||
smoke_test: | ||
cluster: | ||
compute_template: shuffle/shuffle_compute_smoke.yaml # Does not exist yet | ||
|
||
# Test large scale dask on ray test without spilling. | ||
- name: dask_on_ray_large_scale_test_no_spilling | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@proj-data-processing" | ||
|
||
cluster: | ||
app_config: dask_on_ray/large_scale_dask_on_ray_app_config.yaml | ||
compute_template: dask_on_ray/large_scale_dask_on_ray_compute_template.yaml | ||
|
||
run: | ||
timeout: 7200 | ||
prepare: python wait_cluster.py 5 600 | ||
script: python dask_on_ray/large_scale_test.py --num_workers 16 --worker_obj_store_size_in_gb 20 --error_rate 0 --data_save_path /tmp/ray | ||
|
||
smoke_test: | ||
cluster: | ||
compute_template: shuffle/shuffle_compute_smoke.yaml # Does not exist yet |
15 changes: 15 additions & 0 deletions
15
release/nightly_tests/shuffle/shuffle_compute_large_scale.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
head_node_type: | ||
name: head_node | ||
instance_type: i3.4xlarge | ||
resources: {"object_store_memory": 21474836480} | ||
|
||
worker_node_types: | ||
- name: worker_node | ||
instance_type: i3.4xlarge | ||
min_workers: 19 | ||
max_workers: 19 | ||
use_spot: false | ||
resources: {"object_store_memory": 21474836480} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters