liobr
liobr

Reputation: 31

Is there a way to identify if a custom machine type is N1 or N2 on GCP?

I'm working to identify if a machine type is N1, N2 or E2 on GCE, but I can't identify this if the machine type is custom

Ex: custom (6 vCPUs, 10 GB memory) vs n1-standard-2 (2 vCPUs, 7.5 GB memory)

Is there a way to get to know this?

Upvotes: 3

Views: 4736

Answers (2)

Wael
Wael

Reputation: 1

You can check the CPU platform:

  • Intel Skylake for N1
  • Intel Cascade Lake for N2

Upvotes: 0

Chets
Chets

Reputation: 100

A virtual machine can be mapped on three main parameters. your CPU core, RAM and processor(and yes of course on the brand ie. intel) in GHz. To map and existing custom machine type, you would need to compare all these parameters. You can find more detail about each machine type and it's speed here N1D machine types

Upvotes: 3

Related Questions