SlideShare uma empresa Scribd logo
1 de 27
Baixar para ler offline
Performance tuning Xen

     Roger Pau Monn´
                   e
    roger.pau@citrix.com



Antwerp – 8th of April, 2013
Xen Architecture    Xen virtualization modes     Support in OSes      Dom0 tunning     Specific VM options   Conclusions



Xen Architecture

                    Control Domain
                    NetBSD or Linux

                                 device model
                                 (qemu)

                                 toolstack              Paravirtualized
                                                             (PV)                 Fully
                                                           Domain:             Virtualized
                                                        NetBSD or Linux          (HVM)
                                                                                Domain:
                      Hardware          netback            netfront            Windows,
                      Drivers           blkback            blkfront            FreeBSD...



                                                                       Xen Hypervisor

                       I/O Devices             CPU             Memory           Hardware


  Antwerp – 8th of April, 2013                                Performance tuning Xen                            2 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Paravirtualization

              Virtualization technique developed in the late 90s
              Designed by:
                      XenoServer research project at Cambridge University
                      Intel
                      Microsoft labs
              x86 instructions behave differently in kernel or user mode,
              options for virtualization were full software emulation or
              binary translation.
                      Design a new interface for virtualization
                      Allow guests to collaborate in virtualization
                      Provide new interfaces for virtualized guests that allow to
                      reduce the overhead of virtualization
              The result of this work is what we know today as
              paravirtualiztion

  Antwerp – 8th of April, 2013                              Performance tuning Xen                            3 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Paravirtualization



              All this changes lead to the following interfaces being
              paravirtualized:
                      Disk and network interfaces
                      Interrupts and timers
                      Boot directly in the mode the kernel wishes to run (32 or
                      64bits)
                      Page tables
                      Privileged instructions




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            4 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Full virtualization




              With the introduction of hardware virtualization extensions
              Xen is able to run unmodified guests
              This requires emulated devices, which are handled by Qemu
              Makes use of nested page tables when available.
              Allows to use PV interfaces if guest has support for them.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            5 / 27
Xen Architecture    Xen virtualization modes   Support in OSes     Dom0 tunning           Specific VM options      Conclusions



The full virtualization spectrum

              VS      Software virtualization                                 Poor performance
              VH      Hardware virtualization                                 Room for improvement
              PV      Paravirtualized                                         Optimal performance




                                                                                                        es ns
                                                                                                 ge str rd
                                                                                                      bl tio
                                                                                                              s

                                                                                                             a
                                                                                                           er

                                                                                                          bo

                                                                                                         uc
                                                                                     tim
                                                                           k




                                                                                        an ge her
                                                                         or
                                                                       tw




                                                                                                   ot
                                                                                   d




                                                                                                   ta
                                                                                               pa in
                                                                                an

                                                                                           m
                                                                      ne




                                                                                           d d
                                                                              ts

                                                                                       ed
                                                                   d

                                                                           up




                                                                                             ile
                                                                 an




                                                                                     at
                                                                         rr




                                                                                          iv
                                                                                   ul
                                                             isk

                                                                       te




                                                                                          Pr
                                                                               Em
                                                                      In
                                 HVM                        D
                                                            VS        VS        VS        VH
                                 HVM with PV drivers        PV        VS        VS        VH
                                 PVHVM                      PV        PV        VS        VH
                                 PV                         PV        PV       PV         PV



  Antwerp – 8th of April, 2013                              Performance tuning Xen                                    6 / 27
Xen Architecture     Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Guest support


              List of OSes and virtualization support:

                                           PV     PVHVM           HVM with PV drivers          HVM
                   Linux (PVOPS)          YES        YES                   YES                  YES
                   Windows                 NO        NO                    YES                  YES
                   NetBSD                 YES        NO                    NO                   YES
                   FreeBSD                 NO        NO                    YES                  YES
                   OpenBSD                 NO        NO                    NO                   YES
                   DragonflyBSD             NO        NO                    NO                   YES




  Antwerp – 8th of April, 2013                               Performance tuning Xen                            7 / 27
Xen Architecture    Xen virtualization modes               Support in OSes          Dom0 tunning         Specific VM options   Conclusions



Kernbench

                                                          Kernbench
                          Results: percentage of native, the lower the better
                    140

                    135

                    130

                    125

                    120

                    115

                    110

                    105

                    100

                     95

                     90
                                             PV on HVM 32 bit                   HVM 32 bit                   PV 32 bit
                          PV on HVM 64 bit                      HVM 64 bit                   PV 64 bit




  Antwerp – 8th of April, 2013                                               Performance tuning Xen                               8 / 27
Xen Architecture    Xen virtualization modes        Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Specjbb2005
                                           SPECjbb2005
                   Results: percentage of native, the higher the better
                     100

                      90

                      80

                      70

                      60

                      50

                      40

                      30

                      20

                      10

                       0
                                        PV 64 bit                            PV on HVM 64 bit




  Antwerp – 8th of April, 2013                                   Performance tuning Xen                            9 / 27
Xen Architecture    Xen virtualization modes          Support in OSes           Dom0 tunning          Specific VM options   Conclusions



Iperf

                                                         Iperf tcp
                        Results: gbit/sec, the higher the better
                    8

                    7

                    6

                    5

                    4

                    3

                    2

                    1

                    0
                          PV 64 bit   PV on HVM 64 bit PV on HVM 32 bit     PV 32 bit    HVM 64 bit      HVM 32 bit




  Antwerp – 8th of April, 2013                                            Performance tuning Xen                               10 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



What virtualization mode should I choose?



              Linux supports several virtualization modes, which one is
              better?
                      Depends on the workload.
              Generally PV mode will provide better performance for IO,
              but when using 64bit guests PV can be slower.
              There isn’t a fixed rule here, the best way to find out is to
              evaluate the workload on the different kind of guests.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            11 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Dom0




              Dom0 is the most important guest in the Xen infraestructure.
              It can become a bottleneck easily if not configured correctly.
              Dom0 is in charge of creating the guests, but usually also
              provides the backends and device models for guests.
              Xen provides some options to tune performance of Dom0




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            12 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



dom0 mem boot option


              dom0 mem tell Xen how much memory can be used by the
              Dom0.
              If not set all memory will be assigned to the Dom0, and
              ballooning will be used when launching new guests, reducing
              the memory used by the Dom0.
              The value should be set depending on the usage, HVM guests
              consume more memory in the Dom0 because they need a
              Qemu instance.
              If dom0 mem is set make sure to disable ballooning in the
              toolstack by setting autoballoon=0 in /etc/xen/xl.conf.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            13 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



dom0 max vcpus and dom0 vcpus pin


              dom0 max vcpus: maximum number of CPUs the Dom0 will
              see, also depends on the utilization of the Dom0 and the type
              of guests.
              dom0 vcpus pin: pinning Dom0 vcpus to physical CPUs is a
              good idea for systems running IO intensive guests.
              Setting up the serial cable: although not important for
              performance, setting up a serial cable is really important when
              debugging. For more info:
              http://wiki.xen.org/wiki/Xen_Serial_Console




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            14 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Dom0 Boot tunning options



              For example if I had to set up a Dom0 on a machine with 8
              CPUs and 8GB of RAM I would use the following boot line:
              com1=115200,8n1 console=com1 dom0 mem=1024M
              dom0 max vcpus=2 dom0 vcpus pin.
              More info about boot parameters can be found at:
              http://xenbits.xen.org/docs/unstable/misc/
              xen-command-line.html.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            15 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



General performance notes



              Always try to use physical disks as backends. Xen has mainly
              two ways of connecting disks to the guest depending on the
              format of the image, if it’s a block device it will be attached
              using blkback, which is inside the Linux kernel and it’s faster.
              Take into account the number of CPUs your physical box has
              and avoid using more VCPUS than PCPUS if running
              performance intensive applications.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            16 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Pinning CPUs

              You can pin VCPUs to PCPUs in order to obtain better
              performance or to distribute the workload across your CPUs
              to suit your needs. For example low latency VMs can be
              exclusively pinned to different PCPUs.
              cpus: allows to select in which CPUs the guest can run. The
              list can also contain specific CPUs where the guest is not
              allowed to run. Specifying ”0-3,5,ˆ1” allows the guest to run
              on CPUs 0,2,3,5.
              If Dom0 is pinned to certain PCPUs avoid running guests on
              those PCPUs to obtain better performance. If Dom0 is pinned
              to CPU 0, use the following CPU mask in order to prevent
              other guests from running on CPU 0: ”ˆ0”.


  Antwerp – 8th of April, 2013                              Performance tuning Xen                            17 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Scheduler options

              The Xen scheduler has several options that can also be
              tunned from the guest configuration file, in order to give a
              certain guest more share from the processor or to schedule it
              more frequently.
              cpu weight: weight of the domain in terms of CPU utilization.
              For example a domain with a weight of 512 will get twice as
              much CPU than a domain with a weight of 256. Values range
              from 1 to 65535.
              cap: fixes the maximum amount of CPU a domain is able to
              consume. Expressed in percentage of one physical CPU. 100
              is one CPU, 50 half a CPU, 400 four CPUs.
              More info can be found at http:
              //xenbits.xen.org/docs/unstable/man/xl.cfg.5.html

  Antwerp – 8th of April, 2013                              Performance tuning Xen                            18 / 27
Xen Architecture    Xen virtualization modes     Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Driver Domains I

                    Control Domain
                    NetBSD or Linux

                                 device model
                                 (qemu)

                                 toolstack                                     Paravirtualized
                                                                                    (PV)
                                                                                  Domain:
                                                                               NetBSD or Linux
                      Hardware          netback                                    netfront
                      Drivers           blkback                                    blkfront




                                                                      Xen Hypervisor

                       I/O Devices             CPU             Memory           Hardware


  Antwerp – 8th of April, 2013                                Performance tuning Xen                            19 / 27
Xen Architecture    Xen virtualization modes     Support in OSes      Dom0 tunning     Specific VM options   Conclusions



Driver Domains II

                    Control Domain
                    NetBSD or Linux

                                 device model
                                 (qemu)

                                 toolstack                                      Paravirtualized
                                                          Driver Domain
                                                                                     (PV)
                                                                                   Domain:
                                                                                NetBSD or Linux
                      Hardware          netback                    netback           netfront
                      Drivers           blkback                    blkback           blkfront




                                                                       Xen Hypervisor

                       I/O Devices             CPU             Memory           Hardware


  Antwerp – 8th of April, 2013                                Performance tuning Xen                            20 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Driver Domains III




              Driver domains allow to offload work normally done in Dom0
              to other domains.
              It also provides better security, less surface for exploits in
              Dom0.
              This is a current work-in-process.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            21 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



HVM specific I



              HVM guest require the usage of assisted paging, in order for
              the guest to see the memory area as contiguous when it’s not.

                      HAP: (Hardware Assisted Paging) is used by default since it
                      tends to perform better under most workloads
                      shadow: was introduced before HAP, and can provide better
                      performance under certain workloads that have low TLB
                      locality (for example databases or java applications).
              Again, the best way to know is to try the workload by yourself.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            22 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



HVM specific II



              HVM domains require a Qemu instance in Dom0 to perform
              the necessary device emulation.
              This might be a bottleneck if running a lot of HVM domains
              in the same node, since each one requires a Qemu instance
              running in Dom0 that uses both Dom0 CPU and Memory.
              To avoid this, we can launch the Qemu process in a different
              domain called ”Stubdomain”.
              This allows to offload work from Dom0.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            23 / 27
Xen Architecture    Xen virtualization modes     Support in OSes    Dom0 tunning        Specific VM options   Conclusions



HVM specific III

                    Control Domain
                    NetBSD or Linux

                                 device model
                                 (qemu)
                                                                                          Fully
                                 toolstack                                             Virtualized
                                                                                         (HVM)
                                                                                        Domain:
                                                                                       Windows,
                                                                                       FreeBSD...
                      Hardware          netback
                      Drivers           blkback




                                                                      Xen Hypervisor

                       I/O Devices             CPU             Memory           Hardware


  Antwerp – 8th of April, 2013                                Performance tuning Xen                             24 / 27
Xen Architecture    Xen virtualization modes     Support in OSes      Dom0 tunning      Specific VM options   Conclusions



HVM specific IV

                    Control Domain
                    NetBSD or Linux

                                 device model
                                 (qemu)
                                                                                          Fully
                                 toolstack                   stubdomain                Virtualized
                                                                                         (HVM)
                                                                   MiniOS               Domain:
                                                                   Qemu                Windows,
                                                                                       FreeBSD...
                      Hardware          netback
                      Drivers           blkback




                                                                       Xen Hypervisor

                       I/O Devices             CPU             Memory           Hardware


  Antwerp – 8th of April, 2013                                Performance tuning Xen                             25 / 27
Xen Architecture    Xen virtualization modes   Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Conclusions



              Xen offers a wide variety of virtualization modes.
              The best way to know which mode will bring better
              performance is to try it, although there are several tips that
              apply to all guests.
              We are constantly working on performance improvements, so
              keep updated in order to get the best performance.




  Antwerp – 8th of April, 2013                              Performance tuning Xen                            26 / 27
Xen Architecture     Xen virtualization modes    Support in OSes    Dom0 tunning       Specific VM options   Conclusions



Q&A




                                                  Thanks
                                                Questions?
                   http://wiki.xen.org/wiki/Xen_Best_Practices
                   http://wiki.xen.org/wiki/Xen_Common_Problems




  Antwerp – 8th of April, 2013                                Performance tuning Xen                            27 / 27

Mais conteúdo relacionado

Mais procurados

Linuxcon EU : Virtualization in the Cloud featuring Xen and XCP
Linuxcon EU : Virtualization in the Cloud featuring Xen and XCPLinuxcon EU : Virtualization in the Cloud featuring Xen and XCP
Linuxcon EU : Virtualization in the Cloud featuring Xen and XCPThe Linux Foundation
 
LinuxCon Japan 13 : 10 years of Xen and Beyond
LinuxCon Japan 13 : 10 years of Xen and BeyondLinuxCon Japan 13 : 10 years of Xen and Beyond
LinuxCon Japan 13 : 10 years of Xen and BeyondThe Linux Foundation
 
Xen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,Pavlicek
Xen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,PavlicekXen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,Pavlicek
Xen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,PavlicekThe Linux Foundation
 
XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...
XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...
XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...The Linux Foundation
 
Securing your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security featuresSecuring your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security featuresThe Linux Foundation
 
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell PavlicekSecuring Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicekbuildacloud
 
LCEU13: Securing your cloud with Xen's advanced security features - George Du...
LCEU13: Securing your cloud with Xen's advanced security features - George Du...LCEU13: Securing your cloud with Xen's advanced security features - George Du...
LCEU13: Securing your cloud with Xen's advanced security features - George Du...The Linux Foundation
 
XPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, Intel
XPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, IntelXPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, Intel
XPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, IntelThe Linux Foundation
 
Bare-Metal Hypervisor as a Platform for Innovation
Bare-Metal Hypervisor as a Platform for InnovationBare-Metal Hypervisor as a Platform for Innovation
Bare-Metal Hypervisor as a Platform for InnovationThe Linux Foundation
 
Xen Project Hypervisor for the Cloud
Xen Project Hypervisor for the CloudXen Project Hypervisor for the Cloud
Xen Project Hypervisor for the CloudThe Linux Foundation
 
Linaro Connect Asia 13 : Citrix - Xen on ARM plenary session
Linaro Connect Asia 13 : Citrix - Xen on ARM plenary sessionLinaro Connect Asia 13 : Citrix - Xen on ARM plenary session
Linaro Connect Asia 13 : Citrix - Xen on ARM plenary sessionThe Linux Foundation
 
Windsor: Domain 0 Disaggregation for XenServer and XCP
	Windsor: Domain 0 Disaggregation for XenServer and XCP	Windsor: Domain 0 Disaggregation for XenServer and XCP
Windsor: Domain 0 Disaggregation for XenServer and XCPThe Linux Foundation
 

Mais procurados (20)

Linuxcon EU : Virtualization in the Cloud featuring Xen and XCP
Linuxcon EU : Virtualization in the Cloud featuring Xen and XCPLinuxcon EU : Virtualization in the Cloud featuring Xen and XCP
Linuxcon EU : Virtualization in the Cloud featuring Xen and XCP
 
LinuxCon Japan 13 : 10 years of Xen and Beyond
LinuxCon Japan 13 : 10 years of Xen and BeyondLinuxCon Japan 13 : 10 years of Xen and Beyond
LinuxCon Japan 13 : 10 years of Xen and Beyond
 
Xen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,Pavlicek
Xen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,PavlicekXen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,Pavlicek
Xen, XenServer, and XAPI: What’s the Difference?-XPUS13 Bulpin,Pavlicek
 
XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...
XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...
XPDS14: Xen and the Art of Certification - Nathan Studer & Robert VonVossen, ...
 
Securing your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security featuresSecuring your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security features
 
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell PavlicekSecuring Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicek
 
Aplura virtualization slides
Aplura virtualization slidesAplura virtualization slides
Aplura virtualization slides
 
LCEU13: Securing your cloud with Xen's advanced security features - George Du...
LCEU13: Securing your cloud with Xen's advanced security features - George Du...LCEU13: Securing your cloud with Xen's advanced security features - George Du...
LCEU13: Securing your cloud with Xen's advanced security features - George Du...
 
Why xen slides
Why xen slidesWhy xen slides
Why xen slides
 
XPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, Intel
XPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, IntelXPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, Intel
XPDS13: HVM Dom0 - Any unmodified OS as Dom0 - Will Auld, Intel
 
Bare-Metal Hypervisor as a Platform for Innovation
Bare-Metal Hypervisor as a Platform for InnovationBare-Metal Hypervisor as a Platform for Innovation
Bare-Metal Hypervisor as a Platform for Innovation
 
Xen Project Hypervisor for the Cloud
Xen Project Hypervisor for the CloudXen Project Hypervisor for the Cloud
Xen Project Hypervisor for the Cloud
 
Xen ATG case study
Xen ATG case studyXen ATG case study
Xen ATG case study
 
Linaro Connect Asia 13 : Citrix - Xen on ARM plenary session
Linaro Connect Asia 13 : Citrix - Xen on ARM plenary sessionLinaro Connect Asia 13 : Citrix - Xen on ARM plenary session
Linaro Connect Asia 13 : Citrix - Xen on ARM plenary session
 
Xen time machine
Xen time machineXen time machine
Xen time machine
 
XPDS16: Xen Development Update
XPDS16: Xen Development UpdateXPDS16: Xen Development Update
XPDS16: Xen Development Update
 
PVH : PV Guest in HVM container
PVH : PV Guest in HVM containerPVH : PV Guest in HVM container
PVH : PV Guest in HVM container
 
Windsor: Domain 0 Disaggregation for XenServer and XCP
	Windsor: Domain 0 Disaggregation for XenServer and XCP	Windsor: Domain 0 Disaggregation for XenServer and XCP
Windsor: Domain 0 Disaggregation for XenServer and XCP
 
Xen Cloud Platform Update
Xen Cloud Platform UpdateXen Cloud Platform Update
Xen Cloud Platform Update
 
XS Boston 2008 XenLoop
XS Boston 2008 XenLoopXS Boston 2008 XenLoop
XS Boston 2008 XenLoop
 

Destaque

Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14
Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14
Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14The Linux Foundation
 
XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...
XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...
XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...The Linux Foundation
 
Xen and the art of embedded virtualization (ELC 2017)
Xen and the art of embedded virtualization (ELC 2017)Xen and the art of embedded virtualization (ELC 2017)
Xen and the art of embedded virtualization (ELC 2017)Stefano Stabellini
 
Virtualization Architecture & KVM
Virtualization Architecture & KVMVirtualization Architecture & KVM
Virtualization Architecture & KVMPradeep Kumar
 
OSCON16: Analysis of the Xen code review process: An example of software deve...
OSCON16: Analysis of the Xen code review process: An example of software deve...OSCON16: Analysis of the Xen code review process: An example of software deve...
OSCON16: Analysis of the Xen code review process: An example of software deve...The Linux Foundation
 
Xen Project Release and Roadmap Process (4.7+)
Xen Project Release and Roadmap Process (4.7+)Xen Project Release and Roadmap Process (4.7+)
Xen Project Release and Roadmap Process (4.7+)The Linux Foundation
 
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVMHypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVMvwchu
 
virtualization and hypervisors
virtualization and hypervisorsvirtualization and hypervisors
virtualization and hypervisorsGaurav Suri
 

Destaque (9)

OSCON14: Mirage 2.0
OSCON14: Mirage 2.0 OSCON14: Mirage 2.0
OSCON14: Mirage 2.0
 
Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14
Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14
Xen: Hypervisor for the Cloud from Frontier Meetup Mountain View CA 2013-10-14
 
XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...
XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...
XPDS16: High-Performance Virtualization for HPC Cloud on Xen - Jun Nakajima &...
 
Xen and the art of embedded virtualization (ELC 2017)
Xen and the art of embedded virtualization (ELC 2017)Xen and the art of embedded virtualization (ELC 2017)
Xen and the art of embedded virtualization (ELC 2017)
 
Virtualization Architecture & KVM
Virtualization Architecture & KVMVirtualization Architecture & KVM
Virtualization Architecture & KVM
 
OSCON16: Analysis of the Xen code review process: An example of software deve...
OSCON16: Analysis of the Xen code review process: An example of software deve...OSCON16: Analysis of the Xen code review process: An example of software deve...
OSCON16: Analysis of the Xen code review process: An example of software deve...
 
Xen Project Release and Roadmap Process (4.7+)
Xen Project Release and Roadmap Process (4.7+)Xen Project Release and Roadmap Process (4.7+)
Xen Project Release and Roadmap Process (4.7+)
 
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVMHypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
Hypervisors and Virtualization - VMware, Hyper-V, XenServer, and KVM
 
virtualization and hypervisors
virtualization and hypervisorsvirtualization and hypervisors
virtualization and hypervisors
 

Semelhante a Performance Tuning Xen

4 implementation
4 implementation4 implementation
4 implementationhanmya
 
Puppet Camp Dallas 2014: Using Puppet in Hybrid Cloud Deployments
Puppet Camp Dallas 2014: Using Puppet in Hybrid Cloud DeploymentsPuppet Camp Dallas 2014: Using Puppet in Hybrid Cloud Deployments
Puppet Camp Dallas 2014: Using Puppet in Hybrid Cloud DeploymentsPuppet
 
Windows 2008 R2 Virtualization
Windows 2008  R2  VirtualizationWindows 2008  R2  Virtualization
Windows 2008 R2 VirtualizationEduardo Castro
 
Virtual Infrastructure
Virtual InfrastructureVirtual Infrastructure
Virtual InfrastructureBryan McLellan
 
VXLAN Integration with CloudStack Advanced Zone
VXLAN Integration with CloudStack Advanced ZoneVXLAN Integration with CloudStack Advanced Zone
VXLAN Integration with CloudStack Advanced ZoneYoshikazu Nojima
 
持续交付 - 使用云计算和虚拟化技术
持续交付 - 使用云计算和虚拟化技术持续交付 - 使用云计算和虚拟化技术
持续交付 - 使用云计算和虚拟化技术foxgem
 
12th Japan CloudStack User Group Meetup MidoNet with scalable virtual router
12th Japan CloudStack User Group Meetup   MidoNet with scalable virtual router12th Japan CloudStack User Group Meetup   MidoNet with scalable virtual router
12th Japan CloudStack User Group Meetup MidoNet with scalable virtual routerTakeshi Nakajima
 
12th Japan CloudStack User Group Meetup
12th Japan CloudStack User Group Meetup12th Japan CloudStack User Group Meetup
12th Japan CloudStack User Group MeetupMidokura
 
White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...
White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...
White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...EMC
 
Hands on Virtualization with Ganeti
Hands on Virtualization with GanetiHands on Virtualization with Ganeti
Hands on Virtualization with GanetiOSCON Byrum
 
leewayhertz.com-How to build a dApp on Avalanche blockchain
leewayhertz.com-How to build a dApp on Avalanche blockchainleewayhertz.com-How to build a dApp on Avalanche blockchain
leewayhertz.com-How to build a dApp on Avalanche blockchainMdSaifulIslam289
 
OpenStack and OpenFlow Demos
OpenStack and OpenFlow DemosOpenStack and OpenFlow Demos
OpenStack and OpenFlow DemosBrent Salisbury
 
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environmentbocribbz
 
Comparison of Open Source Virtualization Technology
Comparison of Open Source Virtualization TechnologyComparison of Open Source Virtualization Technology
Comparison of Open Source Virtualization TechnologyBenoit des Ligneris
 

Semelhante a Performance Tuning Xen (20)

4 implementation
4 implementation4 implementation
4 implementation
 
Puppet Camp Dallas 2014: Using Puppet in Hybrid Cloud Deployments
Puppet Camp Dallas 2014: Using Puppet in Hybrid Cloud DeploymentsPuppet Camp Dallas 2014: Using Puppet in Hybrid Cloud Deployments
Puppet Camp Dallas 2014: Using Puppet in Hybrid Cloud Deployments
 
Windows 2008 R2 Virtualization
Windows 2008  R2  VirtualizationWindows 2008  R2  Virtualization
Windows 2008 R2 Virtualization
 
OSSNA18: Xen Beginners Training
OSSNA18: Xen Beginners Training OSSNA18: Xen Beginners Training
OSSNA18: Xen Beginners Training
 
Virtual Infrastructure
Virtual InfrastructureVirtual Infrastructure
Virtual Infrastructure
 
Ha & drs gotcha's
Ha & drs gotcha'sHa & drs gotcha's
Ha & drs gotcha's
 
VXLAN Integration with CloudStack Advanced Zone
VXLAN Integration with CloudStack Advanced ZoneVXLAN Integration with CloudStack Advanced Zone
VXLAN Integration with CloudStack Advanced Zone
 
持续交付 - 使用云计算和虚拟化技术
持续交付 - 使用云计算和虚拟化技术持续交付 - 使用云计算和虚拟化技术
持续交付 - 使用云计算和虚拟化技术
 
12th Japan CloudStack User Group Meetup MidoNet with scalable virtual router
12th Japan CloudStack User Group Meetup   MidoNet with scalable virtual router12th Japan CloudStack User Group Meetup   MidoNet with scalable virtual router
12th Japan CloudStack User Group Meetup MidoNet with scalable virtual router
 
12th Japan CloudStack User Group Meetup
12th Japan CloudStack User Group Meetup12th Japan CloudStack User Group Meetup
12th Japan CloudStack User Group Meetup
 
White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...
White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...
White Paper: Deploying and Implementing RecoverPoint in a Virtual Machine for...
 
XS Boston 2008 Project Status
XS Boston 2008 Project StatusXS Boston 2008 Project Status
XS Boston 2008 Project Status
 
Hands on Virtualization with Ganeti
Hands on Virtualization with GanetiHands on Virtualization with Ganeti
Hands on Virtualization with Ganeti
 
Vastsky xen summit20100428
Vastsky xen summit20100428Vastsky xen summit20100428
Vastsky xen summit20100428
 
Vastsky xen summit20100428
Vastsky xen summit20100428Vastsky xen summit20100428
Vastsky xen summit20100428
 
Virtualization
VirtualizationVirtualization
Virtualization
 
leewayhertz.com-How to build a dApp on Avalanche blockchain
leewayhertz.com-How to build a dApp on Avalanche blockchainleewayhertz.com-How to build a dApp on Avalanche blockchain
leewayhertz.com-How to build a dApp on Avalanche blockchain
 
OpenStack and OpenFlow Demos
OpenStack and OpenFlow DemosOpenStack and OpenFlow Demos
OpenStack and OpenFlow Demos
 
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environment
 
Comparison of Open Source Virtualization Technology
Comparison of Open Source Virtualization TechnologyComparison of Open Source Virtualization Technology
Comparison of Open Source Virtualization Technology
 

Mais de The Linux Foundation

ELC2019: Static Partitioning Made Simple
ELC2019: Static Partitioning Made SimpleELC2019: Static Partitioning Made Simple
ELC2019: Static Partitioning Made SimpleThe Linux Foundation
 
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...The Linux Foundation
 
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...The Linux Foundation
 
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...The Linux Foundation
 
XPDDS19 Keynote: Unikraft Weather Report
XPDDS19 Keynote:  Unikraft Weather ReportXPDDS19 Keynote:  Unikraft Weather Report
XPDDS19 Keynote: Unikraft Weather ReportThe Linux Foundation
 
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...The Linux Foundation
 
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, XilinxXPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, XilinxThe Linux Foundation
 
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...The Linux Foundation
 
XPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
XPDDS19: Memories of a VM Funk - Mihai Donțu, BitdefenderXPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
XPDDS19: Memories of a VM Funk - Mihai Donțu, BitdefenderThe Linux Foundation
 
OSSJP/ALS19: The Road to Safety Certification: Overcoming Community Challeng...
OSSJP/ALS19:  The Road to Safety Certification: Overcoming Community Challeng...OSSJP/ALS19:  The Road to Safety Certification: Overcoming Community Challeng...
OSSJP/ALS19: The Road to Safety Certification: Overcoming Community Challeng...The Linux Foundation
 
OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
 OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making... OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...The Linux Foundation
 
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, CitrixXPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, CitrixThe Linux Foundation
 
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltdXPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltdThe Linux Foundation
 
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...The Linux Foundation
 
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&DXPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&DThe Linux Foundation
 
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM SystemsXPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM SystemsThe Linux Foundation
 
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...The Linux Foundation
 
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...The Linux Foundation
 
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...The Linux Foundation
 
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSEXPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSEThe Linux Foundation
 

Mais de The Linux Foundation (20)

ELC2019: Static Partitioning Made Simple
ELC2019: Static Partitioning Made SimpleELC2019: Static Partitioning Made Simple
ELC2019: Static Partitioning Made Simple
 
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
 
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
 
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
 
XPDDS19 Keynote: Unikraft Weather Report
XPDDS19 Keynote:  Unikraft Weather ReportXPDDS19 Keynote:  Unikraft Weather Report
XPDDS19 Keynote: Unikraft Weather Report
 
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
 
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, XilinxXPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
 
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
 
XPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
XPDDS19: Memories of a VM Funk - Mihai Donțu, BitdefenderXPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
XPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
 
OSSJP/ALS19: The Road to Safety Certification: Overcoming Community Challeng...
OSSJP/ALS19:  The Road to Safety Certification: Overcoming Community Challeng...OSSJP/ALS19:  The Road to Safety Certification: Overcoming Community Challeng...
OSSJP/ALS19: The Road to Safety Certification: Overcoming Community Challeng...
 
OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
 OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making... OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
 
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, CitrixXPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
 
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltdXPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
 
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
 
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&DXPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
 
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM SystemsXPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
 
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
 
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
 
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
 
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSEXPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
 

Último

Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 

Último (20)

Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 

Performance Tuning Xen

  • 1. Performance tuning Xen Roger Pau Monn´ e roger.pau@citrix.com Antwerp – 8th of April, 2013
  • 2. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Xen Architecture Control Domain NetBSD or Linux device model (qemu) toolstack Paravirtualized (PV) Fully Domain: Virtualized NetBSD or Linux (HVM) Domain: Hardware netback netfront Windows, Drivers blkback blkfront FreeBSD... Xen Hypervisor I/O Devices CPU Memory Hardware Antwerp – 8th of April, 2013 Performance tuning Xen 2 / 27
  • 3. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Paravirtualization Virtualization technique developed in the late 90s Designed by: XenoServer research project at Cambridge University Intel Microsoft labs x86 instructions behave differently in kernel or user mode, options for virtualization were full software emulation or binary translation. Design a new interface for virtualization Allow guests to collaborate in virtualization Provide new interfaces for virtualized guests that allow to reduce the overhead of virtualization The result of this work is what we know today as paravirtualiztion Antwerp – 8th of April, 2013 Performance tuning Xen 3 / 27
  • 4. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Paravirtualization All this changes lead to the following interfaces being paravirtualized: Disk and network interfaces Interrupts and timers Boot directly in the mode the kernel wishes to run (32 or 64bits) Page tables Privileged instructions Antwerp – 8th of April, 2013 Performance tuning Xen 4 / 27
  • 5. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Full virtualization With the introduction of hardware virtualization extensions Xen is able to run unmodified guests This requires emulated devices, which are handled by Qemu Makes use of nested page tables when available. Allows to use PV interfaces if guest has support for them. Antwerp – 8th of April, 2013 Performance tuning Xen 5 / 27
  • 6. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions The full virtualization spectrum VS Software virtualization Poor performance VH Hardware virtualization Room for improvement PV Paravirtualized Optimal performance es ns ge str rd bl tio s a er bo uc tim k an ge her or tw ot d ta pa in an m ne d d ts ed d up ile an at rr iv ul isk te Pr Em In HVM D VS VS VS VH HVM with PV drivers PV VS VS VH PVHVM PV PV VS VH PV PV PV PV PV Antwerp – 8th of April, 2013 Performance tuning Xen 6 / 27
  • 7. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Guest support List of OSes and virtualization support: PV PVHVM HVM with PV drivers HVM Linux (PVOPS) YES YES YES YES Windows NO NO YES YES NetBSD YES NO NO YES FreeBSD NO NO YES YES OpenBSD NO NO NO YES DragonflyBSD NO NO NO YES Antwerp – 8th of April, 2013 Performance tuning Xen 7 / 27
  • 8. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Kernbench Kernbench Results: percentage of native, the lower the better 140 135 130 125 120 115 110 105 100 95 90 PV on HVM 32 bit HVM 32 bit PV 32 bit PV on HVM 64 bit HVM 64 bit PV 64 bit Antwerp – 8th of April, 2013 Performance tuning Xen 8 / 27
  • 9. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Specjbb2005 SPECjbb2005 Results: percentage of native, the higher the better 100 90 80 70 60 50 40 30 20 10 0 PV 64 bit PV on HVM 64 bit Antwerp – 8th of April, 2013 Performance tuning Xen 9 / 27
  • 10. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Iperf Iperf tcp Results: gbit/sec, the higher the better 8 7 6 5 4 3 2 1 0 PV 64 bit PV on HVM 64 bit PV on HVM 32 bit PV 32 bit HVM 64 bit HVM 32 bit Antwerp – 8th of April, 2013 Performance tuning Xen 10 / 27
  • 11. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions What virtualization mode should I choose? Linux supports several virtualization modes, which one is better? Depends on the workload. Generally PV mode will provide better performance for IO, but when using 64bit guests PV can be slower. There isn’t a fixed rule here, the best way to find out is to evaluate the workload on the different kind of guests. Antwerp – 8th of April, 2013 Performance tuning Xen 11 / 27
  • 12. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Dom0 Dom0 is the most important guest in the Xen infraestructure. It can become a bottleneck easily if not configured correctly. Dom0 is in charge of creating the guests, but usually also provides the backends and device models for guests. Xen provides some options to tune performance of Dom0 Antwerp – 8th of April, 2013 Performance tuning Xen 12 / 27
  • 13. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions dom0 mem boot option dom0 mem tell Xen how much memory can be used by the Dom0. If not set all memory will be assigned to the Dom0, and ballooning will be used when launching new guests, reducing the memory used by the Dom0. The value should be set depending on the usage, HVM guests consume more memory in the Dom0 because they need a Qemu instance. If dom0 mem is set make sure to disable ballooning in the toolstack by setting autoballoon=0 in /etc/xen/xl.conf. Antwerp – 8th of April, 2013 Performance tuning Xen 13 / 27
  • 14. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions dom0 max vcpus and dom0 vcpus pin dom0 max vcpus: maximum number of CPUs the Dom0 will see, also depends on the utilization of the Dom0 and the type of guests. dom0 vcpus pin: pinning Dom0 vcpus to physical CPUs is a good idea for systems running IO intensive guests. Setting up the serial cable: although not important for performance, setting up a serial cable is really important when debugging. For more info: http://wiki.xen.org/wiki/Xen_Serial_Console Antwerp – 8th of April, 2013 Performance tuning Xen 14 / 27
  • 15. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Dom0 Boot tunning options For example if I had to set up a Dom0 on a machine with 8 CPUs and 8GB of RAM I would use the following boot line: com1=115200,8n1 console=com1 dom0 mem=1024M dom0 max vcpus=2 dom0 vcpus pin. More info about boot parameters can be found at: http://xenbits.xen.org/docs/unstable/misc/ xen-command-line.html. Antwerp – 8th of April, 2013 Performance tuning Xen 15 / 27
  • 16. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions General performance notes Always try to use physical disks as backends. Xen has mainly two ways of connecting disks to the guest depending on the format of the image, if it’s a block device it will be attached using blkback, which is inside the Linux kernel and it’s faster. Take into account the number of CPUs your physical box has and avoid using more VCPUS than PCPUS if running performance intensive applications. Antwerp – 8th of April, 2013 Performance tuning Xen 16 / 27
  • 17. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Pinning CPUs You can pin VCPUs to PCPUs in order to obtain better performance or to distribute the workload across your CPUs to suit your needs. For example low latency VMs can be exclusively pinned to different PCPUs. cpus: allows to select in which CPUs the guest can run. The list can also contain specific CPUs where the guest is not allowed to run. Specifying ”0-3,5,ˆ1” allows the guest to run on CPUs 0,2,3,5. If Dom0 is pinned to certain PCPUs avoid running guests on those PCPUs to obtain better performance. If Dom0 is pinned to CPU 0, use the following CPU mask in order to prevent other guests from running on CPU 0: ”ˆ0”. Antwerp – 8th of April, 2013 Performance tuning Xen 17 / 27
  • 18. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Scheduler options The Xen scheduler has several options that can also be tunned from the guest configuration file, in order to give a certain guest more share from the processor or to schedule it more frequently. cpu weight: weight of the domain in terms of CPU utilization. For example a domain with a weight of 512 will get twice as much CPU than a domain with a weight of 256. Values range from 1 to 65535. cap: fixes the maximum amount of CPU a domain is able to consume. Expressed in percentage of one physical CPU. 100 is one CPU, 50 half a CPU, 400 four CPUs. More info can be found at http: //xenbits.xen.org/docs/unstable/man/xl.cfg.5.html Antwerp – 8th of April, 2013 Performance tuning Xen 18 / 27
  • 19. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Driver Domains I Control Domain NetBSD or Linux device model (qemu) toolstack Paravirtualized (PV) Domain: NetBSD or Linux Hardware netback netfront Drivers blkback blkfront Xen Hypervisor I/O Devices CPU Memory Hardware Antwerp – 8th of April, 2013 Performance tuning Xen 19 / 27
  • 20. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Driver Domains II Control Domain NetBSD or Linux device model (qemu) toolstack Paravirtualized Driver Domain (PV) Domain: NetBSD or Linux Hardware netback netback netfront Drivers blkback blkback blkfront Xen Hypervisor I/O Devices CPU Memory Hardware Antwerp – 8th of April, 2013 Performance tuning Xen 20 / 27
  • 21. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Driver Domains III Driver domains allow to offload work normally done in Dom0 to other domains. It also provides better security, less surface for exploits in Dom0. This is a current work-in-process. Antwerp – 8th of April, 2013 Performance tuning Xen 21 / 27
  • 22. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions HVM specific I HVM guest require the usage of assisted paging, in order for the guest to see the memory area as contiguous when it’s not. HAP: (Hardware Assisted Paging) is used by default since it tends to perform better under most workloads shadow: was introduced before HAP, and can provide better performance under certain workloads that have low TLB locality (for example databases or java applications). Again, the best way to know is to try the workload by yourself. Antwerp – 8th of April, 2013 Performance tuning Xen 22 / 27
  • 23. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions HVM specific II HVM domains require a Qemu instance in Dom0 to perform the necessary device emulation. This might be a bottleneck if running a lot of HVM domains in the same node, since each one requires a Qemu instance running in Dom0 that uses both Dom0 CPU and Memory. To avoid this, we can launch the Qemu process in a different domain called ”Stubdomain”. This allows to offload work from Dom0. Antwerp – 8th of April, 2013 Performance tuning Xen 23 / 27
  • 24. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions HVM specific III Control Domain NetBSD or Linux device model (qemu) Fully toolstack Virtualized (HVM) Domain: Windows, FreeBSD... Hardware netback Drivers blkback Xen Hypervisor I/O Devices CPU Memory Hardware Antwerp – 8th of April, 2013 Performance tuning Xen 24 / 27
  • 25. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions HVM specific IV Control Domain NetBSD or Linux device model (qemu) Fully toolstack stubdomain Virtualized (HVM) MiniOS Domain: Qemu Windows, FreeBSD... Hardware netback Drivers blkback Xen Hypervisor I/O Devices CPU Memory Hardware Antwerp – 8th of April, 2013 Performance tuning Xen 25 / 27
  • 26. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Conclusions Xen offers a wide variety of virtualization modes. The best way to know which mode will bring better performance is to try it, although there are several tips that apply to all guests. We are constantly working on performance improvements, so keep updated in order to get the best performance. Antwerp – 8th of April, 2013 Performance tuning Xen 26 / 27
  • 27. Xen Architecture Xen virtualization modes Support in OSes Dom0 tunning Specific VM options Conclusions Q&A Thanks Questions? http://wiki.xen.org/wiki/Xen_Best_Practices http://wiki.xen.org/wiki/Xen_Common_Problems Antwerp – 8th of April, 2013 Performance tuning Xen 27 / 27