SlideShare a Scribd company logo
02/05/2025 1
UNIT 2:CLOUD VIRTUALIZATION & CLUSTERS
– Implementation levels of virtualization
– Difference between traditional and Virtual Machines
– More Beowulf Clusters
– PelicanHPC
02/05/2025 2
Implementation Levels of Virtualization
Virtualization technology benefits the computer and IT industries by enabling users to share
expensive hardware resources by multiplexing VMs on the same set of hardware hosts.
Virtual workspaces:
– An abstraction of an execution environment that can be made dynamically available to authorized
clients by using well-defined protocols,
– Resource quota (e.g. CPU, memory share),
– Software configuration (e.g. O/S, provided services).
• Implement on Virtual Machines (VMs):
– Abstraction of a physical host machine,
– Hypervisor intercepts and emulates instructions
from VMs and allows management of VMs.
– VMWare, Xen, etc.
• Provide infrastructure API:
– Plug-ins to hardware/support structures
Hardware
OS
App App App
Hypervisor
OS OS
Virtualized Stack
02/05/2025 3
Virtual Machines
• VM technology allows multiple virtual machines to run on
a single physical machine.
Hardware
Virtual Machine Monitor (VMM) / Hypervisor
Guest OS
(Linux)
Guest OS
(NetBSD)
Guest OS
(Windows)
VM VM VM
App
App App
App
App
Xen
VMWare
UML
Denali
etc.
Performance: Para-virtualization (e.g. Xen) is very close to raw physical performance!
02/05/2025 4
Virtualization in General
Advantages of virtual machines:
– Run operating systems where the physical hardware is unavailable,
– Easier to create new machines, backup machines, etc.,
– Software testing using “clean” installs of operating systems and software,
– Emulate more machines than are physically available,
– Timeshare lightly loaded systems on one host,
– Debug problems (suspend and resume the problem machine),
– Easy migration of virtual machines (shutdown needed or not).
– Run legacy systems!
02/05/2025 5
What is the purpose and benefits?
• Cloud computing enables companies and applications, which are system
infrastructure dependent, to be infrastructure-less.
• By using the Cloud infrastructure on “pay as used and on demand”, all of us
can save in capital and operational investment!
• Clients can:
– Put their data on the platform instead of on their own desktop PCs and/or on their own
servers.
– They can put their applications on the cloud and use the servers within the cloud to do
processing and data manipulations etc.
– In computing, virtualization means to create a virtual version of a device or
resource, such as a server, storage device, network or even an operating
system where the framework divides the resource into one or more
execution environments.
02/05/2025 6
Difference between Traditional and Virtual machines
• A traditional computer runs with a host operating system specially tailored for its hardware
architecture
• After virtualization, different user applications managed by their own operating systems (guest
OS) can run on the same hardware, independent of the host OS.
• The Virtualization layer is the middleware between the underlying hardware and virtual machines
represented in the system, also known as virtual machine monitor (VMM) or hypervisor.
With sufficient storage,
any computer platform can
be installed in another
host computer, even if
they use processors with
different instruction sets
and run with distinct
operating systems on the
same hardware.
02/05/2025 7
Virtualization Layers
The virtualization software creates the abstraction of VMs by
interposing a virtualization layer at various levels of a
computer system.
Common virtualization layers include:
1. the instruction set architecture (ISA) level,
2. hardware level,
3. operating system level,
4. library support level, and
5. application level
02/05/2025 8
Virtualization Ranging from Hardware to Applications in Five Abstraction Levels
02/05/2025 9
1.Virtualization at Instruction Set Architecture (ISA) level:
• At the ISA level, virtualization is performed by emulating a given ISA by the ISA of the host machine.
Instruction set emulation leads to virtual ISAs created on any hardware machine. e.g, MIPS binary code
can run on an x-86-based host machine with the help of ISA emulation.
• With this approach, it is possible to run a large amount of legacy binary code written for various
processors on any given new hardware host machine.
• code interpretation – dynamic binary translation - virtual instruction set architecture (V-ISA)
• Advantage:
• It can run a large amount of legacy binary codes written for various processors on any given new
hardware host machines
• best application flexibility
• Shortcoming & 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.
02/05/2025 10
2.Virtualization at Hardware Abstraction level:
• Hardware-level virtualization is performed right on top of the bare hardware.
• On the one hand, this approach generates a virtual hardware environment for a VM.
• On the other hand, the process manages the underlying hardware through
virtualization.
• The idea is to virtualize a computer’s resources, such as its processors, memory
and I/O devices. The intention is to upgrade the hardware utilization rate by multiple
users concurrently.
Advantage:
• Has higher performance and good application isolation
Shortcoming & limitation:
• Very expensive to implement (complexity)
02/05/2025 11
3.Virtualization at Operating System (OS) level:
• OS-level virtualization creates isolated containers on a single physical server
and the OS instances to utilize the hardware and software in data centers. The
containers behave like real servers.
• OS-level virtualization is commonly used in creating virtual hosting environments
to allocate hardware resources among a large number of mutually distrusting
users.
Advantage:
• Has minimal startup/shutdown cost, low resource requirement, and high
scalability; synchronize VM and host state changes.
Shortcoming & limitation:
• All VMs at the operating system level must have the same kind of guest OS
• Poor application flexibility and isolation.
02/05/2025 12
Virtualization at OS Level
02/05/2025 13
Advantages of OS Extension for Virtualization
1. VMs at OS level has minimum startup/shutdown costs
2. OS-level VM can easily synchronize with its environment
Disadvantage of OS Extension for Virtualization
•All VMs in the same OS container must have the same or similar
guest OS, which restrict application flexibility of different VMs on the
same physical machine.
02/05/2025 14
4.Library Support level:
• Since most systems provide well-documented APIs, such an interface becomes
another candidate for virtualization.
• Virtualization with library interfaces is possible by controlling the communication
link between applications and the rest of a system through API hooks.
• The software tool WINE has implemented this approach to support Windows
applications on top of UNIX hosts.
• Another example is the vCUDA which allows applications executing within VMs
to leverage GPU hardware acceleration.
Advantage:
• It has very low implementation effort
Shortcoming & limitation:
• poor application flexibility and isolation
02/05/2025 15
5.User-Application Level
• Virtualization at the application level virtualizes an application as a VM. On a traditional OS, an
application often runs as a process.
• Therefore, application-level virtualization is also known as process-level virtualization.
• The most popular approach is to deploy high level language (HLL) VMs. In this scenario, the
virtualization layer sits as an application program on top of the operating system, and the layer
exports an abstraction of a VM that can run programs written and compiled to a particular
abstract machine definition.
• Other forms of application-level virtualization are known as application isolation, application
sandboxing, or application streaming.
Advantage:
• has the best application isolation
Shortcoming & limitation:
• low performance, low application flexibility and high implementation complexity.
02/05/2025 16
User-Application Level Virtualization
02/05/2025 17
Virtualization Structures/Tools and Mechanisms
• In general, there are three typical classes of VM architecture.
• Figure on slide 7 showed the architectures of a machine before and after virtualization.
• Before virtualization, the operating system manages the hardware.
• After virtualization, a virtualization layer is inserted between the hardware and the
operating system. In such a case, the virtualization layer is responsible for converting
portions of the real hardware into virtual hardware.
• Therefore, different operating systems such as Linux and Windows can run on the same
physical machine, simultaneously.
• Depending on the position of the virtualization layer, there are several classes of VM
architectures, namely the hypervisor architecture, para-virtualization, and host-based
virtualization.
• The hypervisor is also known as the VMM (Virtual Machine Monitor). They both perform
the same virtualization operations.
02/05/2025 18
Hypervisor
• A hypervisor is a hardware virtualization technique allowing multiple operating systems,
called guests to run on a host machine. This is also called the Virtual Machine Monitor
(VMM).
Type 1: bare metal hypervisor
• sits on the bare metal computer hardware like the CPU, memory, etc.
• All guest operating systems are a layer above the hypervisor.
• The original CP/CMS hypervisor developed by IBM was of this kind.
Type 2: hosted hypervisor
• Run over a host operating system.
• Hypervisor is the second layer over the hardware.
• Guest operating systems run a layer over the hypervisor.
• The OS is usually unaware of the virtualization
02/05/2025 19
Full Binary Translation and Host-based Virtualization
• Depending on implementation technologies, hardware virtualization VM
architectures can be classified into two categories:
– Full virtualization and
– Host-based virtualization.
• Full virtualization does not need to modify the host OS. It relies on
binary translation to trap and to virtualize the execution of certain
sensitive, non virtualizable instructions.
• In a host-based system, both a host OS and a guest OS are used. A
virtualization software layer is built between the host OS and guest OS.
• These two classes of VM architecture are introduced next.
02/05/2025 20
Binary Translation of Guest OS Requests Using a VMM
• This approach was implemented by VMware
and many other software companies.
• VMware puts the VMM at Ring 0 and the
guest OS at Ring 1. The VMM scans the
instruction stream and identified the
privileged, control- and behavior sensitive
instructions.
• When these instructions are identified, they
are trapped into the VMM, which emulates
the behavior of these instructions.
• The method used in this emulation is called
binary translation. Therefore, full
virtualization combines binary translation
and direct execution.
02/05/2025 21
Host-Based Virtualization
• An alternative VM architecture is to install a virtualization
layer on top of the host OS. This host OS is still responsible
for managing the hardware.
• This host-based architecture has some distinct advantages.
First, the user can install this VM architecture without
modifying the host OS. The virtualizing software can rely on
the host OS to provide device drivers and other low-level
services. This will simplify the VM design and ease its
deployment.
• Second, the host-based approach appeals to many host
machine configurations. Compared to the hypervisor/VMM
architecture, the performance of the host-based architecture
may also be low.
02/05/2025 22
Para-virtualization
• Para-virtualization needs to
modify the guest operating
systems.
• A para-virtualized VM
provides special APIs
requiring substantial OS
modifications in user
applications.
• Performance degradation is a
critical issue of a virtualized
system.
02/05/2025 23
Full Virtualization vs. Para-Virtualization
Full virtualization
• Does not need to modify guest OS, and critical instructions are emulated by
software through the use of binary translation.
• VMware Workstation applies full virtualization, which uses binary translation to
automatically modify x86 software on-the-fly to replace critical instructions.
Advantage: no need to modify OS.
Disadvantage: binary translation slows down the performance.
Para virtualization
• Reduces the overhead, but cost of maintaining a paravirtualized OS is high.
• The improvement depends on the workload.
• Para virtualization must modify guest OS, non-virtualizable instructions are
replaced by hyper calls that communicate directly with the hypervisor or VMM.
• Para virtualization is supported by Xen, Denali and VMware ESX.
02/05/2025 24
The XEN Architecture
• Xen is an open source
hypervisor program developed
by Cambridge University. Xen is
a micro-kernel hypervisor, which
separates the policy from the
mechanism.
• Xen does not include any device
drivers natively . It just provides
a mechanism by which a guest
OS can have direct access to
the physical devices.
• As a result, the size of the Xen
hypervisor is kept rather small.
Xen provides a virtual
environment located between
the hardware and the OS.
02/05/2025 25
CPU Virtualization
• A VM is a duplicate of an existing computer system in which a majority of the VM
instructions are executed on the host processor in native mode. Thus, unprivileged
instructions of VMs run directly on the host machine for higher efficiency. Other critical
instructions should be handled carefully for correctness and stability.
• The critical instructions are divided into three categories: privileged instructions, control–
sensitive instructions, and behavior-sensitive instructions.
• Privileged instructions execute in a privileged mode and will be trapped if executed outside
this mode.
• Control-sensitive instructions attempt to change the configuration of resources used.
Behavior-sensitive instructions have different behaviors depending on the configuration of
resources, including the load and store operations over the virtual memory.
Virtualization of CPU, Memory, and I/O Devices
02/05/2025 26
• A CPU architecture is virtualizable if it supports the ability to run the VM’s
privileged
• and unprivileged instructions in the CPU’s user mode while the VMM runs
in supervisor mode.
• When the privileged instructions including control- and behavior-sensitive
instructions of a VM are executed, they are trapped in the VMM. In this
case, the VMM acts as a unified mediator for hardware access from
different VMs to guarantee the correctness and stability of the whole
system. However, not all CPU architectures are virtualizable.
• RI SC CPU architectures can be naturally virtualized because all control
and behavior-sensitive instructions are privileged instructions.
• On the contrary, x86 CPU architectures are not primarily designed to
support virtualization.
02/05/2025 27
Memory Virtualization
• Virtual memory virtualization is similar to the virtual memory support
provided by modern operating systems. I n a traditional execution
environment, the operating system maintains mappings of virtual memory to
ma chine memory using page tables, which is a one-stage mapping from
virtual memory to machine memory.
• However, in a virtual execution environment, virtual memory virtualization
involves sharing the physical system memory in RAM and dynamically
allocating it to the physical memory of the VMs.
• That means a two-stage mapping process should be maintained by the
guest OS and the VMM, respectively: virtual memory to physical memory
and physical memory to machine memory.
02/05/2025 28
I/O Virtualization
• there are three ways to implement I/O virtualization: full device emulation,
para-virtualization, and direct I/O.
• I/O virtualization. Generally, this approach emulates well-known, real-world
devices. All the functions of a device or bus infrastructure, such as device
enumeration, identification, interrupts, and DMA, are replicated in software.
This software is located in the VMM and acts as a virtual device.
• The para-virtualization method of I/O virtualization is typically used in Xen. It
is also known as the split driver model consisting of a frontend driver and a
backend driver. It achieves beer device performance than full device
emulation, it comes with a higher CPU overhead
• Direct I/O virtualization lets the VM access devices directly. It can achieve
close-to native performance without high CPU costs.
02/05/2025 29
Diskless Beowulf Cluster - PelicanHPC
• PelicanHPC is a rapid (around 5 minutes, when you know
what you're doing) means of setting up a high performance
computing (HPC) cluster for parallel computing using MPI.
• We will see what PelicanHPC does, how to use the
released CD images to set up a HPC cluster, and some
basic examples of usage.
02/05/2025 30
02/05/2025 31
PelicanHPC Installation
• PelicanHPC is a distribution of GNU/Linux that runs as a
"live CD" (or as a virtualization appliance).
• If the ISO image file is burnt to a CD/Flash Disk, the
resulting CD/Flash Disk can be used to boot a computer.
• The computer on which PelicanHPC is booted is referred
to as the "frontend node", which is the computer that the
user interacts with.
02/05/2025 32
Runing the PelicanHPC Cluster
• Once PelicanHPC is running, a script ­ "pelican_setup" ­
may be run. This script configures the frontend node as a
netboot server.
• After this has been done, other computers can boot copies
of PelicanHPC over the network.
• These other computers are referred to as "compute
nodes".
• PelicanHPC configures the cluster made up of the
frontend node and the compute nodes so that MPI­
based
parallel computing may be done.
02/05/2025 33
PelicanHPC Advantages
• A "live CD" such as PelicanHPC does not use the hard
disk of any of the nodes, so it will not destroy or alter your
installed operating system.
• When the PelicanHPC cluster is shut down, all of the
computers are in their original state, and will boot back into
whatever operating system is installed.
02/05/2025 34
PelicanHPC Features
• The frontend node can be a real computer booted using a
CD, or a virtual machine that is booted using the CD
image file.
• With this second option, PelicanHPC can be used at the
same time as the normal work environment, which may be
any of the common operating systems.
• The compute nodes are normally real computers, but they
can also be virtual.
02/05/2025 35
PelicanHPC Features
• Supports MPI­
based parallel computing using Fortran (77,
90), C, C++, and GNU Octave (using MPITB).
• Offers the Open MPI and LAM/MPI implementations of
MPI.
• Cluster can be resized to add or remove nodes using the
"pelican_restarthpc" command.
02/05/2025 36
PelicanHPC Features
• Easily extensible to add packages. Also easily modifiable,
since the PelicanHPC CD image is created using a single
script that uses the Debian Live system for creating a live
CD image.
• For this reason, the distributed version is basic and
lightweight.
• Versions exist for 32 bit CPUs (Pentium 4, Core, Sempron)
and for 64 bit CPUs (Opteron, Turion, Core 2, etc.)
02/05/2025 37
PelicanHPC Features
• Contains example software:
– Linpack HPL benchmark and extensive examples that use
MPITB for GNU Octave.
02/05/2025 38
Limitations and Requirements
• The compute nodes must be booted over the network.
This is an option offered by all modern networking devices
supplied with motherboards, but it often must be enabled
in the BIOS setup.
• Enable it, and give it higher priority that booting from hard
disk or other sources.
• If you have a network card that won't do netboot, it is
possible to work around this using rom­
o­
matic.
02/05/2025 39
PelicanHPC Pros and Cons

LiveCD for instant cluster creation

Advantages
1. Easy to use
2. A lot of built-in software
Disadvantages
3. Not persistent
4. Difficult to add software
02/05/2025 40
Worth Reading....
• http://www.pelicanhpc.org/academic_work.html
• http://distrowatch.com/table.php?distribution=pelicanhpc
• http://linux.softpedia.com/get/System/Operating-Systems/
Linux-Distributions/PelicanHPC-38025.shtml
• http://www.linux-magazine.com/Online/News/Number-
Crunching-with-Pelican-HPC-2.0
02/05/2025 41
PelicanHPC Simulations
02/05/2025 42
References
1. Kai Hwang, Geoffery C. Fox and Jack J. Dongarra, “Distributed and Cloud
Computing: Clusters, Grids, Clouds and the Future of Internet”,
2. http://klucloudseminar.weebly.com/
3. http://cloudcomputingnet.com/cloud-computing-deployment-models/
4. http://gcauble.com/products/cloud-computing/
5. http://www.levelcloud.net/why-levelcloud/cloud-education-center/advantages-
and-disadvantages-of-cloud-computing/
6. www.cse.unr.edu/~mgunes/cpe401/cpe401sp12/lect15_cloud.ppt
7. http://slideplayer.com/slide/5862268/
8. https://msdn.microsoft.com/en-us/magazine/dn520239.aspx
9. http://www.thoughtsoncloud.com/2014/01/cloud-computing-defined-
characteristics-service-levels/

More Related Content

PPTX
VIRTUALIZATION AND ITS TYPES IMPLEMENTATION.pptx
PDF
VIRTUALIZATION-IMPLEMENTATION.pdf-LEVELS
PPTX
CC-5 - MOD.pptx Cloud Vertulization nand
PPTX
2-Implementation Level Of Virtualization-06-01-2025.pptx
PPTX
cloud computing and cloud security1.pptx
PPTX
virtualization.pptx
PPTX
eve of Virtualization and virtualization support .pptx
PPT
Unit II.ppt
VIRTUALIZATION AND ITS TYPES IMPLEMENTATION.pptx
VIRTUALIZATION-IMPLEMENTATION.pdf-LEVELS
CC-5 - MOD.pptx Cloud Vertulization nand
2-Implementation Level Of Virtualization-06-01-2025.pptx
cloud computing and cloud security1.pptx
virtualization.pptx
eve of Virtualization and virtualization support .pptx
Unit II.ppt

Similar to VIRTUALIZATION-IMPLEMENTATION.pptx-TYPES (20)

PDF
Cloud Computing Virtualization and containers
PDF
IaaS - Virtualization_Cambridge.pdf
PPTX
Chapter 3.4.pptx
PPTX
Cloud Computing Distributed-On-Demand Self-Service
PPTX
Unit-I_part-II_Virtualization.pptx
PDF
CloudComputing_UNIT 2.pdf
PDF
CloudComputing_UNIT 2.pdf
PPTX
virtual-machine-ppt 18030 cloud computing.pptx
PPTX
KIIT_Cloud_scaling and Virtualization.pptx
PPTX
Operating system Virtualization_NEW.pptx
PPTX
Virtualizaiton-3.pptx
PPTX
6-Virtualizaiton-6.pptx
PPTX
Virtualization using VMWare Workstation
PPTX
CSC_406_5_Virtualization - Case Study, it's base on virtualization
PPTX
CC CLOUD RESOURCE VIRTUALIZATION PPT TO REFER
PDF
Virtualization and cloud Computing
PPTX
Virtualization
PPTX
cloud basics.
PPTX
Virtual machine
PDF
virtual-machine-150316004018-conversion-gate01.pdf
Cloud Computing Virtualization and containers
IaaS - Virtualization_Cambridge.pdf
Chapter 3.4.pptx
Cloud Computing Distributed-On-Demand Self-Service
Unit-I_part-II_Virtualization.pptx
CloudComputing_UNIT 2.pdf
CloudComputing_UNIT 2.pdf
virtual-machine-ppt 18030 cloud computing.pptx
KIIT_Cloud_scaling and Virtualization.pptx
Operating system Virtualization_NEW.pptx
Virtualizaiton-3.pptx
6-Virtualizaiton-6.pptx
Virtualization using VMWare Workstation
CSC_406_5_Virtualization - Case Study, it's base on virtualization
CC CLOUD RESOURCE VIRTUALIZATION PPT TO REFER
Virtualization and cloud Computing
Virtualization
cloud basics.
Virtual machine
virtual-machine-150316004018-conversion-gate01.pdf
Ad

More from soundharya59 (7)

PDF
intercloud-global.pdf-INTERCHANGE OF GLOBAL RESOURCES
PPTX
BASICS&TYPES-VIRTUALIZATION.pptx-HYPERVIOSR
DOCX
VIRTUALIZATION FOR DATA CNTER AUTOMATION.docx
PDF
BASICS&TYPES-VIRTUALIZATION.pdf-CONCEPTS
PPTX
Cloud-Computing CATEGORIES -Architecture.pptx
PPT
APP engine regarding Google app engine presentation
PPTX
amazon web servics in the cloud aws and its categories compute cloud and stor...
intercloud-global.pdf-INTERCHANGE OF GLOBAL RESOURCES
BASICS&TYPES-VIRTUALIZATION.pptx-HYPERVIOSR
VIRTUALIZATION FOR DATA CNTER AUTOMATION.docx
BASICS&TYPES-VIRTUALIZATION.pdf-CONCEPTS
Cloud-Computing CATEGORIES -Architecture.pptx
APP engine regarding Google app engine presentation
amazon web servics in the cloud aws and its categories compute cloud and stor...
Ad

Recently uploaded (20)

PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
Lesson 3_Tessellation.pptx finite Mathematics
PPTX
Sustainable Sites - Green Building Construction
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
Well-logging-methods_new................
PPTX
Construction Project Organization Group 2.pptx
PDF
composite construction of structures.pdf
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
Geodesy 1.pptx...............................................
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
PPT on Performance Review to get promotions
PDF
Digital Logic Computer Design lecture notes
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Strings in CPP - Strings in C++ are sequences of characters used to store and...
UNIT 4 Total Quality Management .pptx
UNIT-1 - COAL BASED THERMAL POWER PLANTS
Embodied AI: Ushering in the Next Era of Intelligent Systems
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Lesson 3_Tessellation.pptx finite Mathematics
Sustainable Sites - Green Building Construction
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Well-logging-methods_new................
Construction Project Organization Group 2.pptx
composite construction of structures.pdf
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
Geodesy 1.pptx...............................................
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
bas. eng. economics group 4 presentation 1.pptx
PPT on Performance Review to get promotions
Digital Logic Computer Design lecture notes

VIRTUALIZATION-IMPLEMENTATION.pptx-TYPES

  • 1. 02/05/2025 1 UNIT 2:CLOUD VIRTUALIZATION & CLUSTERS – Implementation levels of virtualization – Difference between traditional and Virtual Machines – More Beowulf Clusters – PelicanHPC
  • 2. 02/05/2025 2 Implementation Levels of Virtualization Virtualization technology benefits the computer and IT industries by enabling users to share expensive hardware resources by multiplexing VMs on the same set of hardware hosts. Virtual workspaces: – An abstraction of an execution environment that can be made dynamically available to authorized clients by using well-defined protocols, – Resource quota (e.g. CPU, memory share), – Software configuration (e.g. O/S, provided services). • Implement on Virtual Machines (VMs): – Abstraction of a physical host machine, – Hypervisor intercepts and emulates instructions from VMs and allows management of VMs. – VMWare, Xen, etc. • Provide infrastructure API: – Plug-ins to hardware/support structures Hardware OS App App App Hypervisor OS OS Virtualized Stack
  • 3. 02/05/2025 3 Virtual Machines • VM technology allows multiple virtual machines to run on a single physical machine. Hardware Virtual Machine Monitor (VMM) / Hypervisor Guest OS (Linux) Guest OS (NetBSD) Guest OS (Windows) VM VM VM App App App App App Xen VMWare UML Denali etc. Performance: Para-virtualization (e.g. Xen) is very close to raw physical performance!
  • 4. 02/05/2025 4 Virtualization in General Advantages of virtual machines: – Run operating systems where the physical hardware is unavailable, – Easier to create new machines, backup machines, etc., – Software testing using “clean” installs of operating systems and software, – Emulate more machines than are physically available, – Timeshare lightly loaded systems on one host, – Debug problems (suspend and resume the problem machine), – Easy migration of virtual machines (shutdown needed or not). – Run legacy systems!
  • 5. 02/05/2025 5 What is the purpose and benefits? • Cloud computing enables companies and applications, which are system infrastructure dependent, to be infrastructure-less. • By using the Cloud infrastructure on “pay as used and on demand”, all of us can save in capital and operational investment! • Clients can: – Put their data on the platform instead of on their own desktop PCs and/or on their own servers. – They can put their applications on the cloud and use the servers within the cloud to do processing and data manipulations etc. – In computing, virtualization means to create a virtual version of a device or resource, such as a server, storage device, network or even an operating system where the framework divides the resource into one or more execution environments.
  • 6. 02/05/2025 6 Difference between Traditional and Virtual machines • A traditional computer runs with a host operating system specially tailored for its hardware architecture • After virtualization, different user applications managed by their own operating systems (guest OS) can run on the same hardware, independent of the host OS. • The Virtualization layer is the middleware between the underlying hardware and virtual machines represented in the system, also known as virtual machine monitor (VMM) or hypervisor. With sufficient storage, any computer platform can be installed in another host computer, even if they use processors with different instruction sets and run with distinct operating systems on the same hardware.
  • 7. 02/05/2025 7 Virtualization Layers The virtualization software creates the abstraction of VMs by interposing a virtualization layer at various levels of a computer system. Common virtualization layers include: 1. the instruction set architecture (ISA) level, 2. hardware level, 3. operating system level, 4. library support level, and 5. application level
  • 8. 02/05/2025 8 Virtualization Ranging from Hardware to Applications in Five Abstraction Levels
  • 9. 02/05/2025 9 1.Virtualization at Instruction Set Architecture (ISA) level: • At the ISA level, virtualization is performed by emulating a given ISA by the ISA of the host machine. Instruction set emulation leads to virtual ISAs created on any hardware machine. e.g, MIPS binary code can run on an x-86-based host machine with the help of ISA emulation. • With this approach, it is possible to run a large amount of legacy binary code written for various processors on any given new hardware host machine. • code interpretation – dynamic binary translation - virtual instruction set architecture (V-ISA) • Advantage: • It can run a large amount of legacy binary codes written for various processors on any given new hardware host machines • best application flexibility • Shortcoming & 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.
  • 10. 02/05/2025 10 2.Virtualization at Hardware Abstraction level: • Hardware-level virtualization is performed right on top of the bare hardware. • On the one hand, this approach generates a virtual hardware environment for a VM. • On the other hand, the process manages the underlying hardware through virtualization. • The idea is to virtualize a computer’s resources, such as its processors, memory and I/O devices. The intention is to upgrade the hardware utilization rate by multiple users concurrently. Advantage: • Has higher performance and good application isolation Shortcoming & limitation: • Very expensive to implement (complexity)
  • 11. 02/05/2025 11 3.Virtualization at Operating System (OS) level: • OS-level virtualization creates isolated containers on a single physical server and the OS instances to utilize the hardware and software in data centers. The containers behave like real servers. • OS-level virtualization is commonly used in creating virtual hosting environments to allocate hardware resources among a large number of mutually distrusting users. Advantage: • Has minimal startup/shutdown cost, low resource requirement, and high scalability; synchronize VM and host state changes. Shortcoming & limitation: • All VMs at the operating system level must have the same kind of guest OS • Poor application flexibility and isolation.
  • 13. 02/05/2025 13 Advantages of OS Extension for Virtualization 1. VMs at OS level has minimum startup/shutdown costs 2. OS-level VM can easily synchronize with its environment Disadvantage of OS Extension for Virtualization •All VMs in the same OS container must have the same or similar guest OS, which restrict application flexibility of different VMs on the same physical machine.
  • 14. 02/05/2025 14 4.Library Support level: • Since most systems provide well-documented APIs, such an interface becomes another candidate for virtualization. • Virtualization with library interfaces is possible by controlling the communication link between applications and the rest of a system through API hooks. • The software tool WINE has implemented this approach to support Windows applications on top of UNIX hosts. • Another example is the vCUDA which allows applications executing within VMs to leverage GPU hardware acceleration. Advantage: • It has very low implementation effort Shortcoming & limitation: • poor application flexibility and isolation
  • 15. 02/05/2025 15 5.User-Application Level • Virtualization at the application level virtualizes an application as a VM. On a traditional OS, an application often runs as a process. • Therefore, application-level virtualization is also known as process-level virtualization. • The most popular approach is to deploy high level language (HLL) VMs. In this scenario, the virtualization layer sits as an application program on top of the operating system, and the layer exports an abstraction of a VM that can run programs written and compiled to a particular abstract machine definition. • Other forms of application-level virtualization are known as application isolation, application sandboxing, or application streaming. Advantage: • has the best application isolation Shortcoming & limitation: • low performance, low application flexibility and high implementation complexity.
  • 17. 02/05/2025 17 Virtualization Structures/Tools and Mechanisms • In general, there are three typical classes of VM architecture. • Figure on slide 7 showed the architectures of a machine before and after virtualization. • Before virtualization, the operating system manages the hardware. • After virtualization, a virtualization layer is inserted between the hardware and the operating system. In such a case, the virtualization layer is responsible for converting portions of the real hardware into virtual hardware. • Therefore, different operating systems such as Linux and Windows can run on the same physical machine, simultaneously. • Depending on the position of the virtualization layer, there are several classes of VM architectures, namely the hypervisor architecture, para-virtualization, and host-based virtualization. • The hypervisor is also known as the VMM (Virtual Machine Monitor). They both perform the same virtualization operations.
  • 18. 02/05/2025 18 Hypervisor • A hypervisor is a hardware virtualization technique allowing multiple operating systems, called guests to run on a host machine. This is also called the Virtual Machine Monitor (VMM). Type 1: bare metal hypervisor • sits on the bare metal computer hardware like the CPU, memory, etc. • All guest operating systems are a layer above the hypervisor. • The original CP/CMS hypervisor developed by IBM was of this kind. Type 2: hosted hypervisor • Run over a host operating system. • Hypervisor is the second layer over the hardware. • Guest operating systems run a layer over the hypervisor. • The OS is usually unaware of the virtualization
  • 19. 02/05/2025 19 Full Binary Translation and Host-based Virtualization • Depending on implementation technologies, hardware virtualization VM architectures can be classified into two categories: – Full virtualization and – Host-based virtualization. • Full virtualization does not need to modify the host OS. It relies on binary translation to trap and to virtualize the execution of certain sensitive, non virtualizable instructions. • In a host-based system, both a host OS and a guest OS are used. A virtualization software layer is built between the host OS and guest OS. • These two classes of VM architecture are introduced next.
  • 20. 02/05/2025 20 Binary Translation of Guest OS Requests Using a VMM • This approach was implemented by VMware and many other software companies. • VMware puts the VMM at Ring 0 and the guest OS at Ring 1. The VMM scans the instruction stream and identified the privileged, control- and behavior sensitive instructions. • When these instructions are identified, they are trapped into the VMM, which emulates the behavior of these instructions. • The method used in this emulation is called binary translation. Therefore, full virtualization combines binary translation and direct execution.
  • 21. 02/05/2025 21 Host-Based Virtualization • An alternative VM architecture is to install a virtualization layer on top of the host OS. This host OS is still responsible for managing the hardware. • This host-based architecture has some distinct advantages. First, the user can install this VM architecture without modifying the host OS. The virtualizing software can rely on the host OS to provide device drivers and other low-level services. This will simplify the VM design and ease its deployment. • Second, the host-based approach appeals to many host machine configurations. Compared to the hypervisor/VMM architecture, the performance of the host-based architecture may also be low.
  • 22. 02/05/2025 22 Para-virtualization • Para-virtualization needs to modify the guest operating systems. • A para-virtualized VM provides special APIs requiring substantial OS modifications in user applications. • Performance degradation is a critical issue of a virtualized system.
  • 23. 02/05/2025 23 Full Virtualization vs. Para-Virtualization Full virtualization • Does not need to modify guest OS, and critical instructions are emulated by software through the use of binary translation. • VMware Workstation applies full virtualization, which uses binary translation to automatically modify x86 software on-the-fly to replace critical instructions. Advantage: no need to modify OS. Disadvantage: binary translation slows down the performance. Para virtualization • Reduces the overhead, but cost of maintaining a paravirtualized OS is high. • The improvement depends on the workload. • Para virtualization must modify guest OS, non-virtualizable instructions are replaced by hyper calls that communicate directly with the hypervisor or VMM. • Para virtualization is supported by Xen, Denali and VMware ESX.
  • 24. 02/05/2025 24 The XEN Architecture • Xen is an open source hypervisor program developed by Cambridge University. Xen is a micro-kernel hypervisor, which separates the policy from the mechanism. • Xen does not include any device drivers natively . It just provides a mechanism by which a guest OS can have direct access to the physical devices. • As a result, the size of the Xen hypervisor is kept rather small. Xen provides a virtual environment located between the hardware and the OS.
  • 25. 02/05/2025 25 CPU Virtualization • A VM is a duplicate of an existing computer system in which a majority of the VM instructions are executed on the host processor in native mode. Thus, unprivileged instructions of VMs run directly on the host machine for higher efficiency. Other critical instructions should be handled carefully for correctness and stability. • The critical instructions are divided into three categories: privileged instructions, control– sensitive instructions, and behavior-sensitive instructions. • Privileged instructions execute in a privileged mode and will be trapped if executed outside this mode. • Control-sensitive instructions attempt to change the configuration of resources used. Behavior-sensitive instructions have different behaviors depending on the configuration of resources, including the load and store operations over the virtual memory. Virtualization of CPU, Memory, and I/O Devices
  • 26. 02/05/2025 26 • A CPU architecture is virtualizable if it supports the ability to run the VM’s privileged • and unprivileged instructions in the CPU’s user mode while the VMM runs in supervisor mode. • When the privileged instructions including control- and behavior-sensitive instructions of a VM are executed, they are trapped in the VMM. In this case, the VMM acts as a unified mediator for hardware access from different VMs to guarantee the correctness and stability of the whole system. However, not all CPU architectures are virtualizable. • RI SC CPU architectures can be naturally virtualized because all control and behavior-sensitive instructions are privileged instructions. • On the contrary, x86 CPU architectures are not primarily designed to support virtualization.
  • 27. 02/05/2025 27 Memory Virtualization • Virtual memory virtualization is similar to the virtual memory support provided by modern operating systems. I n a traditional execution environment, the operating system maintains mappings of virtual memory to ma chine memory using page tables, which is a one-stage mapping from virtual memory to machine memory. • However, in a virtual execution environment, virtual memory virtualization involves sharing the physical system memory in RAM and dynamically allocating it to the physical memory of the VMs. • That means a two-stage mapping process should be maintained by the guest OS and the VMM, respectively: virtual memory to physical memory and physical memory to machine memory.
  • 28. 02/05/2025 28 I/O Virtualization • there are three ways to implement I/O virtualization: full device emulation, para-virtualization, and direct I/O. • I/O virtualization. Generally, this approach emulates well-known, real-world devices. All the functions of a device or bus infrastructure, such as device enumeration, identification, interrupts, and DMA, are replicated in software. This software is located in the VMM and acts as a virtual device. • The para-virtualization method of I/O virtualization is typically used in Xen. It is also known as the split driver model consisting of a frontend driver and a backend driver. It achieves beer device performance than full device emulation, it comes with a higher CPU overhead • Direct I/O virtualization lets the VM access devices directly. It can achieve close-to native performance without high CPU costs.
  • 29. 02/05/2025 29 Diskless Beowulf Cluster - PelicanHPC • PelicanHPC is a rapid (around 5 minutes, when you know what you're doing) means of setting up a high performance computing (HPC) cluster for parallel computing using MPI. • We will see what PelicanHPC does, how to use the released CD images to set up a HPC cluster, and some basic examples of usage.
  • 31. 02/05/2025 31 PelicanHPC Installation • PelicanHPC is a distribution of GNU/Linux that runs as a "live CD" (or as a virtualization appliance). • If the ISO image file is burnt to a CD/Flash Disk, the resulting CD/Flash Disk can be used to boot a computer. • The computer on which PelicanHPC is booted is referred to as the "frontend node", which is the computer that the user interacts with.
  • 32. 02/05/2025 32 Runing the PelicanHPC Cluster • Once PelicanHPC is running, a script ­ "pelican_setup" ­ may be run. This script configures the frontend node as a netboot server. • After this has been done, other computers can boot copies of PelicanHPC over the network. • These other computers are referred to as "compute nodes". • PelicanHPC configures the cluster made up of the frontend node and the compute nodes so that MPI­ based parallel computing may be done.
  • 33. 02/05/2025 33 PelicanHPC Advantages • A "live CD" such as PelicanHPC does not use the hard disk of any of the nodes, so it will not destroy or alter your installed operating system. • When the PelicanHPC cluster is shut down, all of the computers are in their original state, and will boot back into whatever operating system is installed.
  • 34. 02/05/2025 34 PelicanHPC Features • The frontend node can be a real computer booted using a CD, or a virtual machine that is booted using the CD image file. • With this second option, PelicanHPC can be used at the same time as the normal work environment, which may be any of the common operating systems. • The compute nodes are normally real computers, but they can also be virtual.
  • 35. 02/05/2025 35 PelicanHPC Features • Supports MPI­ based parallel computing using Fortran (77, 90), C, C++, and GNU Octave (using MPITB). • Offers the Open MPI and LAM/MPI implementations of MPI. • Cluster can be resized to add or remove nodes using the "pelican_restarthpc" command.
  • 36. 02/05/2025 36 PelicanHPC Features • Easily extensible to add packages. Also easily modifiable, since the PelicanHPC CD image is created using a single script that uses the Debian Live system for creating a live CD image. • For this reason, the distributed version is basic and lightweight. • Versions exist for 32 bit CPUs (Pentium 4, Core, Sempron) and for 64 bit CPUs (Opteron, Turion, Core 2, etc.)
  • 37. 02/05/2025 37 PelicanHPC Features • Contains example software: – Linpack HPL benchmark and extensive examples that use MPITB for GNU Octave.
  • 38. 02/05/2025 38 Limitations and Requirements • The compute nodes must be booted over the network. This is an option offered by all modern networking devices supplied with motherboards, but it often must be enabled in the BIOS setup. • Enable it, and give it higher priority that booting from hard disk or other sources. • If you have a network card that won't do netboot, it is possible to work around this using rom­ o­ matic.
  • 39. 02/05/2025 39 PelicanHPC Pros and Cons  LiveCD for instant cluster creation  Advantages 1. Easy to use 2. A lot of built-in software Disadvantages 3. Not persistent 4. Difficult to add software
  • 40. 02/05/2025 40 Worth Reading.... • http://www.pelicanhpc.org/academic_work.html • http://distrowatch.com/table.php?distribution=pelicanhpc • http://linux.softpedia.com/get/System/Operating-Systems/ Linux-Distributions/PelicanHPC-38025.shtml • http://www.linux-magazine.com/Online/News/Number- Crunching-with-Pelican-HPC-2.0
  • 42. 02/05/2025 42 References 1. Kai Hwang, Geoffery C. Fox and Jack J. Dongarra, “Distributed and Cloud Computing: Clusters, Grids, Clouds and the Future of Internet”, 2. http://klucloudseminar.weebly.com/ 3. http://cloudcomputingnet.com/cloud-computing-deployment-models/ 4. http://gcauble.com/products/cloud-computing/ 5. http://www.levelcloud.net/why-levelcloud/cloud-education-center/advantages- and-disadvantages-of-cloud-computing/ 6. www.cse.unr.edu/~mgunes/cpe401/cpe401sp12/lect15_cloud.ppt 7. http://slideplayer.com/slide/5862268/ 8. https://msdn.microsoft.com/en-us/magazine/dn520239.aspx 9. http://www.thoughtsoncloud.com/2014/01/cloud-computing-defined- characteristics-service-levels/

Editor's Notes

  • #1: https://gridaccess.wordpress.com/about/
  • #8: - JVM: A Java virtual machine is an abstract computing machine that enables a computer to run a Java program. There are three notions of the JVM: specification, implementation, and instance. - .NET CLR: The Common Language Runtime, the virtual machine component of Microsoft's .NET framework, manages the execution of .NET programs. - WINE: Wine (recursive backronym for Wine Is Not an Emulator) is a free and open-source compatibility ..... product that uses some Wine code for its DirectX handling. VirtualBox, a virtual machine that uses some Wine code for its Direct3D handling. - WABI: Sun used Windows Application Binary Interface to make Solaris more appealing to those needing Windows applications. The WABI software sits between an application and the operating system, intercepts the applications Windows calls, and translates them to "equivalent" Unix calls. On x86, the guest instructions were run directly on the processor, while they were emulated and/or binary translated on SPARC. WABI can also use an optional DOS emulator to run DOS applications. - Lxrun is software for executing Linux a.out and ELF binaries (x86 only) on x86 Unix systems such as SCO OpenServer, SCO UnixWare, and later, Solaris. This is achieved by "remapping" Linux system calls on the fly. You need the Linux shared libraries that the application requires, as well as the Linux dynamic loader. Lxrun is thus a system call emulator. There are various caveats as to what kind of applications will not run, etc. - MainWin: Microsoft had versions of Internet Explorer and Outlook Express for Solaris (SPARC). This was achieved not by porting them to Solaris, but by using API emulation. Mainsoft, the software company behind that effort, now has a product called Visual MainWin that allows for applications developed on Windows using Visual Studio to be run on Solaris, Linux, HP-UX, and AIX. It recompiles the applications from source on the deployment platform, using the latter's compilers. - vCuda: vCUDA is a general-purpose graphics processing unit (GPGPU) computing solution for virtual machines (VMs). - Jail: The FreeBSD jail mechanism is an implementation of operating system-level virtualization that allows system administrators to partition a FreeBSD-based computer system into several independent mini-systems called jails. - A Virtual Environment, put simply, is an isolated working copy of Python which allows you to work on a specific project without worry of affecting other projects It enables multiple side-by-side installations of Python, one for each project. - Ensim VPS solution virtualizes a server's native OS so it can be partitioned into isolated computing environments which operate independently of each other, just like a dedicated server. - Featherweight Virtual Machine (FVM) is an OS-level virtual machine for Windows XP and Windows. - VMware, Inc. is a subsidiary of Dell Technologies that provides cloud computing and platform virtualization. - Windows Virtual PC is a virtualization program for Microsoft Windows. In July 2006 Microsoft released the Windows version as a free product. - The Denali project seeks to enable an array of new networking and distributed middleware applications by designing and implementing lightweight protection domains, focusing in particular on the use of lightweight virtual machines and monitors. A virtual machine monitor (VMM) is a thin virtualization layer between hardware and ``guest'' operating systems, enabling hosts to safely execute untrusted applications and guest OS's inside a VM. - Xen Project is a hypervisor using a microkernel design, providing services that allow multiple computer operating systems to execute on the same computer hardware concurrently. It was developed by the University of Cambridge and is now being developed by the Linux Foundation with support from Intel. - The L4 Runtime Environment (L4Re) provides a basic set of services and abstractions, which are useful to implement and run user-level applications on top of the Fiasco.OC microkernel. - Plex86 is a very lightweight Virtual Machine (VM) for running Linux/x86. - User-Mode Linux is a safe, secure way of running Linux versions and Linux processes. Run buggy software, experiment with new Linux kernels or distributions, and poke around in the internals of Linux, all without risking your main Linux setup. - Bochs is a portable x86 PC emulation software package that emulates enough of the x86 CPU, related AT hardware, and BIOS to run Windows, Linux, *BSD, Minix, and other OS's, all on your workstation. - The Crusoe is a family of x86-compatible microprocessors developed by Transmeta and introduced in 2000. Crusoe was notable for its method of achieving x86 compatibility. Instead of the instruction set architecture being implemented in hardware, or translated by specialized hardware, the Crusoe runs a software abstraction layer, or a virtual machine, known as the Code Morphing Software (CMS). The CMS translates machine code instructions received from programs into native instructions for the microprocessor. In this way, the Crusoe can emulate other instruction set architectures (ISAs). - QEMU is a hosted virtual machine monitor: it emulates CPUs through dynamic binary translation and provides a set of device models, enabling it to run a variety of unmodified guest operating systems. It also can be used with KVM to run virtual machines at near-native speed (requiring hardware virtualization extensions on x86 machines). QEMU can also do CPU emulation for user-level processes, allowing applications compiled for one architecture to run on another. - Dynamo is an experimental web framework that runs on Elixir. It leverages the power of the Erlang VM to build highly performant and concurrent web applications. Dynamo's goals are performance, robustness and simplicity. http://www.kernelthread.com/publications/virtualization/
  • #18: https://en.wikipedia.org/wiki/History_of_CP/CMS
  • #35: Octave Linux users in a cluster with several PCs can use MPITB in order to call MPI library routines from within the Octave environment. https://github.com/ssrb/mpitb