mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00

m5.16xlarge instances have 64 CPU and 256GB memory, which are overkill for scheduling tests that do not have a lot of computations. Use smaller instance m5.4xlarge to save cost and make allocating instances easier.
26 lines
576 B
YAML
26 lines
576 B
YAML
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
|
|
region: us-west-2
|
|
|
|
max_workers: 999
|
|
|
|
head_node_type:
|
|
name: head_node
|
|
instance_type: m5.4xlarge
|
|
resources:
|
|
# Assume the node has 64 CPU instead of 16.
|
|
# This should be fine since each task has little
|
|
# computation in scheduling tests.
|
|
cpu: 64
|
|
custom_resources:
|
|
node: 1
|
|
|
|
worker_node_types:
|
|
- name: worker_node
|
|
instance_type: m5.4xlarge
|
|
min_workers: 31
|
|
max_workers: 31
|
|
use_spot: false
|
|
resources:
|
|
cpu: 64
|
|
custom_resources:
|
|
node: 1
|