Hyungsik Jo
Hyungsik Jo

Reputation: 146

Is it possible to change the CPU specification of a VM created with a slurm cluster in GCP?

The core and capacity of the slurm cluster VM created on GCP were set too low.

I would like to change to a higher specification.

However, unlike general VMs, slurm has a total of 3 VMs.

  1. image
  2. controller
  3. login

I'm wondering which of these three things I need to change to apply to slurm .

Thank you

Upvotes: 0

Views: 114

Answers (1)

dany L
dany L

Reputation: 2654

Three types of VMs will be created like you said

1 - controller node
N - login nodes
Multiple partitions with their own machine type, gpu type/count, disk size, disk type, cpu platform, and maximum node count.

Now go to Menu >compute engine > VM instance > go inside each one and look at the Observability tab. This will give you an indication of which VM is starving for resources.

Also you may check this documentation for how the architecture is set up, and from diagram it looks like you want to give more power to the Compute Vms.

Upvotes: 2

Related Questions