mirror of
https://github.com/wassname/ray.git
synced 2026-07-22 13:00:49 +08:00
33 lines
895 B
YAML
33 lines
895 B
YAML
cluster_name: default
|
|
min_workers: 0
|
|
max_workers: 0
|
|
initial_workers: 0
|
|
autoscaling_mode: default
|
|
docker:
|
|
image: ""
|
|
container_name: ""
|
|
target_utilization_fraction: 0.8
|
|
idle_timeout_minutes: 5
|
|
provider:
|
|
type: local
|
|
head_ip: YOUR_HEAD_NODE_HOSTNAME
|
|
worker_ips: []
|
|
auth:
|
|
ssh_user: YOUR_USERNAME
|
|
ssh_private_key: ~/.ssh/id_rsa
|
|
head_node: {}
|
|
worker_nodes: {}
|
|
file_mounts: {}
|
|
setup_commands: []
|
|
head_setup_commands: []
|
|
worker_setup_commands: []
|
|
initialization_commands: []
|
|
setup_commands:
|
|
- source activate ray && pip install -U ray
|
|
head_start_ray_commands:
|
|
- source activate ray && ray stop
|
|
- source activate ray && ulimit -c unlimited && ray start --head --redis-port=6379 --autoscaling-config=~/ray_bootstrap_config.yaml
|
|
worker_start_ray_commands:
|
|
- source activate ray && ray stop
|
|
- source activate ray && ray start --redis-address=$RAY_HEAD_IP:6379
|