Fleets¶
Fleets enable efficient provisioning and management of clusters and instances, both in the cloud and on-prem. Once a fleet is created, it can be reused by dev environments, tasks, and services.
Define a configuration¶
To create a fleet, create a YAML file in your project folder. Its name must end with .dstack.yml
(e.g. .dstack.yml
or fleet.dstack.yml
are both acceptable).
What is a cloud fleet?
By default, when running dev environments, tasks, and services, dstack
reuses idle
instances from existing fleets or creates a new cloud fleet on the fly.
If you want more control over the lifecycle of cloud instances, you can create a cloud fleet manually. This allows you to reuse a fleet over a longer period and across multiple runs. You can also delete the fleet only when needed.
To create a cloud fleet, specify resources
, nodes
,
and other optional parameters.
type: fleet
# The name is optional, if not specified, generated randomly
name: fleet-distrib
# Number of instances
nodes: 2
# Ensure instances are inter-connected
placement: cluster
# Terminate if idle for 3 days
termination_idle_time: 3d
resources:
gpu:
# 24GB or more vRAM
memory: 24GB..
# Two or more GPUs
count: 2..
When you apply this configuration, dstack
will create cloud instances using the configured backends according
to the specified parameters.
Network
To ensure the nodes of the fleet are interconnected (e.g., if you'd like to use them for
multi-node tasks),
set placement
to cluster
.
In this case, dstack
will provision all nodes in the same backend and region and configure optimal
inter-node connectivity.
AWS
dstack
automatically enables Elastic Fabric Adapter
for instance types that support it. The following instance types with EFA are supported:
p5.48xlarge
, p4d.24xlarge
, g4dn.12xlarge
, g4dn.16xlarge
, g4dn.8xlarge
, g4dn.metal
,
g5.12xlarge
, g5.16xlarge
, g5.24xlarge
, g5.48xlarge
, g5.8xlarge
, g6.12xlarge
,
g6.16xlarge
, g6.24xlarge
, g6.48xlarge
, g6.8xlarge
, gr6.8xlarge
Currently, only one EFA interface is enabled regardless of the maximum number of interfaces supported by the instance type. This limitation will be lifted once this issue is fixed.
Note that cloud fleets aren't supported for the kubernetes
, vastai
, and runpod
backends.
What is an SSH fleet?
If you’d like to run dev environments, tasks, and services on arbitrary on-prem servers via dstack
, you can
create an SSH fleet.
To create an SSH fleet, specify ssh_config
to allow the dstack
server to connect to these servers
via SSH.
type: fleet
# The name is optional, if not specified, generated randomly
name: fleet-distrib-ssh
# Ensure instances are inter-connected
placement: cluster
# The user, private SSH key, and hostnames of the on-prem servers
ssh_config:
user: ubuntu
identity_file: ~/.ssh/id_rsa
hosts:
- 3.255.177.51
- 3.255.177.52
When you apply this configuration, dstack
will connect to the specified hosts using the provided SSH credentials,
install the dependencies, and configure these servers as a fleet.
Requirements
Hosts should be pre-installed with Docker.
Systems with NVIDIA GPUs should also be pre-installed with CUDA 12.1 and NVIDIA Container Toolkit .
Systems with AMD GPUs should also be pre-installed with AMDGPU-DKMS kernel driver (e.g. via native package manager or AMDGPU installer .)
The user should have passwordless sudo
access.
Environment variables
For SSH fleets, it's possible to pre-configure environment variables.
These variables will be used when installing the dstack-shim
service on hosts
and running containers.
For example, these variables can be used to configure a proxy:
type: fleet
name: my-fleet
placement: cluster
env:
- HTTP_PROXY=http://proxy.example.com:80
- HTTPS_PROXY=http://proxy.example.com:80
- NO_PROXY=localhost,127.0.0.1
ssh_config:
user: ubuntu
identity_file: ~/.ssh/id_rsa
hosts:
- 3.255.177.51
- 3.255.177.52
Network
Set placement
to cluster
if the hosts are interconnected
(e.g. if you'd like to use them for multi-node tasks).
In that case, by default, dstack
will automatically detect the private network.
You can specify the network
parameter manually.
Note that to use SSH fleets, you don't need any backends at all.
See
.dstack.yml
for all the options supported by the fleet configuration.
Create or update a fleet¶
To create or update the fleet, simply call the dstack apply
command:
$ dstack apply -f examples/fine-tuning/alignment-handbook/fleet-distributed.dstack.yml
Ensure the fleet is created¶
To ensure the fleet is created, use the dstack fleet
command:
$ dstack fleet
FLEET INSTANCE BACKEND GPU PRICE STATUS CREATED
my-fleet 0 gcp (europe-west-1) L4:24GB (spot) $0.1624 idle 3 mins ago
1 gcp (europe-west-1) L4:24GB (spot) $0.1624 idle 3 mins ago
Once the status of instances changes to idle
, they can be used by dev environments, tasks, and services.
Troubleshooting SSH fleets¶
Resources
If you're creating an SSH fleet, ensure that the GPU, memory, and disk size are detected properly. If GPU isn't detected, ensure that the hosts meet the requirements (see above).
If the status doesn't change to idle
after a few minutes, ensure that
the hosts meet the requirements (see above).
If the requirements are met but the fleet still fails to be created, check /root/.dstack/shim.log
for logs
on the hosts specified in ssh_config
.
Manage fleets¶
List fleets¶
The dstack fleet
command lists fleet instances and their status:
$ dstack fleet
FLEET INSTANCE BACKEND GPU PRICE STATUS CREATED
my-fleet 0 gcp (europe-west-1) L4:24GB (spot) $0.1624 idle 3 mins ago
1 gcp (europe-west-1) L4:24GB (spot) $0.1624 idle 3 mins ago
Delete fleets¶
When a fleet isn't used by run, you can delete it via dstack delete
:
$ dstack delete -f cluster.dstack.yaml
Delete the fleet my-gcp-fleet? [y/n]: y
Fleet my-gcp-fleet deleted
You can pass either the path to the configuration file or the fleet name directly.
To terminate and delete specific instances from a fleet, pass -i INSTANCE_NUM
.
Termination policy¶
If you want a fleet to be automatically deleted after a certain idle time,
you can set the termination_idle_time
property.
What's next?¶
- Read about dev environments, tasks, and services
- Join the community via Discord
Reference
See .dstack.yml for all the options supported by fleets, along with multiple examples.