Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

KVM as hypervisor choice in GCE

As per wikipedia, google compute engine uses KVM as hypervisor. I can see mention about vcpu while creating an instance.

Why KVM? Why not VMware OR Xen? I mean what is the specific reason to choose KVM as a Hypervisor choice?

PS: Even Xen is a Open source product.

like image 713
kumar Avatar asked May 13 '14 13:05

kumar


People also ask

Does GCP support KVM?

Google Compute Engine uses KVM as the hypervisor, and supports guest images running Linux and Microsoft Windows which are used to launch virtual machines based on the 64 bit x86 architecture.

What is virtualization in GCP?

Nested virtualization lets you run virtual machine (VM) instances inside of other VMs so you can create your own virtualization environments. To support nested virtualization, Compute Engine adds Intel VT-x instructions to VMs, so when you create a VM, the hypervisor that is already on that VM can run additional VMs.

Does Google use Xen?

Today, big companies such as Amazon, AMD, Bromium, Cisco, Citrix, Google, Intel, Oracle, Samsung, and Verizon are using Xen in products and services including Citrix Hypervisor, XCP-ng, Oracle VM Server, IBM Cloud, and Amazon EC2.

How do I migrate vmware to Google cloud?

From the vSphere Web Client, select the desired Virtual Machine. Right-click that VM, then select one of the following: To run the VM on Compute Engine, select Migrate for Google Compute Engine Operations > Run-in-Cloud. To migrate the VM, select Migrate for Google Compute Engine > Migrate.


1 Answers

There were a number of factors in the decision, you might not be surprised to learn. :-)

One important factor was compatibility between KVM and existing isolation/scaling processes at Google. (cgroups aka "containers") This allows Google to reuse the same mechanisms that it uses to ensure performance of applications like websearch and gmail to provide consistent performance between VMs scheduled on the machine. This helps GCE avoid noisy neighbor problems.

As you're probably aware, Google has had a long history of Linux kernel development; using KVM allows Google to leverage that talent for GCE. In addition, the hypervisor/hardware emulation split in KVM (where the hypervisor implemented by KVM only emulates a few low-level devices/features, and defers the remaining emulation the the process that opens /dev/kvm) allows for development of virtual devices that have access to the full range of user-space software, including infrastructure like Colossus and BigTable where needed.

Xen, VMware, and HyperV are also great hypervisors and machine emulators, but hopefully that gives you a glimpse into some of the reasons that KVM was a good fit for Google.

like image 144
E. Anderson Avatar answered Sep 28 '22 18:09

E. Anderson