mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 08:31:42 +08:00
[autoscaler] Better explain min/max/initial worker settings (#9132)
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user