Enabling Technologies for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of.

Slides:



Advertisements
Similar presentations
Virtualization Dr. Michael L. Collard
Advertisements

Virtual Machine Technology Dr. Gregor von Laszewski Dr. Lizhe Wang.
Virtualisation From the Bottom Up From storage to application.
Virtualization and Cloud Computing. Definition Virtualization is the ability to run multiple operating systems on a single physical system and share the.
© 2010 VMware Inc. All rights reserved Confidential Performance Tuning for Windows Guest OS IT Pro Camp Presented by: Matthew Mitchell.
Virtual Machine Security Design of Secure Operating Systems Summer 2012 Presented By: Musaad Alzahrani.
Introduction to Virtualization
Copyright 2009 FUJITSU TECHNOLOGY SOLUTIONS PRIMERGY Servers and Windows Server® 2008 R2 Benefit from an efficient, high performance and flexible platform.
VMware Infrastructure Alex Dementsov Tao Yang Clarkson University Feb 28, 2007.
A. Frank - P. Weisberg Operating Systems Structure of Operating Systems.
Virtual Machines. Virtualization Virtualization deals with “extending or replacing an existing interface so as to mimic the behavior of another system”
Virtualization for Cloud Computing
Virtual Network Servers. What is a Server? 1. A software application that provides a specific one or more services to other computers  Example: Apache.
Virtualization 101.
© 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1 Third Edition Chapter 3 Desktop Virtualization McGraw-Hill.
Tanenbaum 8.3 See references
Yury Kissin Infrastructure Consultant Storage improvements Dynamic Memory Hyper-V Replica VM Mobility New and Improved Networking Capabilities.
CS 149: Operating Systems April 21 Class Meeting
INTRODUCTION TO CLOUD COMPUTING CS 595 LECTURE 7 2/23/2015.
SAIGONTECH COPPERATIVE EDUCATION NETWORKING Spring 2010 Seminar #1 VIRTUALIZATION EVERYWHERE.
SAIGONTECH COPPERATIVE EDUCATION NETWORKING Spring 2009 Seminar #1 VIRTUALIZATION EVERYWHERE.
Virtualization. Virtualization  In computing, virtualization is a broad term that refers to the abstraction of computer resources  It is "a technique.
+ CS 325: CS Hardware and Software Organization and Architecture Cloud Architectures.
Appendix B Planning a Virtualization Strategy for Exchange Server 2010.
Types of Computers Mainframe/Server Two Dual-Core Intel ® Xeon ® Processors 5140 Multi user access Large amount of RAM ( 48GB) and Backing Storage Desktop.
Virtualization Paul Krzyzanowski Distributed Systems Except as otherwise noted, the content of this presentation is licensed.
Virtual Machine and its Role in Distributed Systems.
A study of introduction of the virtualization technology into operator consoles T.Ohata, M.Ishii / SPring-8 ICALEPCS 2005, October 10-14, 2005 Geneva,
INTRODUCTION TO VIRTUALIZATION KRISTEN WILLIAMS MOSES IKE.
History of Microprocessor MPIntroductionData BusAddress Bus
 Virtual machine systems: simulators for multiple copies of a machine on itself.  Virtual machine (VM): the simulated machine.  Virtual machine monitor.
VMware vSphere Configuration and Management v6
Queensland University of Technology CRICOS No J VMware as implemented by the ITS department, QUT Scott Brewster 7 December 2006.
Introduction to virtualization
A. Frank - P. Weisberg Operating Systems Structure of Operating Systems.
 The End to the Means › (According to IBM ) › 03.ibm.com/innovation/us/thesmartercity/in dex_flash.html?cmp=blank&cm=v&csr=chap ter_edu&cr=youtube&ct=usbrv111&cn=agus.
Full and Para Virtualization
© Copyright 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP Restricted Module 7.
Lecture 26 Virtual Machine Monitors. Virtual Machines Goal: run an guest OS over an host OS Who has done this? Why might it be useful? Examples: Vmware,
Virtualization Supplemental Material beyond the textbook.
20409A 7: Installing and Configuring System Center 2012 R2 Virtual Machine Manager Module 7 Installing and Configuring System Center 2012 R2 Virtual.
Enabling Technologies for Distributed Computing Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS School of Computing,
CSE 451: Operating Systems Winter 2015 Module 25 Virtual Machine Monitors Mark Zbikowski Allen Center 476 © 2013 Gribble, Lazowska,
Cloud Computing – UNIT - II. VIRTUALIZATION Virtualization Hiding the reality The mantra of smart computing is to intelligently hide the reality Binary->
Unit 2 VIRTUALISATION. Unit 2 - Syllabus Basics of Virtualization Types of Virtualization Implementation Levels of Virtualization Virtualization Structures.
Hardware Architecture
Open Source Virtualization Andrey Meganov RHCA, RHCX Consultant / VDEL
Virtualization Neependra Khare
Enabling Technologies for Distributed and Cloud Computing
Virtualization for Cloud Computing
Guide to Operating Systems, 5th Edition
Virtualization.
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CLOUD COMPUTING
Virtualization Dr. Michael L. Collard
Virtualization OVERVIEW
Virtualization overview
Virtual Servers.
OS Virtualization.
Managing Clouds with VMM
20409A 7: Installing and Configuring System Center 2012 R2 Virtual Machine Manager Module 7 Installing and Configuring System Center 2012 R2 Virtual.
Virtualization 101.
Virtualization Techniques
Outline Virtualization Cloud Computing Microsoft Azure Platform
Guide to Operating Systems, 5th Edition
Types of Computers Mainframe/Server
Windows Virtual PC / Hyper-V
Virtualization Dr. S. R. Ahmed.
CSE 451: Operating Systems Autumn Module 24 Virtual Machine Monitors
Presentation transcript:

Enabling Technologies for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D FIS Distinguished Professor of Computer Science School of Computing, UNF

Technologies for Network-Based Systems Multi-core CPUs and Multithreading Technologies CPU’s today assume a multi-core architecture with dual, quad, six, or more processing cores. The clock rate increased from 10 MHz for Intel 286 to 4 GHz for Pentium 4 in 30 years. However, the clock rate reached its limit on CMOS chips due to power limitations. Clock speeds cannot continue to increase due to excessive heat generation and current leakage. Multi-core CPUs can handle multiple instruction threads.

Technologies for Network-Based Systems Multi-core CPUs and Multithreading Technologies LI cache is private to each core (32 – 64 KB), L2 cache (1 -2 MB) is shared between cores and L3 cache (4 - 8 MB) or DRAM is off the chip. Examples of multi-core CPUs include Intel i7, Xeon, AMD Opteron. Each core can also be multithreaded. E.g. the Niagara II has 8 cores with each core handling 8 threads for a total of 64 threads maximum.

Technologies for Network-Based Systems Hyper-threading (HT) Technology A feature of certain Intel chips (such as Xeon, i7) that makes one physical core appear as two logical processors. On an operating system level, a single-core CPU with Hyper- Threading technology will be reported as two logical processors, dual-core CPU with HT is reported as four logical processors, and so on. HT adds a second set of general, control and special registers. The second set of registers allows the CPU to keep the state of both cores, and effortlessly switch between them by switching the register set.

Technologies for Network-Based Systems Hyper-threading (HT) Technology (contd.) HT technology results in better utilization of core resources and improved performance. Using this technology, many core resources can be shared between threads without negative impact, although sharing of some resources, like level 1 cache, may lower process performance under certain conditions. Overall, for large number of multi-threaded applications the Hyper- Threading can provide noticeable performance boost, from 15% - 30%.

Technologies for Network-Based Systems Memory, Storage and WAN DRAM chip capacity increased from 16 KB in 1976 to 64 GB in 2011 for a 4x increase in capacity every 3 years. Memory access time did not improve as much. For hard drives, capacity increased from 260 MB in 1981 to 3 TB for the Seagate Barracuda XT hard drive in 2011 for an approximate 10x increase in capacity every 8 years. The "memory wall" is the growing disparity of speed between CPU and memory outside the CPU chip. An important reason for this disparity is the limited communication bandwidth beyond chip boundaries. From 1986 to 2000, CPU speed improved at an annual rate of 55% while memory speed only improved at 10%. Faster processor speed and larger memory capacity result in a wider performance gap between processors and memory. The memory wall may become an even worse problem limiting CPU performance.

Technologies for Network-Based Systems System-Area Interconnects A LAN is typically used to connect clients to big servers. A Storage Area Network (SAN) connects servers to network storage such as disk arrays. Network attached storage (NAS) connects servers directly to disk arrays. All 3 types of networks often appear in a large cluster built with commercial network components.

Technologies for Network-Based Systems System-Area Interconnects - NAS A NAS is fundamentally a bunch of disks, usually arranged in a disk array. Users and servers attach to the NAS primarily using TCP/IP over Ethernet, and the NAS has its own IP address. The primary job of a NAS is to serve files, so most NAS systems offer support for Windows networking, HTTP, plus file systems and protocols such as NFS.

Technologies for Network-Based Systems System-Area Interconnects - SAN SANs allow multiple servers to share a RAID, making it appear to the server as if it were local or directly attached storage, and it cannot be accessed by individual users. A dedicated networking standard, Fiber Channel, allow blocks to be moved between servers and storage at high speed. It uses dedicated switches and a fiber-based cabling system which separates it from the day-to-day traffic. It uses the SCSI protocol for communication. SANs are used for mission-critical data such as big databases, where reliability and performance are key.

Technologies for Network-Based Systems Virtual Machines and Virtualization Middleware To build clouds we need to aggregate large amounts of computing, storage, and networking resources in a virtualized manner. Specifically clouds rely on the dynamic virtualization of CPU, memory, and I/O. Virtual Machines (VMs) The VM is built with virtual resources managed by a guest OS to run a specific application. Between the VMs and the host platform, a middleware layer (called the Virtual Memory Monitor (VMM) or a hypervisor) is deployed. Type 1 (bare metal) hypervisor The bare metal hypervisor runs on the bare hardware and handles all the hardware (CPU, memory, and I/O) directly. This runs in the privileged mode. The guest OS could any OS such as Linux, Windows etc. They provide an almost native performance to the guest OSs (VMs), generally losing only 3–4% of the Central Processing Unit’s cycles to the running of the hypervisor.

Technologies for Network-Based Systems Virtual Machines and Virtualization Middleware Type 1 (bare metal) hypervisor (continued) Bare-metal is great for consolidating a company’s collection of servers onto a single piece of hardware. Some examples of the leading bare-metal hypervisors are VMware’s ESXi (proprietary), Citrix Xen Server (FOS (Free & Open Source)), and KVM (kernel loaded VM) (FOS). ESX and XenServer are installs that reside directly on the hardware. KVM sits within a Linux kernel.

Technologies for Network-Based Systems Virtual Machines and Virtualization Middleware Type 2 (or hosted) hypervisor: Here the hypervisor runs on top of a host OS in user or non-privileged mode. The host OS need not be modified. For example, you could install Windows or Linux, and then install the hypervisor on top but the performance may not be as good as with bare-metal. Hosted is often used by IT workers who need the flexibility to install, run and try out different OSs on their own computers without disrupting their current computing environment. Some examples of the leading hosted hypervisors are VirtualBox (FOS) and Qemu (FOS) Many VMs can be run on a hypervisor. The resource most in demand is system memory, and because RAM is cheap, this makes the proposition of virtualization an attractive one. A VM can be suspended and stored in secondary storage, resumed, or migrated from one hardware platform to another.

Technologies for Network-Based Systems Full Virtualization vs. Para-Virtualization Full Virtualization allows the guest OS to run on the hypervisor without any modification and without it knowing that it is hosted. Paravirtualization requires that the kernel of the guest OS is modified and compiled with hooks (an API) for the hypervisor (guest OSs must know about the hypervisor). The guest OS can then communicate and cooperate with the hypervisor with a potential to improving performance, though this might be marginal (load that generates system calls benefits the most). Windows guests can only run on Full Virtualization, as their source is proprietary. Operating systems that support paravirtualization interfaces need custom kernel adjustments. If compiled manually (where possible), guest operating systems with hypervisor support require more maintenance and configuration. Amazon EC2 uses paravirtualization using the Xen hypervisor.