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.
[Data] Update batch inference release tests (ray-project#49012)
Other than minor cleanups, this PR: * Makes batch inference release tests use autoscaling, to ensure Ray Data works well with autoscaling * Removes the "raw images" variants, because there isn't much value to them in addition to the parquet tests, and people use parquet more often) * Updates the node types, for consistency with the other release test compute --------- Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu> Signed-off-by: Connor Sanders <connor@elastiflow.com>
- Loading branch information
1 parent
d41c843
commit f4f2785
Showing
6 changed files
with
76 additions
and
206 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
19 changes: 19 additions & 0 deletions
19
release/nightly_tests/dataset/autoscaling_gpu_compute.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,19 @@ | ||
# This config matches the default config for Anyscale workspaces with autoscaling, | ||
# except instead of using CPU instances, it uses GPU instances. | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
max_workers: 10 | ||
|
||
head_node_type: | ||
name: head_node | ||
instance_type: m5.2xlarge | ||
resources: | ||
cpu: 0 | ||
|
||
worker_node_types: | ||
- name: worker_node | ||
instance_type: g4dn.2xlarge | ||
min_workers: 0 | ||
max_workers: 10 | ||
use_spot: false |
23 changes: 23 additions & 0 deletions
23
release/nightly_tests/dataset/autoscaling_hetero_compute.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,23 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
max_workers: 20 | ||
|
||
head_node_type: | ||
name: head_node | ||
instance_type: m5.2xlarge | ||
resources: | ||
cpu: 0 | ||
|
||
worker_node_types: | ||
- name: worker_node_gpu | ||
instance_type: g4dn.2xlarge | ||
min_workers: 0 | ||
max_workers: 10 | ||
use_spot: false | ||
|
||
- name: worker_node_cpu | ||
instance_type: m5.2xlarge | ||
min_workers: 0 | ||
max_workers: 10 | ||
use_spot: false |
21 changes: 0 additions & 21 deletions
21
release/nightly_tests/dataset/compute_hetero_10x10_aws.yaml
This file was deleted.
Oops, something went wrong.
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