A Virtual Storage Environment for SSDs and HDDs in Xen Hypervisor
|
|
|
- Clinton Short
- 10 years ago
- Views:
Transcription
1 A Virtual Storage Environment for SSDs and HDDs in Xen Hypervisor Yu-Jhang Cai, Chih-Kai Kang and Chin-Hsien Wu Department of Electronic and Computer Engineering National Taiwan University of Science and Technology, Taipei, Taiwan {m12113, Research Center for Information Technology Innovation Academia Sinica, Taipei, Taiwan 1 Abstract Nowadays, virtualization is a popular technology to provide an abstract hardware emulation due to the increasing hardware speed and capabilities such as multi-core CPUs, large-size main memory, and high-bandwidth networking. Virtualization technology enables multiple virtual machines to run on a physical machine, where each virtual machine can run independently and own its operating system. In particular, I/O performance will be an important factor of virtualization technology. Current popular storage devices contain traditional hard-disk drives (HDDs) and solid-state drives (SSDs). Although HDDs can provide a more economical solution than SSDs, SSDs can provide high I/O performance and power saving, especially for random I/O accesses. In the paper, we will build a virtual storage environment for SSDs and HDDs in Xen hypervisor. With the proposed virtual storage environment in Xen hypervisor, we can receive and analyze I/O requests from multiple virtual machines, and perform I/O requests to any physical storage devices. According to the experimental results, the proposed method can include both SSDs (i.e., fast access) and HDDs (i.e, low cost) in virtualization environment. Overall, the proposed method can provide an adjustment mechanism in I/O performance for those (soft real-time) applications that require high I/O performance in virtualization environment. Keywords: Virtualization, Solid-State Drive (SSD), Xen Hypervisor I. INTRODUCTION Virtualization technology can allow multiple independent virtual machines to run their own operation system in a single physical machine. With the virtualization technology, a software layer (called hypervisor) is used to manage hardware resources into virtual resources for virtual machines, and can allocate appropriate virtual resources according to each virtual machine s demand. For example, a hypervisor in Xen must handle physical CPU scheduling and main memory allocation, and enforce isolation for each virtual machine. In particular, I/O performance will become an important factor for the hypervisor in terms of resource adjustment. Current popular Corresponding Author: Chin-Hsien Wu. This work is also supported in part by a research grant from the National Science Council under Grant NSC E MY3. storage devices contain traditional hard-disk drives (HDDs) and solid-state drives (SSDs). Although HDDs can provide a more economical solution than SSDs, SSDs can provide high I/O performance and power saving, especially for random I/O accesses. In the paper, we will build a virtual storage environment for SSDs and HDDs in Xen hypervisor. A revised Xen hypervisor will play an important role of receiving and analyzing I/O requests from virtual machines, and performing I/O requests to SSDs and HDDs. Therefore, we will create a monitor mechanism in Xen hypervisor to receive and analyze I/O requests from multiple virtual machines. Based on the monitor, we can determine which I/O requests will be transferred to SSDs or HDDs. We will also create a content mapping table to record which data are located in SSDs or HDDs. Therefore, the monitor and the content mapping table can help Xen Hypervisor to receive and analyze I/O requests from multiple virtual machines, and perform I/O requests to any physical storage devices. We believe that the proposed virtual storage environment can provide users a platform to include various storages such as SSDs (i.e., fast access) and HDDs (i.e., low cost). According to the experimental results, we can find out that the proposed virtual storage environment using SSDs and HDDs can not only provide better performance than only HDDs but also provide a more economical solution than only SSDs. Overall, the proposed virtual storage environment can provide an adjustment mechanism in I/O performance for those (soft real-time) applications that require high I/O performance in virtualization environment. The rest of the paper is organized as follows: Section II provides an overview of background knowledge. Section III is the motivation. Section IV is the related work. Section V presents a virtual storage environment for SSDs and HDDs in Xen hypervisor. Section VI provides the experimental evaluation. Finally, Section VII is the conclusion. II. BACKGROUND KNOWLEDGE Virtualization technology provides the hardware simulation which other softwares (e.g. operating systems) can run on. In other words, virtualization technology enables multiple
2 2 virtual machines to run on a physical machine, where each virtual machine can run independently and own its operating system in a logically distinct environment. Virtualization is not a new concept and has been in use for decades. However, virtualization is more popular now than ever because it is convenient and flexible for IT administrators. Today, many hypervisors or virtual machine monitors (such as VMware [1], VirtualBox [2], Windows Hyper-V [3], Xen [4], and KVM [5]) can run on top of physical machines and schedule the execution of virtual machines. Multiple instances of a lot of operating systems may share the virtualized hardware resources. Xen [4] is developed by the University of Cambridge Computer Laboratory and uses para-virtualization in its virtual machines because of the performance and administrative advantages. Since para-virtualization needs to modify guest OS kernel, Xen adopts Hypercalls as system calls for guest OSs to avoid simulating complex instruction sets. In the aspect of I/O virtualization, Xen uses front-end driver and back-end driver to improve I/O performance by sharing pages in main memory. When processor technology (such as Intel Virtualization Technology and AMD Secure Virtual Machine) for virtualization is added, Xen starts to support full virtualization after version of 3.. Figure 1 shows Xen s virtualization architecture which is divided into three parts: Xen hypervisor, Domain, and. Fig. 1. Domain Guest Guest Guest Guest Xen Control User Interface Device Drivers Back-end Drivers Applications NFS Client Front-end Drivers Applications NFS Client Front-end Drivers Virtual CPU Virtual MMU Scheduling Physical Memory Physical CPU Xen s Virtualization Architecture Network Applications NFS Client Storage Device Front-end Drivers Xen Hypervisor Hardware 1) Xen Hypervisor: Xen hypervisor is an abstraction layer between the guest domains and the physical hardware and is responsible for allocating and controlling resources (such as CPU scheduling and main memory allocating), and enforcing protection and isolation. Xen hypervisor defines the communication interface for virtual machines but it does not contain the drivers of hardware devices (such as network card and graphics card). Xen hypervisor could not cause too much overhead, because it can directly access hardware resources and avoid simulating complex instruction sets. 2) Domain : Domain is a modified Linux kernel and is only one privileged virtual machine. Domain can directly access the hardware resources, and contain drivers for the hardware resources. Domain also provides back-end driver that is responsible for receiving and handling all I/O requests of virtual machines. In fact, Domain is the only one that can issue control commands to hardware, and other virtual machines need Domain to access the hardware resources. 3) : is a general virtual machine. Since is a unprivileged virtual machine, it can not directly access the hardware resources. can send I/O requests through front-end driver, and back-end driver in Domain will handle and perform the I/O requests. III. MOTIVATION We use a SSD (Intel 32 series 16GB) and a HDD (Hitachi HDS7211CLA332 72RPM 1TB) as the storage devices and use Iometer [6] to test I/O performance under various sizes of request accesses (i.e., random accesses and sequential accesses). Overall, the performance of is better than Hitachi HDD. for random accesses has better performance than Hitachi HDD because random accesses could cause long mechanical latency time for Hitachi HDD. However, sequential accesses could favor Hitachi HDD, especially when the request size of sequential writes is increased. This is because large write requests could cause unexpected activities of garbage collection in and reduce its performance. for sequential reads and writes is about 4 times faster than Hitachi HDD with 4KB request size. When request size is increased to 512KB, Intel SSD is about 2 times faster than Hitachi HDD in sequential accesses. However, we observe that for random accesses has better performance than Hitachi HDD when request size is small. for random reads and writes is about 35 times and 4 times faster than Hitachi HDD with 4KB request size, respectively. When request size is increased to 512KB, is about 4 times faster than Hitachi HDD in random accesses. Moreover, when request size is above 64KB, the performance of increases slowly. According to the above experimental results, when some (soft real-time) applications in virtual machines require high I/O performance, SSDs (solid-state drives) can be used because of its better performance than traditional HDDs (hard-disk drives) in terms of read and write accesses. Although HDDs can provide a more economical solution than SSDs, SSDs can provide better performance than HDDs, especially for (soft real-time) applications with a lot of random accesses. Therefore, we will build a virtual storage environment for SSDs and HDDs in Xen hypervisor. We believe that the proposed method can provide users a platform to include various storages such as SSDs (i.e., fast access) and HDDs (i.e., low cost). IV. RELATED WORK Many previous studies about hybrid storage systems often use SSDs as a secondary-level cache [12] [15]. [12] considers that SSDs are suitable to be placed between main memory and HDDs as a second-level cache rather than to store data. [13] also uses SSDs as a second-level cache to buffer data which stored in HDDs, but thinks not all data should be buffered in SSDs. Therefore, [13] sets a threshold value to filter out inappropriate data and only buffers data with smaller
3 3 request size. [14] uses a LRU (Least Recently Used) method to filter out data which are least recently used, and removes data according to the access characteristics of flash memory. [15] tracks the count of block accesses, and identifies frequently used parts, and then caches the frequently used data in SSDs. When the capacity of SSDs grow larger and cheaper, SSDs are suitable to be a storage device rather than cache and some research [16] [21] tries to integrate SSDs and HDDs into one storage system. Different from the previous work, the objective of the paper will focus on the implementation and discussion on how to revise Xen hypervisor to provide a platform using SSDs and HDDs in virtualization environment. Note that our current work [22] is also based on the virtual storage environment to implement a hybrid storage access framework and evaluate its performance for virtual machines. To strengthen the paper s contributions, we will write the virtual storage environment in the paper. V. A VIRTUAL STORAGE ENVIRONMENT FOR SSDS AND HDDS A. Overview we will propose a virtual storage environment in Xen hypervisor by revising related components (e.g., tap-disk and blockaio). With the virtual storage environment, we can receive and analyze I/O requests from multiple virtual machines and determine which I/O requests should be transferred to SSDs or HDDs without any modifications of (guest) operating systems. B. I/O Requests from Multiple Virtual Machines Guest 1 I/O Requests Guest 2 I/O Requests Monitor Guest N I/O Requests A Virtual Storage Environment Hard-Disk Drive Solid-State Drive storages Domain user space Blktap daemon Guest OS Blkfront Guest OS Blkfront Fig. 3. VM1 VM2 Content Mapping Table VMN VM1 VM2 Blktap Driver VMN I/O Requests from Virtual Machines to Physical Storage Devices Fig. 2. Blktap (kernel module) System Architecture I/O Request I/O Request Domain kernel space Xen Hypervisor I/O Request Figure 2 is the system architecture, and we will build a virtual storage environment for SSDs and HDDs in Xen hypervisor by modifying Blktap driver. With the virtual storage environment, even if multiple virtual machines run different guest operating systems, we do not need to modify the guest operating systems for the management of SSDs and HDDs. Some previous method is using upper-level applications to figure out which data should be transferred to SSDs or HDDs. For example, multimedia files (e.g., video and pictures) could result in more sequential accesses and can be transferred to HDDs. Some files are randomly accessed and can be transferred to SSDs. However, any virtual machine could run any operating system and applications, and specific upper-level applications are not suitable for the management of SSDs and HDDs. In order to avoid modifying (guest) operating systems, Kernel For handling I/O requests from multiple virtual machines, we will modify the Blktap driver in Xen hypervisor. The Blktap driver consists of two parts: one is located at kernel space of Domain that acts similarly to the existing Xen/Linux blkback driver, and another one is at user space of Domain. Blktap [23] in the user space can provide Xen hypervisor an interface to access storage devices. Blktap can also mount virtual device s. As shown in Figure 2, Blktap in the kernel space will not directly access physical storage devices, but it receives all I/O requests of and transfers the I/O requests to Blktap in the user space of Domain to perform I/O requests to physical storage devices. This kind of design is beneficial to develop convenient functions in the user space. As shown in Figure 3, the revised Blktap driver in Domain will receive all I/O requests from multiple virtual machines (i.e, ) and then perform I/O requests to any physical storage devices (i.e., SSDs and HDDs). Therefore, we create a monitor mechanism in Xen hypervisor to analyze I/O requests by read/write operations, access times, priorities, and request size, etc. Based on the monitor, we can determine which I/O requests will be transferred to SSDs or HDDs. For those (soft real-time) applications in virtual machines, the monitor can be used to adjust and increase I/O performance for the applications in the virtual machines. We think that the monitor can play an important role for dynamic adjustment in I/O
4 4 TABLE I. RELATED FILES AND FUNCTIONS THAT WE REVISED Component File Function Functionality tapdisk vbd create() 1. Create and maintain a content mapping table Tap-disk Tapdisk-vbd.c tapdisk vbd issue request() 2. Create a monitor mechanism counter content mapping table() 3. Analyze I/O requests monitor() 4. Deliver I/O requests and its locations to Block-aio component Block-aio Block-aio.c tdaio open() tdaio complete() tdaio queue read() tdaio queue write() 1. Maintain virtual machine s in SSDs and HDDs 2. Perform I/O requests to SSDs and HDDs 3. Migrate data between SSDs and HDDs performance 1. We also create a content mapping table to record which data are transferred to SSDs or HDDs. According to the content mapping table in Figure 3, we can know which data (e.g., virtual machine s) are located in SSDs or HDDs. Therefore, the monitor and the content mapping table can help Xen Hypervisor to receive and analyze I/O requests from multiple virtual machines and perform I/O requests to physical storage devices. The management and design of the content mapping table should consider not only search efficiency but also main memory usage. It is like the design of page table but could face different constraints and situations, especially when multiple virtual machines are executed simultaneously. C. Implementation Fig. 4. Execution Process of I/O requests Figure 2 is the system architecture, and we will build a virtual storage environment for SSDs and HDDs in Xen Hypervisor by modifying Blktap driver. We mainly modify two components: Tap-disk and Block-aio in Blktap driver which will abstract each virtual machine storage into a virtual block device. Figure 4 shows the execution process of I/O requests, where Blktap is in Domain and Blkfront is in. When issues system calls (i.e., I/O requests), the calls would go from Blkfrnt to Blktap by device channel which is a connection between and Domain. Blktap will notify Tap-disk and wake up Tap-disk to receive and analyze 1 Note that a policy in the monitor to determine which data should be placed in SSDs or HDDs for dynamic adjustment in I/O performance can be found in [22]. The paper just focuses on the implementation and discussion on how to revise Xen hypervisor to include SSDs and HDDs for virtual machines. I/O requests. Note that Table I shows related files and functions in Xen hypervisor that we revised. Related functionalities are also added to Tap-disk and Block-aio components for the virtual storage environment. For example, in Tap-disk component, it will deliver I/O requests and its locations to Block-aio component. In Block-aio component, it will perform the delivered I/O requests to SSDs and HDDs, and can migrate data between SSDs and HDDs. 1) Receive and analyze I/O requests: When running multiple virtual machines, there are many I/O requests to Blktap. Tap-disk is a process which can handle I/O requests and provide an interface for virtual machine management. Because Tap-disk can receive every I/O request from each virtual machine and put the requests in I/O queue, we can modify Tapdisk to analyze the I/O requests and then determine their storage destinations (i.e., the monitor mechanism). Furthermore, we use a td vbd t structure to record related information of a virtual block device. td vbd t can contain the name, the location, and an access interface for a corresponding virtual block device. According to the analysis of I/O requests, we can transfer appropriate I/O requests to SSDs or HDDs. A content mapping table is used to record the address mapping for I/O requests. 2) Perform I/O requests to Physical Storage Devices: Because we adopt different physical storage devices such as SSDs and HDDs, we can perform I/O requests to any physical storage devices and maintain related virtual machine s. Block-aio component is a process to handle each virtual machine such as open/close and I/O requests to the. It is a bottom layer of Xen hypervisor to access physical storage devices. Therefore, we can modify Blockaio to perform I/O requests to the final storage devices (e.g., SSDs or HDDs). First, we classify I/O requests according to the content mapping table in Tap-disk. Then, Block-aio will issue system calls to perform I/O requests to physical storage devices. VI. EXPERIMENTAL EVALUATION In our hardware environment, CPU was Intel(R) Core(TM) i7 CPU 3.7GHz, memory was 8GB, a HDD was Hitachi HDS7211CLA332 1TB, and a SSD was Intel 32 series 16GB. We adopted Xen as hypervisor and linux kernel Domain deployed 2GB memory and Ubuntu 11.1 OS. deployed 128 MB memory, 32GB storage space, and Ubuntu 11.1 OS, as shown in Table II. In order to confirm that our virtual storage environment is workable and efficient, we used the logs of I/O requests, which are provided by Storage Performance Council (SPC) [24]. As
5 Normalized Execution Time 5 Hardware System Domain TABLE II. ENVIRONMENT CONFIGURATION CPU Intel(R) Core(TM) i7 CPU 3.7GHz Hard Disk Hitachi HDS7211CLA332 1TB Solid-State Drive Kingston HyperX SSD 12GB Memory 8 GB Virtualization Software Xen Linux Kernel Linux Operating system Ubuntu 11.1 Memory 2 GB Operating system Ubuntu 11.1 Memory 128 MB Storage 32 GB vcpu 1 shown in Table III, Financial On-Line Transaction Processing (OLTP) is mainly composed of sequential access requests. Web search logs is composed of random access requests. We will use the logs to simulate real workloads. Normalized Execution Time Fig. 5. Web Search Websearch Hitachi HDD 5% SSD and 5% HDD TABLE III. (a) Web Search Web search Read 99 % Write 1 % Request Size 8 KB Workload Size 16.7 GB Total Read 65.8 GB Total Write 8 MB WORKLOAD CHARACTERISTICS (b) OLTP OLTP Read 25 % Write 75 % Request Size 512 B 2 KB Workload Size 3.6 GB Total Read 2.6 GB Total Write 14 GB We also measured the normalized execution time under three configurations. Three configurations are Hitachi HDD, 5% HDD and 5% SSD, and. Hitachi HDD means that all I/O requests in virtual machines are handled by a hard-disk drive (Hitachi HDS7211CLA332 1TB) and means that all I/O requests in virtual machines are handled by a solidstate drive (Intel Series32 13GB). 5% HDD and 5% SSD means that all I/O requests in virtual machines are handled by a virtual storage device using a hard-disk drive and a solidstate drive, and the hard-disk drive and the solid-state drive will handle 5% workloads, respectively. One virtual machine which only use was used as a comparison baseline in terms of normalized execution time. We will run different number of virtual machines (i.e., 1VM, 2VMs, 3VMs, and 4VMs). For example, 4VMs means that four virtual machines will be executed at the same time to measure the normalized execution time. Figure 5 is the experimental results of web search. Because web search logs have many random access requests (99% read and 1% wirte), the normalized execution time of was about 11 times faster than Hitachi HDD when running one virtual machine. When running two or more virtual machines, was about 11 to 2 times faster than Hitachi HDD. When compared to 5% HDD and 5% SSD, as shown in Figure 6, was about 2.2 and 1.7 times faster than it when running one/two and four virtual machines, respectively. Figure 7 is the experimental results of Financial OLTP. Most of OLTP workloads are sequential access requests, and its average request size was relatively small. The normalized execution time of was about 1 times faster than Hitachi when running one virtual machine. Furthermore, when running two and three/four virtual machines, was Fig. 6. SSD Websearch 5% SSD and 5% HDD Web Search - Only Compare 5% HDD and 5% SSD whit Intel about 18 and 22 times faster than Hitachi HDD, respectively. Although Financial OLTP workloads mainly consist of sequential access requests, Hitachi HDD cannot get benefit from small request size. On the other hand, Figure 8 shows that Intel SSD was only 1.3 times faster than 5% HDD and 5% SSD in all situations. Overall, we can find out that the proposed virtual storage environment using SSDs and HDDs can not only provide better performance than only HDDs but also provide a more economical solution than only SSDs. VII. CONCLUSION In the paper, we build a virtual storage environment for SSDs and HDDs in Xen hypervisor. The objective of the paper focuses on the implementation and discussion on how to revise Xen hypervisor to provide a platform using SSDs and HDDs in virtualization environment. We revise the Xen hypervisor by modifying two components (i.e., Tap-disk and Block-aio) in Blktap driver which will abstract each virtual machine storage into a virtual block device. The revised Xen hypervisor will play an important role of receiving and analyzing I/O requests from virtual machines, and performing I/O requests to SSDs and HDDs (i.e., the monitor mechanism and the content mapping table). According to the experimental results, we demonstrate that the proposed virtual storage environment
6 Normalized Exectuon Time Normalized Execution Time 6 Fig. 7. Fig. 8. SSD Financial OLTP Financial Financial Hitachi HDD 5% SSD and 5% HDD 5% SSD and 5% HDD Financial OLTP - Only Compare 5% HDD and 5% SSD whit Intel can provide users a platform to include various storages such as SSDs (i.e., fast access) and HDDs (i.e., low cost). For those (soft real-time) applications in virtual machines, the proposed virtual storage environment can provide an adjustment mechanism in their I/O performance. Furthermore, the proposed virtual storage environment using SSDs and HDDs can not only provide better performance than only HDDs but also provide a more economical solution than only SSDs. For the future work, we think the monitor mechanism should play different roles in different situations, such as different access patterns of virtual machines and different characteristics of SSDs. We think the monitor should be configured dynamically and adaptively according to current demands, available resources, and system workloads. We hope to find different deployment approaches to improve the virtual storage environment. REFERENCES [1] VMware Homepage. [2] Virtual Box. [3] Windows Hyper-V server. aspx. [4] Xensource Homepage. [5] KVM. Page. [6] Iometer Filesystem Benchmark. [7] F. Chen, S. Jiang and X. Zhang, SmartSaver: Turning flash drive into a disk energy saver for mobile computers, in ACM ISLPED., 26. [8] L.-P. Chang, Hybrid solid-state disks: combining heterogeneous NAND flash in large SSDs, in ASP-DAC., 28. [9] G. Soundararajan, V. Prabhakaran, M. Balakrishnan and T. Wobber, Extending SSD lifetimes with disk-based write caches, in USENIX FAST., 21. [1] G. Sun, Y. Joo, Y. Chen, D. Niu, Y. Xie, Y. Chen and H. Li, A Hybrid solid-state storage architecture for the performance, energy consumption, and lifetime improvement, in IEEE HPCA., 21. [11] B. Mao, H. Jiang, S. Wu, L. Tian, D. Feng, J. Chen and L. Zeng, HPDA: A hybrid parity-based disk array for enhanced performance and reliability, in ACM TOC., 212. [12] A. Leventha, Flash storage memory, in Communications of the ACM., 28. [13] J. Matthews, S. Trika, D. Hensgen, R. Coulson and K. Grimsrud, Intel Turbo Memory: Nonvolatile disk caches in the storage hierarchy of mainstream computer systems, in ACM Transactions on Storage., 28. [14] T. Kgil, D. Roberts and T. Mudge, Improving NAND Flash Based Disk Caches, in ACM ISCA., 28. [15] T. Pritchett and M. Thottethodi, SieveStore: a highly-selective, ensemble-level disk cache for cost-performance, in ACM ISCA., 21. [16] Youngjae Kim, Aayush Gupta, Bhuvan Urgaonkar, Piotr Berman, and Anand Sivasubramaniam, HybridStore A Cost-Efficient, High- Performance Storage System Combining SSDs and HDDs, in IEEE MASCOTS., 211. [17] S.-F. Hsiao, P.-C. Hsiu and T.-W. Kuo, A Reconfigurable Virtual Storage Device, in IEEE ISORC., 29. [18] M. Canim, G. A. Mihaila, B. Bhattacharjee, K. A. Ross and C. A. Lang, An object placement advisor for DB2 using solid state storage, in Proceedings of the VLDB Endowment., 29. [19] H. Payer, M. A. Sanvido, Z. Z. Bandic and C. M. Kirsch, Combo Drive: Optimizing Cost and Performance in a Heterogeneous Storage Device, in WISH., 29. [2] Q. Yang and J. Ren, I-CASH: Intelligently Coupled Array of SSD and HDD, in IEEE HPCA., 211. [21] F. Chen, D. A. Koufaty and X. Zhang, Hystor: making the best use of solid state drives in high performance storage systems, in ACM ICS., 211. [22] C. K. Kang, Y. J. Cai, C. H. Wu, and P. C. Hsiu, A Hybrid Storage Access Framework for Virtual Machines, accepted and will appear in IEEE RTCSA., 213. [23] Xen blktap2 driver. [24] Storage Performance Council. home/.
Full and Para Virtualization
Full and Para Virtualization Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF x86 Hardware Virtualization The x86 architecture offers four levels
Enabling Technologies for Distributed Computing
Enabling Technologies for Distributed Computing Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS School of Computing, UNF Multi-core CPUs and Multithreading Technologies
IOS110. Virtualization 5/27/2014 1
IOS110 Virtualization 5/27/2014 1 Agenda What is Virtualization? Types of Virtualization. Advantages and Disadvantages. Virtualization software Hyper V What is Virtualization? Virtualization Refers to
Enabling Technologies for Distributed and Cloud Computing
Enabling Technologies for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Multi-core CPUs and Multithreading
Maximizing SQL Server Virtualization Performance
Maximizing SQL Server Virtualization Performance Michael Otey Senior Technical Director Windows IT Pro SQL Server Pro 1 What this presentation covers Host configuration guidelines CPU, RAM, networking
DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION
DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION A DIABLO WHITE PAPER AUGUST 2014 Ricky Trigalo Director of Business Development Virtualization, Diablo Technologies
Efficient Load Balancing using VM Migration by QEMU-KVM
International Journal of Computer Science and Telecommunications [Volume 5, Issue 8, August 2014] 49 ISSN 2047-3338 Efficient Load Balancing using VM Migration by QEMU-KVM Sharang Telkikar 1, Shreyas Talele
Microkernels, virtualization, exokernels. Tutorial 1 CSC469
Microkernels, virtualization, exokernels Tutorial 1 CSC469 Monolithic kernel vs Microkernel Monolithic OS kernel Application VFS System call User mode What was the main idea? What were the problems? IPC,
Cloud Computing CS 15-319
Cloud Computing CS 15-319 Virtualization Case Studies : Xen and VMware Lecture 20 Majd F. Sakr, Mohammad Hammoud and Suhail Rehman 1 Today Last session Resource Virtualization Today s session Virtualization
Virtualization. Michael Tsai 2015/06/08
Virtualization Michael Tsai 2015/06/08 What is virtualization? Let s first look at a video from VMware http://bcove.me/x9zhalcl Problems? Low utilization Different needs DNS DHCP Web mail 5% 5% 15% 8%
Virtualization Technologies and Blackboard: The Future of Blackboard Software on Multi-Core Technologies
Virtualization Technologies and Blackboard: The Future of Blackboard Software on Multi-Core Technologies Kurt Klemperer, Principal System Performance Engineer [email protected] Agenda Session Length:
SH-Sim: A Flexible Simulation Platform for Hybrid Storage Systems
, pp.61-70 http://dx.doi.org/10.14257/ijgdc.2014.7.3.07 SH-Sim: A Flexible Simulation Platform for Hybrid Storage Systems Puyuan Yang 1, Peiquan Jin 1,2 and Lihua Yue 1,2 1 School of Computer Science and
How SSDs Fit in Different Data Center Applications
How SSDs Fit in Different Data Center Applications Tahmid Rahman Senior Technical Marketing Engineer NVM Solutions Group Flash Memory Summit 2012 Santa Clara, CA 1 Agenda SSD market momentum and drivers
How To Create A Cloud Based System For Aaas (Networking)
1 3.1 IaaS Definition IaaS: Infrastructure as a Service Through the internet, provide IT server, storage, computing power and other infrastructure capacity to the end users and the service fee based on
NAND Flash-based Disk Cache Using SLC/MLC Combined Flash Memory
International Workshop on Storage Network Architecture and Parallel I/Os NAND Flash-based Disk Cache Using /MLC Combined Flash Memory Seongcheol Hong School of Information and Communication Engineering
Accelerating Server Storage Performance on Lenovo ThinkServer
Accelerating Server Storage Performance on Lenovo ThinkServer Lenovo Enterprise Product Group April 214 Copyright Lenovo 214 LENOVO PROVIDES THIS PUBLICATION AS IS WITHOUT WARRANTY OF ANY KIND, EITHER
hybridfs: Integrating NAND Flash-Based SSD and HDD for Hybrid File System
hybridfs: Integrating NAND Flash-Based SSD and HDD for Hybrid File System Jinsun Suk and Jaechun No College of Electronics and Information Engineering Sejong University 98 Gunja-dong, Gwangjin-gu, Seoul
Using Synology SSD Technology to Enhance System Performance. Based on DSM 5.2
Using Synology SSD Technology to Enhance System Performance Based on DSM 5.2 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges... 3 SSD Cache as Solution...
White paper. QNAP Turbo NAS with SSD Cache
White paper QNAP Turbo NAS with SSD Cache 1 Table of Contents Introduction... 3 Audience... 3 Terminology... 3 SSD cache technology... 4 Applications and benefits... 5 Limitations... 6 Performance Test...
MS Exchange Server Acceleration
White Paper MS Exchange Server Acceleration Using virtualization to dramatically maximize user experience for Microsoft Exchange Server Allon Cohen, PhD Scott Harlin OCZ Storage Solutions, Inc. A Toshiba
Virtualization of the MS Exchange Server Environment
MS Exchange Server Acceleration Maximizing Users in a Virtualized Environment with Flash-Powered Consolidation Allon Cohen, PhD OCZ Technology Group Introduction Microsoft (MS) Exchange Server is one of
Installing & Using KVM with Virtual Machine Manager COSC 495
Installing & Using KVM with Virtual Machine Manager COSC 495 1 Abstract:. There are many different hypervisors and virtualization software available for use. One commonly use hypervisor in the Linux system
PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE
PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE Sudha M 1, Harish G M 2, Nandan A 3, Usha J 4 1 Department of MCA, R V College of Engineering, Bangalore : 560059, India [email protected] 2 Department
www.see-grid-sci.eu Regional SEE-GRID-SCI Training for Site Administrators Institute of Physics Belgrade March 5-6, 2009
SEE-GRID-SCI Virtualization and Grid Computing with XEN www.see-grid-sci.eu Regional SEE-GRID-SCI Training for Site Administrators Institute of Physics Belgrade March 5-6, 2009 Milan Potocnik University
N8103-149/150/151/160 RAID Controller. N8103-156 MegaRAID CacheCade. Feature Overview
N8103-149/150/151/160 RAID Controller N8103-156 MegaRAID CacheCade Feature Overview April 2012 Rev.1.0 NEC Corporation Contents 1 Introduction... 3 2 Types of RAID Controllers... 3 3 New Features of RAID
Virtual Machine Monitors. Dr. Marc E. Fiuczynski Research Scholar Princeton University
Virtual Machine Monitors Dr. Marc E. Fiuczynski Research Scholar Princeton University Introduction Have been around since 1960 s on mainframes used for multitasking Good example VM/370 Have resurfaced
COS 318: Operating Systems. Virtual Machine Monitors
COS 318: Operating Systems Virtual Machine Monitors Kai Li and Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall13/cos318/ Introduction u Have
Evaluation Report: Supporting Multiple Workloads with the Lenovo S3200 Storage Array
Evaluation Report: Supporting Multiple Workloads with the Lenovo S3200 Storage Array Evaluation report prepared under contract with Lenovo Executive Summary Virtualization is a key strategy to reduce the
Basics in Energy Information (& Communication) Systems Virtualization / Virtual Machines
Basics in Energy Information (& Communication) Systems Virtualization / Virtual Machines Dr. Johann Pohany, Virtualization Virtualization deals with extending or replacing an existing interface so as to
Using Synology SSD Technology to Enhance System Performance Synology Inc.
Using Synology SSD Technology to Enhance System Performance Synology Inc. Synology_SSD_Cache_WP_ 20140512 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges...
Energy aware RAID Configuration for Large Storage Systems
Energy aware RAID Configuration for Large Storage Systems Norifumi Nishikawa [email protected] Miyuki Nakano [email protected] Masaru Kitsuregawa [email protected] Abstract
Virtualization. Types of Interfaces
Virtualization Virtualization: extend or replace an existing interface to mimic the behavior of another system. Introduced in 1970s: run legacy software on newer mainframe hardware Handle platform diversity
Managing Storage Space in a Flash and Disk Hybrid Storage System
Managing Storage Space in a Flash and Disk Hybrid Storage System Xiaojian Wu, and A. L. Narasimha Reddy Dept. of Electrical and Computer Engineering Texas A&M University IEEE International Symposium on
Analysis of VDI Storage Performance During Bootstorm
Analysis of VDI Storage Performance During Bootstorm Introduction Virtual desktops are gaining popularity as a more cost effective and more easily serviceable solution. The most resource-dependent process
Dynamic resource management for energy saving in the cloud computing environment
Dynamic resource management for energy saving in the cloud computing environment Liang-Teh Lee, Kang-Yuan Liu, and Hui-Yang Huang Department of Computer Science and Engineering, Tatung University, Taiwan
A Data De-duplication Access Framework for Solid State Drives
JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 28, 941-954 (2012) A Data De-duplication Access Framework for Solid State Drives Department of Electronic Engineering National Taiwan University of Science
Virtualization. Pradipta De [email protected]
Virtualization Pradipta De [email protected] Today s Topic Virtualization Basics System Virtualization Techniques CSE506: Ext Filesystem 2 Virtualization? A virtual machine (VM) is an emulation
Parallels Virtuozzo Containers
Parallels Virtuozzo Containers White Paper Top Ten Considerations For Choosing A Server Virtualization Technology www.parallels.com Version 1.0 Table of Contents Introduction... 3 Technology Overview...
Hypervisors. Introduction. Introduction. Introduction. Introduction. Introduction. Credits:
Hypervisors Credits: P. Chaganti Xen Virtualization A practical handbook D. Chisnall The definitive guide to Xen Hypervisor G. Kesden Lect. 25 CS 15-440 G. Heiser UNSW/NICTA/OKL Virtualization is a technique
Intro to Virtualization
Cloud@Ceid Seminars Intro to Virtualization Christos Alexakos Computer Engineer, MSc, PhD C. Sysadmin at Pattern Recognition Lab 1 st Seminar 19/3/2014 Contents What is virtualization How it works Hypervisor
Comparing Free Virtualization Products
A S P E I T Tr a i n i n g Comparing Free Virtualization Products A WHITE PAPER PREPARED FOR ASPE BY TONY UNGRUHE www.aspe-it.com toll-free: 877-800-5221 Comparing Free Virtualization Products In this
Answering the Requirements of Flash-Based SSDs in the Virtualized Data Center
White Paper Answering the Requirements of Flash-Based SSDs in the Virtualized Data Center Provide accelerated data access and an immediate performance boost of businesscritical applications with caching
SQL Server Virtualization
The Essential Guide to SQL Server Virtualization S p o n s o r e d b y Virtualization in the Enterprise Today most organizations understand the importance of implementing virtualization. Virtualization
Virtualization for Cloud Computing
Virtualization for Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF CLOUD COMPUTING On demand provision of computational resources
SLIDE 1 www.bitmicro.com. Previous Next Exit
SLIDE 1 MAXio All Flash Storage Array Popular Applications MAXio N1A6 SLIDE 2 MAXio All Flash Storage Array Use Cases High speed centralized storage for IO intensive applications email, OLTP, databases
9/26/2011. What is Virtualization? What are the different types of virtualization.
CSE 501 Monday, September 26, 2011 Kevin Cleary [email protected] What is Virtualization? What are the different types of virtualization. Practical Uses Popular virtualization products Demo Question,
Accelerating Database Applications on Linux Servers
White Paper Accelerating Database Applications on Linux Servers Introducing OCZ s LXL Software - Delivering a Data-Path Optimized Solution for Flash Acceleration Allon Cohen, PhD Yaron Klein Eli Ben Namer
Optimizing SQL Server Storage Performance with the PowerEdge R720
Optimizing SQL Server Storage Performance with the PowerEdge R720 Choosing the best storage solution for optimal database performance Luis Acosta Solutions Performance Analysis Group Joe Noyola Advanced
Implementation of Buffer Cache Simulator for Hybrid Main Memory and Flash Memory Storages
Implementation of Buffer Cache Simulator for Hybrid Main Memory and Flash Memory Storages Soohyun Yang and Yeonseung Ryu Department of Computer Engineering, Myongji University Yongin, Gyeonggi-do, Korea
Dynamic Load Balancing of Virtual Machines using QEMU-KVM
Dynamic Load Balancing of Virtual Machines using QEMU-KVM Akshay Chandak Krishnakant Jaju Technology, College of Engineering, Pune. Maharashtra, India. Akshay Kanfade Pushkar Lohiya Technology, College
Models For Modeling and Measuring the Performance of a Xen Virtual Server
Measuring and Modeling the Performance of the Xen VMM Jie Lu, Lev Makhlis, Jianjiun Chen BMC Software Inc. Waltham, MA 2451 Server virtualization technology provides an alternative for server consolidation
VMware Virtual SAN Backup Using VMware vsphere Data Protection Advanced SEPTEMBER 2014
VMware SAN Backup Using VMware vsphere Data Protection Advanced SEPTEMBER 2014 VMware SAN Backup Using VMware vsphere Table of Contents Introduction.... 3 vsphere Architectural Overview... 4 SAN Backup
Virtual Machines. COMP 3361: Operating Systems I Winter 2015 http://www.cs.du.edu/3361
s COMP 3361: Operating Systems I Winter 2015 http://www.cs.du.edu/3361 1 Virtualization! Create illusion of multiple machines on the same physical hardware! Single computer hosts multiple virtual machines
GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR
GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR ANKIT KUMAR, SAVITA SHIWANI 1 M. Tech Scholar, Software Engineering, Suresh Gyan Vihar University, Rajasthan, India, Email:
CPET 581 Cloud Computing: Technologies and Enterprise IT Strategies. Virtualization of Clusters and Data Centers
CPET 581 Cloud Computing: Technologies and Enterprise IT Strategies Lecture 4 Virtualization of Clusters and Data Centers Text Book: Distributed and Cloud Computing, by K. Hwang, G C. Fox, and J.J. Dongarra,
Virtualization Technologies
12 January 2010 Virtualization Technologies Alex Landau ([email protected]) IBM Haifa Research Lab What is virtualization? Virtualization is way to run multiple operating systems and user applications on
Rackspace Cloud Databases and Container-based Virtualization
Rackspace Cloud Databases and Container-based Virtualization August 2012 J.R. Arredondo @jrarredondo Page 1 of 6 INTRODUCTION When Rackspace set out to build the Cloud Databases product, we asked many
RUNNING vtvax FOR WINDOWS
RUNNING vtvax FOR WINDOWS IN A AVT / Vere Technologies TECHNICAL NOTE AVT/Vere Technical Note: Running vtvax for Windows in a Virtual Machine Environment Document Revision 1.1 (September, 2015) 2015 Vere
Chapter 14 Virtual Machines
Operating Systems: Internals and Design Principles Chapter 14 Virtual Machines Eighth Edition By William Stallings Virtual Machines (VM) Virtualization technology enables a single PC or server to simultaneously
International Journal of Computer & Organization Trends Volume20 Number1 May 2015
Performance Analysis of Various Guest Operating Systems on Ubuntu 14.04 Prof. (Dr.) Viabhakar Pathak 1, Pramod Kumar Ram 2 1 Computer Science and Engineering, Arya College of Engineering, Jaipur, India.
A quantitative comparison between xen and kvm
Home Search Collections Journals About Contact us My IOPscience A quantitative comparison between xen and kvm This content has been downloaded from IOPscience. Please scroll down to see the full text.
VIRTUALIZATION, The next step for online services
Scientific Bulletin of the Petru Maior University of Tîrgu Mureş Vol. 10 (XXVII) no. 1, 2013 ISSN-L 1841-9267 (Print), ISSN 2285-438X (Online), ISSN 2286-3184 (CD-ROM) VIRTUALIZATION, The next step for
2972 Linux Options and Best Practices for Scaleup Virtualization
HP Technology Forum & Expo 2009 Produced in cooperation with: 2972 Linux Options and Best Practices for Scaleup Virtualization Thomas Sjolshagen Linux Product Planner June 17 th, 2009 2009 Hewlett-Packard
Measuring Interface Latencies for SAS, Fibre Channel and iscsi
Measuring Interface Latencies for SAS, Fibre Channel and iscsi Dennis Martin Demartek President Santa Clara, CA 1 Demartek Company Overview Industry analysis with on-site test lab Lab includes servers,
Virtualization. Jukka K. Nurminen 23.9.2015
Virtualization Jukka K. Nurminen 23.9.2015 Virtualization Virtualization refers to the act of creating a virtual (rather than actual) version of something, including virtual computer hardware platforms,
Networking for Caribbean Development
Networking for Caribbean Development BELIZE NOV 2 NOV 6, 2015 w w w. c a r i b n o g. o r g Virtualization: Architectural Considerations and Implementation Options Virtualization Virtualization is the
Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card
Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card Version 1.0 April 2011 DB15-000761-00 Revision History Version and Date Version 1.0, April 2011 Initial
Enterprise-Class Virtualization with Open Source Technologies
Enterprise-Class Virtualization with Open Source Technologies Alex Vasilevsky CTO & Founder Virtual Iron Software June 14, 2006 Virtualization Overview Traditional x86 Architecture Each server runs single
Scaling from Datacenter to Client
Scaling from Datacenter to Client KeunSoo Jo Sr. Manager Memory Product Planning Samsung Semiconductor Audio-Visual Sponsor Outline SSD Market Overview & Trends - Enterprise What brought us to NVMe Technology
MODULE 3 VIRTUALIZED DATA CENTER COMPUTE
MODULE 3 VIRTUALIZED DATA CENTER COMPUTE Module 3: Virtualized Data Center Compute Upon completion of this module, you should be able to: Describe compute virtualization Discuss the compute virtualization
MaxDeploy Ready. Hyper- Converged Virtualization Solution. With SanDisk Fusion iomemory products
MaxDeploy Ready Hyper- Converged Virtualization Solution With SanDisk Fusion iomemory products MaxDeploy Ready products are configured and tested for support with Maxta software- defined storage and with
Microsoft Exchange Solutions on VMware
Design and Sizing Examples: Microsoft Exchange Solutions on VMware Page 1 of 19 Contents 1. Introduction... 3 1.1. Overview... 3 1.2. Benefits of Running Exchange Server 2007 on VMware Infrastructure 3...
Uses for Virtual Machines. Virtual Machines. There are several uses for virtual machines:
Virtual Machines Uses for Virtual Machines Virtual machine technology, often just called virtualization, makes one computer behave as several computers by sharing the resources of a single computer between
Dheeraj K. Rathore 1, Dr. Vibhakar Pathak 2
International Journal of Innovative Research in Technology & Science (IJIRTS) A PERFORMANCE COMPARISONS OF DIFFERENT VIRTUAL MACHINES IN HYBRID CLOUD SYSTEM Dheeraj K. Rathore 1, Dr. Vibhakar Pathak 2
SSDs: Practical Ways to Accelerate Virtual Servers
SSDs: Practical Ways to Accelerate Virtual Servers Session B-101, Increasing Storage Performance Andy Mills CEO Enmotus Santa Clara, CA November 2012 1 Summary Market and Technology Trends Virtual Servers
The Data Placement Challenge
The Data Placement Challenge Entire Dataset Applications Active Data Lowest $/IOP Highest throughput Lowest latency 10-20% Right Place Right Cost Right Time 100% 2 2 What s Driving the AST Discussion?
VMware Server 2.0 Essentials. Virtualization Deployment and Management
VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.
Data Centers and Cloud Computing
Data Centers and Cloud Computing CS377 Guest Lecture Tian Guo 1 Data Centers and Cloud Computing Intro. to Data centers Virtualization Basics Intro. to Cloud Computing Case Study: Amazon EC2 2 Data Centers
Comparison of Hybrid Flash Storage System Performance
Test Validation Comparison of Hybrid Flash Storage System Performance Author: Russ Fellows March 23, 2015 Enabling you to make the best technology decisions 2015 Evaluator Group, Inc. All rights reserved.
White Paper. Recording Server Virtualization
White Paper Recording Server Virtualization Prepared by: Mike Sherwood, Senior Solutions Engineer Milestone Systems 23 March 2011 Table of Contents Introduction... 3 Target audience and white paper purpose...
Oracle Database Scalability in VMware ESX VMware ESX 3.5
Performance Study Oracle Database Scalability in VMware ESX VMware ESX 3.5 Database applications running on individual physical servers represent a large consolidation opportunity. However enterprises
Satish Mohan. Head Engineering. AMD Developer Conference, Bangalore
Satish Mohan Head Engineering AMD Developer Conference, Bangalore Open source software Allows developers worldwide to collaborate and benefit. Strategic elimination of vendor lock in OSS naturally creates
PrimaryIO Application Performance Acceleration Date: July 2015 Author: Tony Palmer, Senior Lab Analyst
ESG Lab Spotlight PrimaryIO Application Performance Acceleration Date: July 215 Author: Tony Palmer, Senior Lab Analyst Abstract: PrimaryIO Application Performance Acceleration (APA) is designed to provide
HP SN1000E 16 Gb Fibre Channel HBA Evaluation
HP SN1000E 16 Gb Fibre Channel HBA Evaluation Evaluation report prepared under contract with Emulex Executive Summary The computing industry is experiencing an increasing demand for storage performance
SSDs: Practical Ways to Accelerate Virtual Servers
SSDs: Practical Ways to Accelerate Virtual Servers Session B-101, Increasing Storage Performance Andy Mills CEO Enmotus Santa Clara, CA November 2012 1 Summary Market and Technology Trends Virtual Servers
Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays. Red Hat Performance Engineering
Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays Red Hat Performance Engineering Version 1.0 August 2013 1801 Varsity Drive Raleigh NC
Intel Solid- State Drive Data Center P3700 Series NVMe Hybrid Storage Performance
Intel Solid- State Drive Data Center P3700 Series NVMe Hybrid Storage Performance Hybrid Storage Performance Gains for IOPS and Bandwidth Utilizing Colfax Servers and Enmotus FuzeDrive Software NVMe Hybrid
Virtualization. Dr. Yingwu Zhu
Virtualization Dr. Yingwu Zhu What is virtualization? Virtualization allows one computer to do the job of multiple computers. Virtual environments let one computer host multiple operating systems at the
8Gb Fibre Channel Adapter of Choice in Microsoft Hyper-V Environments
8Gb Fibre Channel Adapter of Choice in Microsoft Hyper-V Environments QLogic 8Gb Adapter Outperforms Emulex QLogic Offers Best Performance and Scalability in Hyper-V Environments Key Findings The QLogic
A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing
A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing Liang-Teh Lee, Kang-Yuan Liu, Hui-Yang Huang and Chia-Ying Tseng Department of Computer Science and Engineering,
HP Z Turbo Drive PCIe SSD
Performance Evaluation of HP Z Turbo Drive PCIe SSD Powered by Samsung XP941 technology Evaluation Conducted Independently by: Hamid Taghavi Senior Technical Consultant June 2014 Sponsored by: P a g e
Understanding endurance and performance characteristics of HP solid state drives
Understanding endurance and performance characteristics of HP solid state drives Technology brief Introduction... 2 SSD endurance... 2 An introduction to endurance... 2 NAND organization... 2 SLC versus
Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1
Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System
Masters Project Proposal
Masters Project Proposal Virtual Machine Storage Performance Using SR-IOV by Michael J. Kopps Committee Members and Signatures Approved By Date Advisor: Dr. Jia Rao Committee Member: Dr. Xiabo Zhou Committee
