mirror of
https://github.com/wassname/ray.git
synced 2026-07-12 06:37:24 +08:00
cc8f7db246
- Surfaces local cluster usage - Increases visability of these instructions - Removes some docker docs (that are really out of scope for Ray documentation IMO) Closes #3517.
30 lines
822 B
YAML
30 lines
822 B
YAML
cluster_name: default
|
|
min_workers: 0
|
|
max_workers: 0
|
|
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: []
|
|
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
|