Multi-instance
Best practices
Examples
CPU spot cluster, with on-demand backup
# cluster.yaml
node_groups:
- name: cpu-spot
instance_type: m5.large
min_instances: 0
max_instances: 5
spot: true
spot_config:
instance_distribution: [m5a.large, m5d.large, m5n.large, m5ad.large, m5dn.large, m4.large, t3.large, t3a.large, t2.large]
- name: cpu-on-demand
instance_type: m5.large
min_instances: 0
max_instances: 5On-demand cluster supporting CPU, GPU, and Inferentia
Spot cluster supporting CPU and GPU (with on-demand backup)
CPU spot cluster with multiple instance types and on-demand backup
Last updated