虚拟化数据中心的云操作系统ppt课件.ppt
《虚拟化数据中心的云操作系统ppt课件.ppt》由会员分享,可在线阅读,更多相关《虚拟化数据中心的云操作系统ppt课件.ppt(66页珍藏版)》请在三一办公上搜索。
1、1,Chapter 3: Virtual Machines and Virtualization of Clusters and datacenters虚拟机和集群与数据中心虚拟化,2,3.1 虚拟化的实现层次 虚拟化技术通过在同一个硬件主机上多路复用虚拟机的方式来共享昂贵的硬件资源, 虚拟化的基本思想是分离软硬件以产生更好的系统性能 虚拟化实现的层次 引入虚拟化后,不同用户应用程序由自身的操作系统(即客户操作系统)管理,并且那些客户操作系统可以独立于主机操作系统同时运行在同一个硬件上,这通常是通过新添加一个称为虚拟化层的软件来完成,该虚拟化层称为hypervisor或虚拟机监视器(Virtu
2、al Machine Monitor,VMM),3,图3-1 虚拟化前后的计算机系统体系结构,其中,VMM代表虚拟机监视器,4,图3-2 从硬件到应用程序的5个虚拟化抽象层次,5,Low-Level VMM Operations (1)复用,(Courtesy of Mendel Rosenblum, 2006),6,Low-Level VMM Operations (2)挂起,(Courtesy of Mendel Rosenblum, 2006),7,Low-Level VMM Operations (3)供应(恢复),(Courtesy of Mendel Rosenblum, 2006
3、),8,Low-Level VMM Operations (4)动态迁移,(Courtesy of Mendel Rosenblum, 2006),9,指令集体系结构级:代码解释和动态二进制翻译硬件抽象级:虚拟化一个计算机硬件资源操作系统级:在单一物理服务器上创建隔离的容器和操作系统实例库支持级:库接口的虚拟化应用程序级:进程级虚拟化、高级语言(High Level Language,HLL)虚拟机,10,Virtualization at ISA level:Emulating a given ISA by the ISA of the host machine. For example,
4、MIPS binary code can run on an x-86-based host machine with the help of ISA emulation. Typical systems: Bochs, Crusoe, Quemu, BIRD, DynamoAdvantage: It can run a large amount of legacy binary codes written for various processors on any given new hardware host machines; best application flexibilitySh
5、ortcoming & limitation: One source instruction may require tens or hundreds of native target instructions to perform its function, which is relatively slow. V-ISA requires adding a processor-specific software translation layer in the complier.,11,Virtualization at Hardware Abstraction level: Virtual
6、ization is performed right on top of the hardware. It generates virtual hardware environments for VMs, and manages the underlying hardware through virtualization. Typical systems: VMware, Virtual PC, Denali, XenAdvantage: has higher performance and good application isolationShortcoming & limitation:
7、 very expensive to implement (complexity),12,Virtualization at Operating System level: It is an abstraction layer between traditional OS and user placations. This virtualization creates isolated containers on a single physical server and the OS-instance to utilize the hardware and software in datace
8、nters. Typical systems: Jail / Virtual Environment / Ensims VPS / FVMAdvantage: have minimal starup/shutdown cost, low resource requirement, and high scalability; synchronize VM and host state changes.Shortcoming poor application flexibility and isolation.,13,Library Support level: It creates execut
9、ion environments for running alien programs on a platform rather than creating VM to run the entire operating system. It is done by API call interception and remapping. Typical systems: Wine, WAB, LxRun , VisualMainWinAdvantage: It has very low implementation effortShortcoming & limitation: poor app
10、lication flexibility and isolation,14,User-Application level: It virtualizes an application as a virtual machine. This layer sits as an application program on top of an operating system and exports an abstraction of a VM that can run programs written and compiled to a particular abstract machine def
11、inition. Typical systems: JVM , NET CLI , PanotAdvantage: has the best application isolationShortcoming & limitation: low performance, low application flexibility and high implementation complexity.,16,VMM的设计需求和提供商 硬件级虚拟化在真实硬件和传统操作系统之间插入一层软件,该层软件通常称为虚拟机监视器(VMM) 对VMM有三个需求。第一,VMM应该为程序提供与原始硬件机器基本一致的环境;
12、第二,运行在该环境中的程序的性能损失应较低;第三,系统资源应处于VMM的完全控制之中。 由VMM完全控制这些资源包括以下方面:(1) VMM负责为应用程序分配硬件资源;(2) 程序不能访问任何未分配给它的资源;(3) 在某些情况下,VMM可以获得对已分配资源的控制权。,Major VMM and Hypervisor Providers,18,操作系统级的虚拟化支持 操作系统级虚拟化在一个操作系统中插入一个虚拟化层来划分机器的物理资源。它使得在一个操作系统内核中可以同时运行多个隔离的虚拟机。这种虚拟机也称为VE(Virtual Execution Environment)、VPS(Virtua
13、l Private System,虚拟专用系统)或容器。 从用户的视角来看,VE就像真实服务器。VE有自己的进程、文件系统、用户账号、带有IP地址的网络接口、路由表、防火墙规则及其他个人设置。 尽管VE可为不同用户分别定制,但它们仍共享同一个操作系统内核。因此,操作系统级虚拟化也称为单操作系统镜像虚拟化。,Virtualization for Linux and Windows NT Platforms,20,21,虚拟化的中间件支持,22,图3.4 vCUDA结构的基本概念,23,32 虚拟化的结构/工具与机制hypervisor与Xen体系结构,图3-5 Xen体系结构用于控制和I/O的特
14、殊零域并用于用户应用程序的客户域,24,Xen是一个由剑桥大学开发的开源hypervisor程序。Xen属于微内核hypervisor提供了一种客户操作系统可以直接访问物理设备的机制Xen提供了一个处于硬件和操作系统之间的虚拟环境Xen系统的核心组件是hypervisor、内核和应用程序具有控制特权的客户操作系统称为Domain 0,其他客户操作系统则称为Domain UDomain 0被首先启动。Domain 0可以直接访问硬件和管理设备。因此,Domain 0的一个任务是为所有Domain U分配和映射硬件资源,25,全虚拟化的二进制翻译 根据实现技术的不同,硬件虚拟化可以分为:全虚拟化和
15、基于主机的虚拟化。 全虚拟化不需要修改主机操作系统。它依赖于二进制翻译来陷入和虚拟化一些敏感、不可虚拟化的指令的执行。客户操作系统和它们的应用由非临界和临界指令构成。 在基于主机的系统虚拟化中,主机操作系统和客户操作系统同时存在,虚拟化软件层处于两者之间。 该主机操作系统仍旧负责管理硬件。客户操作系统安装并运行在虚拟化层之上。特定的应用可运行在虚拟机中。,26,图3-6 复杂指令的间接执行,即使用VMM二进制翻译客户操作系统请求,并在同一台主机上直接执行简单指令,27,编译器支持的半虚拟化技术 半虚拟化需要修改客户操作系统。半虚拟化虚拟机在用户程序中提供了特殊的API,要求真正修改操作系统。,
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 虚拟 数据中心 操作系统 ppt 课件
链接地址:https://www.31ppt.com/p-1900962.html