A Survey of Virtualization Workloads

Total Page:16

File Type:pdf, Size:1020Kb

A Survey of Virtualization Workloads A Survey of Virtualization Workloads Andrew Theurer Karl Rister Steve Dobbelstein IBM Linux Technology Center IBM Linux Technology Center IBM Linux Technology Center [email protected] [email protected] [email protected] Abstract solution Y. Another difference in benchmarking virtu- alization is that the benchmark scenarios can be very We survey several virtualization benchmarks, including different than one without virtualization. Server consol- benchmarks from different hardware and software ven- idation is such a scenario. Server consolidation may not dors, comparing their strengths and weaknesses. We typically be benchmarked without the use of a hypervi- also cover the development (in progress) of a new vir- sor (but not out of the realm of possibility; for example, tualization benchmark by a well known performance containers may be used). Server consolidation bench- evaluation group. We evaluate all the benchmarks’ ease marks strive to show how effective a virtualization so- of use, accuracy, and methods to quantify virtualization lution can host many guests. Since many guests can be performance. For each benchmark, we also detail the ar- involved in this scenario, it may require the use of sev- eas of a virtualization solution they stress. In this study, eral benchmarks running concurrently. This concept is we use Linux where applicable, but also use other oper- not common on traditional benchmarks. ating systems when necessary. 2 Recently Published Benchmarks 1 Introduction The following are virtualization benchmarks with pub- Although the concept of virtualization is not new [1], lished specifications and run rules that users can repli- there is a recent surge of interest in exploiting it. Vir- cate in their own environment. These benchmarks strive tualization can help with several challenges in comput- to set a standard for virtualization benchmarking. In ing today, from host and guest management, energy this section, we discuss the strengths and weaknesses consumption reduction, reliability, and serviceability. of these benchmarks. There are now several virtualization offerings, such as VMware R ESX [2], IBM PowerVMTM , Xen [3][4] tech- 2.1 vConsolidate nology from Citrix, Virtual Iron, RedHat, and SUSE, and Microsoft R Windows Server R 2008 Hyper-V [5]. The vConsolidate benchmark [6] was developed by As the competition heats up, we are observing a growth Intel R to measure the performance of a system running of performance competitiveness across these vendors, consolidated workloads. As one of the earlier proposals yielding “marketing collateral” in the form of bench- for a virtualization benchmark, vConsolidate was writ- mark publications. ten to prompt the industry to discuss how the perfor- mance of a system running with virtualization should be 1.1 Why are Virtualization Benchmarks Different? measured. vConsolidate runs a benchmark for a web server, a mail A key difference in benchmarking a virtualization-based server, a database server, and a JavaTM server, each in a solution is that a hypervisor is included. The hypervi- separate guest. There is also a guest that runs no bench- sor is responsible for sharing the hardware resources for mark, which is meant to simulate an idle server. These one or more guests in a safe way. The use of a hypervi- five guests make up a consolidation stack unit, or CSU, sor and the sharing of hardware can introduce overhead. as illustrated in Figure 1. One of the goals of benchmarking virtualization is to quantify this overhead and ideally show that virtualiza- The tester starts with running 1 CSU, obtaining the tion solution X has lower overhead than virtualization benchmark score and the processor utilization of the • 215 • 216 • A Survey of Virtualization Workloads CSU 1 CSU 2 CSU 3 vConsolidate score Processor utilization Idle Idle Idle 5 100 Java Java Java Database Database Database 4 80 Mail Mail Mail Web Web Web 3 60 2 40 vConsolidate score Processor utilization 1 20 Figure 1: Consolidation stack units 0 0 1-CSU 2-CSUs 3-CSUs 4-CSUs 5-CSUs Figure 2: Sample results for vConsolidate system. The tester does three iterations and then uses the median score and its processor utilization. The tester in- crementally adds additional CSUs, recording the bench- mark score and processor utilization, until the bench- 2.1.1 Benchmark Implementation mark score for the set of N CSUs is less than the score for N-1 CSUs, or until all the system processors are fully vConsolidate specifies which benchmarks are run for utilized. The final benchmark score is the maximum of each of the workloads: WebBenchTM [7] from PC Maga- the scores reported along with the number of CSUs and zine for the web server, Exchange Server Load Simula- the processor utilization for that score. tor (LoadSim) [8] from Microsoft for the mail server, SysBench [9] for the database server, and a slightly modified version of SPECjbb2005 [10] for the Java The vConsolidate benchmark score is calculated by server. first summing each of the component benchmark scores across the individual CSUs. The sums are then normal- WebBench is implemented with two programs—a con- ized against the score of the benchmark running on a troller and a client. The controller coordinates the run- reference system, giving a ratio of the sum compared to ning of the WebBench client(s). vConsolidate uses only the score of the reference platform. The reference sys- one client program, which runs eight engine threads. tem scores can be obtained from a 1 CSU run on any The client and the controller can be run on the same system. It is Intel’s desire to define a “golden” reference system because neither is processor intensive. The only system for each profile. The vConsolidate score for the interface to WebBench is through its GUI, making it dif- test run is the geometric mean of the ratios for each of ficult to automate. the benchmarks. Figure 2 shows sample results from a vConsolidate test run. In this example, the maximum vConsolidate indirectly specifies which mail server to score was achieved at 4 CSUs with a processor utiliza- run. Microsoft’s LoadSim only works against a Mi- tion of 78.3%. crosoft Exchange Server, therefore, the mail server must be Exchange Server running on the Windows operating system. Although it runs in a GUI, LoadSim can be eas- The reporting of the processor utilization along with the ily automated because it can be started from the com- score is not common. Most standard benchmarks sim- mand line. ply report the benchmark score and are not concerned with the processor utilization. The processor utilization, vConsolidate runs a version of SysBench that has been however, is a useful metric in characterizing the per- modified so that it prints out a period after a certain num- formance of the system running the consolidated work- ber of database transactions. The output is then redi- loads. It can also be useful in spotting performance is- rected to a file, which is processed by vConsolidate to sues in other areas of the system (for example, disk I/O, calculate the throughput score. network), for example, when the score starts dropping off before the processors get fully utilized, as seen in vConsolidate has instructions for modifying the Figure 2. SPECjbb2005 source to add a think time, so that the test 2008 Linux Symposium, Volume Two • 217 doesn’t run full bore, and to have it print out some statis- mind that the benchmark should specify the software tics at a periodic interval. The output is then redirected and benchmarks used so that fair comparisons can be to a file that is processed by vConsolidate to calculate made between different hardware platforms. Others see the throughput score. The benchmark specifies the ver- that specifying the software and benchmarks favors the sion of Java to run: BEA R JRockit R 5.0. software selected, does not allow for comparisons to be made between software stacks, and reduces the concept One observation of the benchmark implementation is of the benchmark being open. that most of the workloads are modified or configured such that the benchmark does not run all out, but sim- ulates a server running with a given load. LoadSim is 2.1.2 Running the Benchmark configured to run with 500 users. SysBench is config- ured to run only four threads. SPECjbb2005 is modified As mentioned above, the test setup requires client ma- to add a delay. However, WebBench is not modified to chines to run LoadSim and to run the WebBench con- limit its load. The delay time and think time are both troller and client. In the current version of vConsoli- zero. It may be that this is an oversight of the bench- date (1.1), each client runs one instance of LoadSim and mark configuration. Or it may be that even with no de- one instance of the WebBench controller and client. Es- lay and no think time that WebBench does not generate sentially, one machine runs all of the client drivers for enough load to consume the network and/or processor one CSU. This is an improvement over the previous ver- utilization on the server. That is, WebBench may gener- sion of vConsolidate that specified separate clients for ate a moderate load even with the delay and think time LoadSim and WebBench. Having one client machine set to zero. per CSU makes for an easier test setup, not to mention the savings in hardware, energy, and rack space. Certain components of vConsolidate are portable to other applications and other operating systems. The test setup also requires one machine to run the WebBench makes standard HTTP requests, conse- vConsolidate controller. The controller coordinates the quently it doesn’t matter which web server software is start and stop of each test run so that all benchmarks run nor the OS on which it runs.
Recommended publications
  • Metrics for Performance Advertisement
    Metrics for Performance Advertisement Vojtěch Horký Peter Libič Petr Tůma 2010 – 2021 This work is licensed under a “CC BY-NC-SA 3.0” license. Created to support the Charles University Performance Evaluation lecture. See http://d3s.mff.cuni.cz/teaching/performance-evaluation for details. Contents 1 Overview 1 2 Operation Frequency Related Metrics 2 3 Operation Duration Related Metrics 3 4 Benchmark Workloads 4 1 Overview Performance Advertisement Measuring for the purpose of publishing performance information. Requirements: – Well defined meaning. – Simple to understand. – Difficult to game. Pitfalls: – Publication makes results subject to pressure. – Often too simple to convey meaningful information. – Performance in contemporary computer systems is never simple. Speed Related Metrics Responsiveness Metrics – Time (Task Response Time) – How long does it take to finish the task ? Productivity Metrics – Rate (Task Throughput) – How many tasks can the system complete per time unit ? Utilization Metrics – Resource Use (Utilization) – How much is the system loaded when working on a task ? – Share of time a resource is busy or over given load level. – Helps identify bottlenecks (most utilized resources in the system). 1 Metric for Webmail Performance What metric would you choose to characterize performance of a web mail site ? – User oriented metric would be end-to-end operation time. – Server oriented metric would be request processing time. – How about metrics in between ? – And would you include mail delivery time ? How is throughput related to latency ? How is utilization defined for various resources ? 2 Operation Frequency Related Metrics Clock Rate Clock rate (frequency) of the component (CPU, bus, memory) in MHz. Most often we talk about CPU frequency.
    [Show full text]
  • The Nutanix Design Guide
    The FIRST EDITION Nutanix Design Guide Edited by AngeloLuciani,VCP By Nutanix, RenévandenBedem, incollaborationwith NPX,VCDX4,DECM-EA RoundTowerTechnologies Table of Contents 1 Foreword 3 2 Contributors 5 3 Acknowledgements 7 4 Using This Book 7 5 Introduction To Nutanix 9 6 Why Nutanix? 17 7 The Nutanix Eco-System 37 8 Certification & Training 43 9 Design Methodology 49 & The NPX Program 10 Channel Charter 53 11 Mission-Critical Applications 57 12 SAP On Nutanix 69 13 Hardware Platforms 81 14 Sizer & Collector 93 15 IBM Power Systems 97 16 Remote Office, Branch Office 103 17 Xi Frame & EUC 113 Table of Contents 18 Xi IoT 121 19 Xi Leap, Data Protection, 133 DR & Metro Availability 20 Cloud Management 145 & Automation: Calm, Xi Beam & Xi Epoch 21 Era 161 22 Karbon 165 23 Acropolis Security & Flow 169 24 Files 193 25 Volumes 199 26 Buckets 203 27 Prism 209 28 Life Cycle Manager 213 29 AHV 217 30 Move 225 31 X-Ray 229 32 Foundation 241 33 Data Center Facilities 245 34 People & Process 251 35 Risk Management 255 The Nutanix Design Guide 1 Foreword Iamhonoredtowritethisforewordfor‘TheNutanixDesignGuide’. Wehavealwaysbelievedthatcloudwillbemorethanjustarented modelforenterprises.Computingwithintheenterpriseisnuanced, asittriestobalancethefreedomandfriction-freeaccessofthe publiccloudwiththesecurityandcontroloftheprivatecloud.The privateclouditselfisspreadbetweencoredatacenters,remoteand branchoffices,andedgeoperations.Thetrifectaofthe3laws–(a) LawsoftheLand(dataandapplicationsovereignty),(b)Lawsof Physics(dataandmachinegravity),and(c)LawsofEconomics
    [Show full text]
  • “Freedom” Koan-Sin Tan [email protected] OSDC.Tw, Taipei Apr 11Th, 2014
    Understanding Android Benchmarks “freedom” koan-sin tan [email protected] OSDC.tw, Taipei Apr 11th, 2014 1 disclaimers • many of the materials used in this slide deck are from the Internet and textbooks, e.g., many of the following materials are from “Computer Architecture: A Quantitative Approach,” 1st ~ 5th ed • opinions expressed here are my personal one, don’t reflect my employer’s view 2 who am i • did some networking and security research before • working for a SoC company, recently on • big.LITTLE scheduling and related stuff • parallel construct evaluation • run benchmarking from time to time • for improving performance of our products, and • know what our colleagues' progress 3 • Focusing on CPU and memory parts of benchmarks • let’s ignore graphics (2d, 3d), storage I/O, etc. 4 Blackbox ! • google image search “benchmark”, you can find many of them are Android-related benchmarks • Similar to recently Cross-Strait Trade in Services Agreement (TiSA), most benchmarks on Android platform are kinda blackbox 5 Is Apple A7 good? • When Apple released the new iPhone 5s, you saw many technical blog showed some benchmarks for reviews they came up • commonly used ones: • GeekBench • JavaScript benchmarks • Some graphics benchmarks • Why? Are they right ones? etc. e.g., http://www.anandtech.com/show/7335/the-iphone-5s-review 6 open blackbox 7 Android Benchmarks 8 http:// www.anandtech.com /show/7384/state-of- cheating-in-android- benchmarks No, not improvement in this way 9 Assuming there is not cheating, what we we can do? Outline • Performance benchmark review • Some Android benchmarks • What we did and what still can be done • Future 11 To quote what Prof.
    [Show full text]
  • Regarding the Challenges of Performance Analysis of Virtualized Systems Page 1 of 12
    Regarding the challenges of Performance Analysis of Virtualized Systems Page 1 of 12 Regarding the challenges of Performance Analysis of Virtualized Systems Steven Harris, [email protected] (A paper written under the guidance of Prof. Raj Jain) Download Abstract Virtualization is an irreplaceable technique for efficient management of hardware resources in the field of information technology and computer science. With this phenomenal technology come challenges that hinder proper performance analysis of virtualized systems. This study focuses on virtualization implementations, various enterprise solutions, characterization of observations, concerns, pitfalls, and industry standard virtualization performance measurement tools. Our goal is to delineate the various intricacies of virtualization to help researchers, information technologists, and hobbyists realize areas of concern and improvement in their performance analysis of virtualized systems. Keyword:Hardware Virtualization, Virtual Machine Monitor, Hypervisor, Performance Analysis, Benchmark, XEN, KVM, Wmware, Virtual Box, AMD-V, Intel VT, SPEC Table of Contents: • 1. Introduction ◦ 1.1 Virtualization Overview • 2. Virtualization Implementations ◦ 2.1 Full Virtualization ◦ 2.2 Partial Virtualization ◦ 2.3 Paravirtualization ◦ 2.4 Hardware Virtualization • 3. Virtualization Solutions • 4. Performance Analysis Challenges ◦ 4.1 Hypervisor Implementation ◦ 4.2 Guest Resource Interdependence ◦ 4.3 Guest Operating System ◦ 4.4 Utilization Ambiguity ◦ 4.5 Proper Model Construction • 5. Virtualization Measurement Tools ◦ 5.1 Benchmarks ◦ 5.2 SPECvirt_SC2010 ◦ 5.3 SPECweb2005 ◦ 5.4 SPECjAppServer2004 ◦ 5.5 SPECmail2008 ◦ 5.6 CPU2006 http://www.cse.wustl.edu/~jain/cse567-13/ftp/virtual/index.html 4/29/2013 Regarding the challenges of Performance Analysis of Virtualized Systems Page 2 of 12 ◦ 5.7 Network ◦ 5.8 Filesystems • 6. Conclusion • Acronyms • References 1.
    [Show full text]
  • Quantitative Comparison of Xen and KVM
    Quantitative Comparison of Xen and KVM Todd Deshane, Muli Ben-Yehuda Amit Shah Balaji Rao Zachary Shepherd, IBM Haifa Research Lab Qumranet National Institute of Jeanna N. Matthews Haifa University Campus B-15, Ambience Empyrean Technology Karnataka Mount Carmel, Haifa 31905 64/14 Empress County Surathkal 575014 India Computer Science Israel Behind Empress Gardens Clarkson University Pune 411001 India [email protected] Potsdam, NY 13699 USA [email protected] {deshantm, shephezj, amit.shah@ jnm}@clarkson.edu qumranet.com ABSTRACT For our initial set of tests, the experimental setup consisted of We present initial results from and quantitative analysis of two Ubuntu Linux 8.04 AMD64 on the base machine. The Linux leading open source hypervisors, Xen and KVM. This study kernel 2.6.24-18, Xen 3.2.1+2.6.24-18-xen, and KVM 62 were focuses on the overall performance, performance isolation, and all installed from Ubuntu packages. All guests were scalability of virtual machines running on these hypervisors. Our automatically created by a benchvm script that called debootstrap comparison was carried out using a benchmark suite that we and installed Ubuntu 8.04 AMD64. The guests were then started developed to make the results easily repeatable. Our goals are to with another benchvm script that passed the appropriate kernel understand how the different architectural decisions taken by (2.6.24-18-xen for Xen and 2.6.24-18 for KVM). The hardware different hypervisor developers affect the resulting hypervisors, system was a Dell OptiPlex 745 with a 2.4 GHz Intel Core 2 to help hypervisor developers realize areas of improvement for CPU 6600, 4 GB of RAM, 250 GB hard drive, and two 1 Gigabit their hypervisors, and to help users make informed decisions Ethernet cards.
    [Show full text]
  • Red Hat Enterprise Virtualization Performance: Specvirt™ Benchmark
    RED HAT ENTERPRISE VIRTUALIZATION PERFORMANCE: SPECVIRT™ BENCHMARK DATASHEET AT A GLANCE OVERVIEW ® • The performance of Red Hat Red Hat Enterprise Virtualization (RHEV) is the strategic virtualization alternative for organizations Enterprise Virtualization can looking for better total cost of ownership, faster return on investment, accelerated break-even, and be compared to other freedom from vendor lock-in. virtualization platforms RHEV consists of both a hypervisor technology and an enterprise virtualization manager. The RHEV using the SPECvirt_sc2010 hypervisor, based on the Red Hat Enterprise Linux® kernel and the Kernel-based Virtual Machine benchmark. (KVM) hypervisor technology, offers the high performance and scalability that Red Hat is known for. • SPECvirt_sc2010 measures Hypervisor performance is a key factor in deciding which virtualization platform to implement, and hypervisor performance using Red Hat Enterprise Virtualization performance, as measured by the SPECvirt_sc2010® benchmark, realistic workloads. leads the industry both in terms of highest overall performance and highest number of performant As of March 1, 2013, RHEV virtual machines on a single server. leads VMware in performance on comparable WHAT IS SPECVIRT_SC2010®? servers defined by CPU count. SPECvirt_sc2010 is the first vendor-neutral benchmark designed to measure the performance of • The RHEV subscription model datacenter servers that are used for server virtualization. The benchmark was developed by the provides high performance non-profit Standard Performance Evaluation Corporation (SPEC) virtualization subcommittee, at a lower cost-per-SPECvirt_ whose members and contributors include AMD, Dell, Fujitsu, HP, IBM, Intel, Oracle, Red Hat, Unisys sc2010 than VMware. and VMware. SPECvirt_sc2010 uses realistic workloads and SPEC’s proven performance measurement method- ologies to enable vendors, users and researchers to compare system performance across multiple hardware, virtualization platforms, and applications.
    [Show full text]
  • On Benchmarking Intrusion Detection Systems in Virtualized Environments
    Technical Report: SPEC-RG-2013-002 Version: 1.0 On Benchmarking Intrusion Detection Systems in Virtualized Environments SPEC RG IDS Benchmarking Working Group Aleksandar Milenkoski Samuel Kounev Alberto Avritzer Institute for Program Structures and Data Institute for Program Structures and Data Siemens Corporate Research Organization Organization Princeton, NJ USA Karlsruhe Institute of Technology Karlsruhe Institute of Technology [email protected] Karlsruhe, Germany Karlsruhe, Germany [email protected] [email protected] Nuno Antunes Marco Vieira CISUC, Department of Informatics CISUC, Department of Informatics Engineering Engineering University of Coimbra University of Coimbra Coimbra, Portugal Coimbra, Portugal [email protected] [email protected] arXiv:1410.1160v1 [cs.CR] 5 Oct 2014 ® Research ℠ June 26, 2013 research.spec.org www.spec.org Contents 1 Introduction.......................................1 2 Intrusion Detection in Virtualized Environments . .2 2.1 VMM-Based Intrusion Detection Systems . .2 2.2 Intrusion Detection Techniques . .4 Misuse-based Intrusion Detection . .4 Anomaly-based Intrusion Detection . .5 3 Requirements and Challenges for Benchmarking VMM-based IDSes . .7 3.1 Workloads . .7 Benign Workloads . .7 Malicious Workloads . 10 3.2 Metrics ..................................... 14 4 Conclusion . 17 References . 18 i Executive Summary Modern intrusion detection systems (IDSes) for virtualized environments are deployed in the virtualization layer with components inside the virtual machine monitor (VMM) and the trusted host virtual machine (VM). Such IDSes can monitor at the same time the network and host activities of all guest VMs running on top of a VMM being isolated from malicious users of these VMs. We refer to IDSes for virtualized environments as VMM-based IDSes. In this work, we analyze state-of-the-art intrusion detection techniques applied in virtualized environments and architectures of VMM-based IDSes.
    [Show full text]
  • World-Record Virtualization Performance: Cisco UCS B440 Server
    Cisco UCS B440 M1 High-Performance Blade Server: Performance Brief World-Record Virtualization Performance World-Record-Setting Blade Server Performance performance is observed. This procedure produces a VMware VMmark score and the The Cisco® UCS B440 M1 High-Performance Blade Server is a four-socket server number of tiles for the benchmark run. that leads the blade industry with a VMware VMmark benchmark score of 71.13 at 48 tiles, making it the highest-performing blade server for virtualiza- Industry-Leading Performance tion available anywhere. The server more than doubles HP’s closest blade Cisco tested the Cisco Unified Computing System equipped with a Cisco UCS B440 server result and delivers an 22 percent advantage over the closest M1 blade server containing four eight-core Intel Xeon X7500 series processors with 512 blade server score. This result means that customers can achieve higher consoli- GB of memory connected to two EMC CLARiiON CX4-480 storage systems through a dation ratios in their virtualized environments, with greater performance. Customers Fibre Channel SAN. This four-socket, 32-core system delivers a VMware VMmark score now can run even the most challenging workloads on a blade system with greater surpassing all blade server results posted at http://www.vmmark.com as of August 25, return on investment (ROI), reduced total cost of ownership (TCO), and the agility to 2010 (Figure 1). The VMware VMmark score of 71.13 is 243 percent higher than HP’s deploy applications more rapidly and securely. next-closest blade server result. It is 22 percent higher than the next-closest blade server result, the Dell PowerEdge M910 Blade Server with four eight-core Intel Xeon A Platform Built for Virtualization 7500 series processors.
    [Show full text]
  • Vmware Vsphere 4 Vs. Microsoft Hyper-V R2
    long gone are the days when “sun Microsystems” meant only Solaris on SPARC. peTeR BaeR gaLvin Sun is pushing hard to be a platform pro- vider for multiple operating systems, as well as a provider of their own Solaris operat- Pete’s all things Sun: ing system. In some ways this column is a VMware vSphere 4 vs. continuation of my April column (;login: Microsoft Hyper-V R2 April 2009, Volume 34, Number 2), which contained a virtualization guide. That col- Peter Baer Galvin is the chief technolo- umn discussed the virtualization offerings gist for Corporate Technologies, a premier created by Sun. This column explores the systems integrator and VAR (www.cptech. com). Before that, Peter was the systems rich, controversial, and important terrain manager for Brown University’s Computer Science Department. He has written articles of two of the market leaders in virtualiza- and columns for many publications and is tion, VMware and Microsoft. The topic is not co-author of the Operating Systems Concepts and Applied Operating Systems Concepts Sun-specific but is probably of interest to textbooks. As a consultant and trainer, Peter teaches tutorials and gives talks on security many Sun customers. The Sun x86 servers and system administration worldwide. Peter are certified to run VMware and Windows, blogs at http://www.galvin.info and twit- ters as “PeterGalvin.” as well as Solaris and Linux. In my experi- [email protected] ence, Sun x86 servers, especially the x4600 with its eight sockets and quad-core CPUs, make excellent virtualization servers. The question then becomes, which virtualiza- tion technology to run? OpenSolaris has Xen built in, but many sites want mainstream and well-tested solutions.
    [Show full text]
  • IADIS Conference Template
    BENCHMARKING OF BARE METAL VIRTUALIZATION PLATFORMS ON COMMODITY HARDWARE Duarte Pousa*, José Rufino*† *Polytechnic Institute of Bragança, 5300-253 Bragança, Portugal †Laboratory of Instrumentation and Experimental Particle Physics, University of Minho, 4710-057 Braga, Portugal ([email protected], [email protected]) ABSTRACT In recent years, System Virtualization became a fundamental IT tool, whether it is type-2/hosted virtualization, mostly exploited by end-users in their personal computers, or type-1/bare metal, well established in IT departments and thoroughly used in modern datacenters as the very foundation of cloud computing. Though bare metal virtualization is meant to be deployed on server-grade hardware (for performance, stability and reliability reasons), properly configured desktop-class systems are often used as virtualization “servers”, due to their attractive performance/cost ratio. This paper presents the results of a study conducted on such systems, about the performance of Windows 10 and Ubuntu Server 16.04 guests, when deployed in what we believe are the type-1 platforms most in use today: VMware ESXi, Citrix XenServer, Microsoft Hyper-V, and KVM-based (represented by oVirt and Proxmox). Performance is measured using three synthetic benchmarks: PassMark for Windows, UnixBench for Ubuntu Server, and the cross-platform Flexible I/O Tester. The benchmarks results may be used to choose the most adequate type-1 platform (performance-wise), depending on guest OS, its performance requisites (CPU-bound, IO-bound, or balanced) and its storage type (local/remote) used. KEYWORDS Bare Metal Virtualization, Synthetic Benchmarking, Performance Assessment, Commodity Hardware 1. INTRODUCTION System Virtualization allows a physical host to run (simultaneously) many guest operating systems in self- contained software-defined virtual machines, sharing the host hardware, under control of a hypervisor.
    [Show full text]
  • Vmmark 2.5 Virtualization Performance of the Dell Equallogic PS6210XS Storage Array
    VMMARK 2.5.2 VIRTUALIZATION PERFORMANCE OF THE DELL EQUALLOGIC PS6210XS STORAGE ARRAY Many modern data centers are using virtual machines (VMs) to consolidate physical servers to increase operational efficiency. As multi-core processors become more commonplace, underutilization of physical servers has become an increasing problem. Without virtualization, it is very difficult to fully utilize the power of a modern server. In a virtualized environment, a software layer lets users create multiple independent VMs on a single physical server, taking full advantage of the hardware resources. The storage solution, which is just as important as the servers and processors, should be flexible to accommodate the demands on real-world applications and operations that virtualization brings to the table. In all virtualized environments, storage performance can deteriorate due to a phenomenon called the input/output (I/O) blender effect. Multiple VMs send their I/O streams to a hypervisor for processing. Unfortunately, if you are using more than one type of workload, I/O profiles are no longer consistent. This randomization of I/O workload profiles, which can occur with all virtualization platforms, renders prior workload optimizations ineffective, which can increase latency, or response time. Because the performance requirements of storage in a completely virtualized environment differ from those in a physical or only partially virtualized environment, it is important to use a benchmark designed with these differences in mind, such as VMware VMmark 2.5.2. VMmark incorporates a variety of platform-level workloads NOVEMBER 2014 A PRINCIPLED TECHNOLOGIES TEST REPORT Commissioned by Dell such as vMotion® and Storage vMotion® in addition to executing diverse workloads on a collection of virtual machines.
    [Show full text]
  • TPC-V: a Benchmark for Evaluating the Performance of Database Applications in Virtual Environments Priya Sethuraman and H
    TPC-V: A Benchmark for Evaluating the Performance of Database Applications in Virtual Environments Priya Sethuraman and H. Reza Taheri, VMWare, Inc. {psethuraman, rtaheri}@vmware.com TPCTC 2010 Singapore © 2010 VMware Inc. All rights reserved Agenda/Topics Introduction to virtualization Existing benchmarks Genesis of TPC-V But what is TPC-E??? TPC-V design considerations Set architectures, variability, and elasticity Benchmark development status Answers to some common questions 2 TPC TC 2010 What is a Virtual Machine? A (VM) is a software computer that, like a physical computer, runs an operating system and applications. An operating system installed on a virtual machine is called a guest operating system. Virtual machines run on host servers. The same server can run many virtual machines. Every VM runs in an isolated environment. Started out with IBM VM in the 60s Also on Sun Solaris, HP Itanium, IBM Power/AIX, others A new wave started in the late 90s on X86 • Initially, enthusiasts ran Windows and Linux VMs on their PCs Traditional Architecture Virtual Architecture 3 TPC TC 2010 Why virtualize a server ? Server consolidation • The vast majority of server are grossly underutilized • Reduces both CapEx and OpEx Migration of VMs (both storage and CPU/memory) • Enables live load balancing • Facilitates maintenance High availability • Allows a small number of generic servers to back up all servers Fault tolerance • Lock-step execution of two VMs Cloud computing! Utility computing was finally enabled by • Ability to consolidate
    [Show full text]