Jump to: navigation, search

Difference between revisions of "LibvirtXMLCPUModel"

m (Text replace - "__NOTOC__" to "")
(Explain that host-model can cause the guest OS kernel panic and should be avioded)
 
Line 11: Line 11:
 
It is also possible to request the host CPU model in two ways
 
It is also possible to request the host CPU model in two ways
  
* '''"host-model"''' - this causes libvirt to identify the named CPU model which most closely matches the host from the above list, and then request additional CPU flags to complete the match. This should give close to maximum functionality/performance, which maintaining good  reliability/compatibility if the guest is migrated to another host with slightly different host CPUs.
+
* '''"host-model"''' - this causes libvirt to identify the named CPU model which most closely matches the host from the above list, and then request additional CPU flags to complete the match. This should give close to maximum functionality/performance, which maintaining good  reliability/compatibility if the guest is migrated to another host with slightly different host CPUs. '''Beware''', due to the way libvirt detects host CPU, CPU configuration created using '''host-model''' may not work as expected. The guest CPU may confuse guest OS (i.e. even cause a kernel panic) by using a combination of CPU features and other parameters (such as CPUID level) that don't work.
 +
 
 
* '''"host-passthrough"''' - this causes libvirt to tell KVM to passthrough the host CPU with no modifications. The difference to host-model, instead of just matching feature flags, every last detail of the host CPU is matched. This gives absolutely best performance, and can be important to some apps which check low level CPU details, but it comes at a cost wrt migration. The guest can only be migrated to an exactly matching host CPU.
 
* '''"host-passthrough"''' - this causes libvirt to tell KVM to passthrough the host CPU with no modifications. The difference to host-model, instead of just matching feature flags, every last detail of the host CPU is matched. This gives absolutely best performance, and can be important to some apps which check low level CPU details, but it comes at a cost wrt migration. The guest can only be migrated to an exactly matching host CPU.
  

Latest revision as of 06:24, 11 November 2016

The libvirt driver in Essex and earlier uses the Cheetah templating system when generating XML for guests. This had many downsides (see http://wiki.openstack.org/LibvirtXMLConfigAPIs), but the one positive thing was that it was possible for end users deploying Nova to customize the XML to add features not officially supported. One of the most important missing features was the ability to configure the CPU model exposed to KVM virtual machines. There are a couple of reasons for wanting to specify the CPU model

  • To maximise performance of virtual machines by exposing new host CPU features to the guest
  • To ensure a consistent default CPU across all machines, removing reliance of variable QEMU defaults.

In libvirt, the CPU is specified by providing a base CPU model name (which is a shorthand for a set of feature flags), a set of additional feature flags, and the topology (sockets/cores/threads). The libvirt KVM driver provides a number of standard CPU model names (defined in /usr/share/libvirt/cpu_map.xml):

  • "486", "pentium", "pentium2", "pentiumpro", "coreduo", "n270", "pentiumpro", "qemu32", "kvm32", "cpu64-rhel5", "cpu64-rhel5", "kvm64", "pentiumpro", "Conroe" "Penryn", "Nehalem", "Westmere", "pentiumpro", "cpu64-rhel5", "cpu64-rhel5", "Opteron_G1", "Opteron_G2", "Opteron_G3, "Opteron_G4"

It is also possible to request the host CPU model in two ways

  • "host-model" - this causes libvirt to identify the named CPU model which most closely matches the host from the above list, and then request additional CPU flags to complete the match. This should give close to maximum functionality/performance, which maintaining good reliability/compatibility if the guest is migrated to another host with slightly different host CPUs. Beware, due to the way libvirt detects host CPU, CPU configuration created using host-model may not work as expected. The guest CPU may confuse guest OS (i.e. even cause a kernel panic) by using a combination of CPU features and other parameters (such as CPUID level) that don't work.
  • "host-passthrough" - this causes libvirt to tell KVM to passthrough the host CPU with no modifications. The difference to host-model, instead of just matching feature flags, every last detail of the host CPU is matched. This gives absolutely best performance, and can be important to some apps which check low level CPU details, but it comes at a cost wrt migration. The guest can only be migrated to an exactly matching host CPU.

The range of libvirt functionality with regards to CPU models is quite broad and described in http://berrange.com/posts/2010/02/15/guest-cpu-model-configuration-in-libvirt-with-qemukvm/. The 'cpu_compare' method in nova.virt.libvirt.connection already deals with checking CPU compatibility between hosts, to allow the schedular to ensure correct placement of guests during migration. So the primary missing feature for Nova is simply the ability to configure the guest CPU mode + model

For the most part it will be sufficient for the host administrator to specify the guest CPU config in the per-host configuration file (/etc/nova/nova.conf). This will be achieved by introducing two new configuration parameters

  • libvirt_cpu_mode = custom|host-model|host-passthrough
  • libvirt_cpu_model = ...one of the named models from /usr/share/libvirt/cpu_map.xml.... (This param is only valid if libvirt_cpu_mode=custom)

eg1


 libvirt_cpu_mode = host-model

eg2


 libvirt_cpu_mode = custom
 libvirt_cpu_model = Opteron_G3

In the future it may be desirable to add a CPU model configuration parameter to the instance types

One complexity is that libvirt prior to 0.9.10 did not have explicit support for the host-model CPU mode. Instead applications were required to copy the model from the host capabilities XML into the guest XML. Since Nova supports a min libvirt of 0.9.7, backwards compat code will be required for this.