This document describes how to deploy an A3 Mega (a3-megagpu-8g) Slurm
cluster. These clusters provide high-performance network topologies that let you
efficiently run large-scale artificial intelligence (AI) and machine learning
(ML) training workloads.
A3 Mega (a3-megagpu-8g) machine types provide high-performance network
topologies that let you efficiently run large-scale artificial intelligence (AI)
and machine learning (ML) training workloads.
To learn more about the A3 Mega accelerator-optimized machine type, see the A3 Mega machine type section in the Compute Engine documentation.
Limitations
- You don't receive sustained use discounts and flexible committed use discounts for instances that use an A3 Mega machine type.
- You can only use an A3 Mega machine type in certain regions and zones.
- You can't use regional Persistent Disk on an instance that uses an A3 Mega machine type.
- The A3 Mega machine type is only available on the Sapphire Rapids CPU platform.
- Machine type changes aren't supported for A3 Mega machine type. To switch to or from this machine type, you must create a new instance.
- You can't run Windows operating systems on an A3 Mega machine type.
Before you begin
Before creating a Slurm cluster, if you haven't already done so, complete the following steps:
- Choose a consumption option: your choice of consumption option determines how you get
and use GPU resources.
To learn more, see Choose a consumption option.
- Obtain capacity: the process to obtain capacity differs for each consumption option.
To learn about the process to obtain capacity for your chosen consumption option, see Capacity overview.
- Ensure that you have enough Filestore capacity quota: you need to have enough
Filestore quota in your target region before deploying. The required minimum
capacity depends on the machine types in your cluster:
- A3 Mega: requires a minimum of 10 TiB (10,240 GiB) of HIGH_SCALE_SSD (zonal) capacity.
To check quota or request a quota increase, see the following:
- To check quota, see View API-specific quota.
- If you don't have enough quota, request a quota increase.
- Install Cluster Toolkit: to provision Slurm clusters, you must use
Cluster Toolkit version
v1.62.0or later.To install Cluster Toolkit, see Set up Cluster Toolkit.
In the Google Cloud console, activate Cloud Shell.
At the bottom of the Google Cloud console, a Cloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.
Required roles
To complete this tutorial, you need IAM roles granted to your Compute Engine default service account and your user account.
Get required roles for your Compute Engine default service account
To get the permissions that you need to deploy a Slurm cluster, ask your administrator to grant you the following IAM roles:
-
Storage Object Viewer (
roles/storage.objectViewer) on your project -
Compute Instance Admin (v1) (
roles/compute.instanceAdmin.v1) on your project -
Service Account User (
roles/iam.serviceAccountUser) on the service account itself
For more information about granting roles, see Manage access to projects, folders, and organizations.
You might also be able to get the required permissions through custom roles or other predefined roles.
Get required roles for your user account
To get the permissions that
you need to create a Cloud Storage bucket,
ask your administrator to grant you the
Storage Admin (roles/storage.admin)
IAM role on your project.
Set up Cloud Storage bucket
Cluster blueprints use Terraform modules to provision Cloud infrastructure. A best practice when working with Terraform is to store the state remotely in a version enabled file. On Google Cloud, you can create a Cloud Storage bucket that has versioning enabled.
To create this bucket and enable versioning from the CLI, run the following commands:
gcloud storage buckets create gs://BUCKET_NAME \
--project=PROJECT_ID \
--default-storage-class=STANDARD --location=BUCKET_REGION \
--uniform-bucket-level-access
gcloud storage buckets update gs://BUCKET_NAME --versioning
Replace the following:
BUCKET_NAME: a name for your Cloud Storage bucket that meets the bucket naming requirements.PROJECT_ID: your project ID.BUCKET_REGION: any available location.
Reserve capacity
If you plan to use reservation-bound clusters, you must reserve capacity. To reserve capacity, follow the instructions in this section. If you plan to use flex-start or Spot VMs, skip this section.
Reservations help ensure that you have the available resources to create A3 Mega VMs with the specified hardware (memory, vCPUs, and GPUs) and attached Local SSD disks whenever you need them. To review the different methods to reserve resources for creating VMs, see Choose a reservation type.
For example, to create an on-demand, specifically targeted reservation for A3 Mega VMs, use the
gcloud compute reservations
create command with the --require-specific-reservation flag:
gcloud compute reservations create RESERVATION_NAME \
--require-specific-reservation \
--project=PROJECT_ID \
--machine-type=a3-megagpu-8g \
--vm-count=NUMBER_OF_VMS \
--zone=ZONE
Replace the following variables:
RESERVATION_NAME: the name of the single-project reservation that you want to use.PROJECT_ID: the ID of your project.NUMBER_OF_VMS: the number of VMs needed for the cluster.ZONE: a zone that hasa3-megagpu-8gmachine types. To review the zones where you can create A3 Mega VMs, see Accelerator availability.
After you destroy your cluster, you can delete the reservation if you don't need it anymore. For information, see Delete reservations.
Create a deployment file
The parameters that you need to add to your deployment file depend on the consumption option that you're using for your deployment. Select the tab that corresponds to your consumption option's provisioning model.
Reservation-bound
To create your deployment file, create a YAML file named
a3mega-slurm-deployment.yaml and add the following content.
terraform_backend_defaults:
type: gcs
configuration:
bucket: BUCKET_NAME
vars:
deployment_name: DEPLOYMENT_NAME
project_id: PROJECT_ID
region: REGION
zone: ZONE
network_name_system: SYSTEM_NETWORK_NAME
subnetwork_name_system: SYSTEM_SUBNET_NAME
slurm_cluster_name: CLUSTER_NAME
a3mega_cluster_size: NUMBER_OF_VMS
a3mega_reservation_name: RESERVATION_NAME
a3mega_partition_name: PARTITION_NAME
Replace the following:
BUCKET_NAME: the name of your Cloud Storage bucket, which you created in the previous section.DEPLOYMENT_NAME: a name for your deployment. If creating multiple clusters, ensure that you select a unique name for each one.PROJECT_ID: your project ID.SYSTEM_NETWORK_NAME: the name of the VPC network to use for the system network.SYSTEM_SUBNET_NAME: the name of the subnetwork to use for the system network.CLUSTER_NAME: a name for your Slurm cluster.REGION: the region that has the reserved machines.ZONE: the zone where you want to provision the cluster. If you're using a reservation-based consumption option, the region and zone information was provided by your account team when the capacity was delivered.NUMBER_OF_VMS: the number of VMs that you want for the cluster.RESERVATION_NAME: the name of your reservation.PARTITION_NAME: a name for the Slurm partition.
Flex-start
To create your deployment file, create a YAML file named
a3mega-slurm-deployment.yaml and add the following content.
terraform_backend_defaults:
type: gcs
configuration:
bucket: BUCKET_NAME
vars:
deployment_name: DEPLOYMENT_NAME
project_id: PROJECT_ID
region: REGION
zone: ZONE
network_name_system: SYSTEM_NETWORK_NAME
subnetwork_name_system: SYSTEM_SUBNET_NAME
slurm_cluster_name: CLUSTER_NAME
a3mega_cluster_size: NUMBER_OF_VMS
a3mega_dws_flex_enabled: true
Replace the following:
BUCKET_NAME: the name of your Cloud Storage bucket, which you created in the previous section.DEPLOYMENT_NAME: a name for your deployment. If creating multiple clusters, ensure that you select a unique name for each one.PROJECT_ID: your project ID.SYSTEM_NETWORK_NAME: the name of the VPC network to use for the system network.SYSTEM_SUBNET_NAME: the name of the subnetwork to use for the system network.CLUSTER_NAME: a name for your Slurm cluster.REGION: the region where you want to provision your cluster.ZONE: the zone where you want to provision your cluster.NUMBER_OF_VMS: the number of VMs that you want for the cluster.
This deployment provisions static compute nodes,
which means that the cluster has a set number of nodes at all times. If you want to enable your
cluster to autoscale instead, use examples/machine-learning/a3-megagpu-8g/a3mega-slurm-blueprint.yaml file and edit the values of
node_count_static and node_count_dynamic_max to match the following:
node_count_static: 0
node_count_dynamic_max: $(vars.a3mega_cluster_size)
Spot
To create your deployment file, create a YAML file named
a3mega-slurm-deployment.yaml and add the following content.
terraform_backend_defaults:
type: gcs
configuration:
bucket: BUCKET_NAME
vars:
deployment_name: DEPLOYMENT_NAME
project_id: PROJECT_ID
region: REGION
zone: ZONE
network_name_system: SYSTEM_NETWORK_NAME
subnetwork_name_system: SYSTEM_SUBNET_NAME
slurm_cluster_name: CLUSTER_NAME
a3mega_cluster_size: NUMBER_OF_VMS
a3mega_enable_spot_vm: true
Replace the following:
BUCKET_NAME: the name of your Cloud Storage bucket, which you created in the previous section.DEPLOYMENT_NAME: a name for your deployment. If creating multiple clusters, ensure that you select a unique name for each one.PROJECT_ID: your project ID.SYSTEM_NETWORK_NAME: the name of the VPC network to use for the system network.SYSTEM_SUBNET_NAME: the name of the subnetwork to use for the system network.CLUSTER_NAME: a name for your Slurm cluster.REGION: the region where you want to provision your cluster.ZONE: the zone where you want to provision your cluster.NUMBER_OF_VMS: the number of VMs that you want for the cluster.
Provision a Slurm cluster
Cluster Toolkit provisions the cluster based on the deployment file that you created in the previous step and the default cluster blueprint. For more information about the software that is installed by the blueprint, including NVIDIA drivers and CUDA, learn more about Slurm custom images.
To provision the cluster, use the ./gcluster deploy command from the
Cluster Toolkit directory. This step takes approximately 20-30 minutes.
./gcluster deploy -d examples/machine-learning/a3-megagpu-8g/a3mega-slurm-deployment.yaml \ examples/machine-learning/a3-megagpu-8g/a3mega-slurm-blueprint.yaml
Connect to the A3 Mega Slurm cluster
To access your cluster, you must login to the Slurm login node. To sign in, you can use either Google Cloud console or Google Cloud CLI.
Console
Go to the Compute Engine > VM instances page.
Locate the login node. It has a similar name to
DEPLOYMENT_NAME+login-001.From the Connect column of the login node, click SSH.
gcloud
To connect to the login node, complete the following steps:
Identify the login node by using the
gcloud compute instances listcommand.gcloud compute instances list \ --zones=
ZONE\ --filter="name ~ login" --format="value(name)"If the output lists multiple Slurm clusters, you can identify your login node by the
DEPLOYMENT_NAMEthat you specified.Use the
gcloud compute sshcommand to connect to the login node.gcloud compute ssh LOGIN_NODE \ --zone=
ZONE--tunnel-through-iapReplace the following:
ZONE: the zone where the VMs for your cluster are located.LOGIN_NODE: the name of the login node, which you identified in the previous step.
Test network performance on the Slurm cluster
We recommended that you validate the functionality of provisioned clusters. To do so, use NCCL tests, which are NVIDIA Collective Communications Library (NCCL) tests that are optimized for the Google environment.
Redeploy the Slurm cluster
If you need to increase the number of compute nodes or add new partitions to
your cluster, you might need to update configurations for your Slurm cluster by
redeploying. Redeployment can be sped up by using an existing image from a
previous deployment. To avoid creating new images during a redeploy, specify the
--only flag.
To redeploy the cluster using an existing image run the following command:
./gcluster deploy -d \ examples/machine-learning/a3-megagpu-8g/a3mega-slurm-deployment.yaml \ examples/machine-learning/a3-megagpu-8g/a3mega-slurm-blueprint.yaml \ --only primary,cluster -w
This command is only for redeployments where an image already exists, it only redeploys the cluster and its infrastructure.
Destroy the Slurm cluster
By default, the A3 Mega blueprints enable deletion protection on the Filestore instance. For the Filestore instance to be deleted when destroying the Slurm cluster, learn how to set or remove deletion protection on an existing instance to disable deletion protection before running the destroy command.
Disconnect from the cluster if you haven't already.
Before running the destroy command, navigate to the root of the Cluster Toolkit directory. By default, DEPLOYMENT_FOLDER is located at the root of the Cluster Toolkit directory.
To destroy the cluster, use the
./gcluster destroycommand:./gcluster destroy DEPLOYMENT_FOLDER --auto-approve
Replace
DEPLOYMENT_FOLDERwith the name of the deployment folder. It's typically the same as DEPLOYMENT_NAME.When destruction is complete you should see a message similar to the following:
Destroy complete! Resources: xx destroyed.
To learn how to cleanly destroy infrastructure and for advanced manual
deployment instructions, see the deployment folder located at the root of
the Cluster Toolkit directory: DEPLOYMENT_FOLDER/instructions.txt.
What's next
- Verify reservation consumption
- View the topology of a compute instance
- Learn how to manage host events:
- Monitor VMs in your Slurm cluster
- Test and optimize with NCCL/gIB
- Report faulty host