diff --git a/python/ray/autoscaler/local/example-full.yaml b/python/ray/autoscaler/local/example-full.yaml index d9389dcad..e674f68ce 100644 --- a/python/ray/autoscaler/local/example-full.yaml +++ b/python/ray/autoscaler/local/example-full.yaml @@ -1,19 +1,19 @@ # An unique identifier for the head node and workers of this cluster. cluster_name: default -## NOTE: Typically for local clusters, min_workers == initial_workers == max_workers. +## NOTE: Typically for local clusters, min_workers == initial_workers == max_workers == len(worker_ips). # The minimum number of workers nodes to launch in addition to the head # node. This number should be >= 0. -# Typically, min_workers == initial_workers == max_workers. +# Typically, min_workers == initial_workers == max_workers == len(worker_ips). min_workers: 0 # The initial number of worker nodes to launch in addition to the head node. -# Typically, min_workers == initial_workers == max_workers. +# Typically, min_workers == initial_workers == max_workers == len(worker_ips). initial_workers: 0 # The maximum number of workers nodes to launch in addition to the head node. # This takes precedence over min_workers. -# Typically, min_workers == initial_workers == max_workers. +# Typically, min_workers == initial_workers == max_workers == len(worker_ips). max_workers: 0 # Autoscaling parameters.