Evolution of Cloud Operating System: from Technology to Ecosystem

Total Page:16

File Type:pdf, Size:1020Kb

Evolution of Cloud Operating System: from Technology to Ecosystem Chen ZN, Chen K, Jiang JL et al. Evolution of cloud operating system: From technology to ecosystem. JOURNAL OF COMPUTER SCIENCE AND TECHNOLOGY 32(2): 224–241 Mar. 2017. DOI 10.1007/s11390-017-1717-z Evolution of Cloud Operating System: From Technology to Ecosystem Zuo-Ning Chen 1, Fellow, CCF, Kang Chen 1, Jin-Lei Jiang 1, Member, CCF, ACM, IEEE, Lu-Fei Zhang 2 Song Wu 3, Member, CCF, IEEE, Zheng-Wei Qi 4, Member, CCF, ACM, IEEE Chun-Ming Hu 5, Member, CCF, IEEE, Yong-Wei Wu 1, Senior Member, CCF, IEEE Yu-Zhong Sun 6, Member, CCF, IEEE, Hong Tang 7, Ao-Bing Sun 8, and Zi-Lu Kang 9 1Department of Computer Science and Technology, Tsinghua University, Beijing 100084, China 2Jiangnan Institute of Computing Technology, Wuxi 214083, China 3School of Computer Science and Technology, Huazhong University of Science and Technology, Wuhan 430074, China 4School of Software, Shanghai Jiao Tong University, Shanghai 200240, China 5School of Computer Science and Engineering, Beihang University, Beijing 100191, China 6Institute of Computing Technology, Chinese Academy of Sciences, Beijing 100190, China 7Alibaba Cloud Computing Inc., Hangzhou 310024, China 8G-Cloud Technology Inc., Dongguan 523808, China 9Institute of Technology of Internet of Things, Information Science Academy of China Electronics Technology Group Corporation, Beijing 100081, China E-mail: [email protected]; {chenkang, jjlei}@tsinghua.edu.cn; [email protected] E-mail: [email protected]; [email protected]; [email protected]; [email protected] E-mail: [email protected]; [email protected]; [email protected]; [email protected] Received November 14, 2016; revised December 16, 2016. Abstract The cloud operating system (cloud OS) is used for managing the cloud resources such that they can be used effectively and efficiently. And also it is the duty of cloud OS to provide convenient interface for users and applications. However, these two goals are often conflicting because convenient abstraction usually needs more computing resources. Thus, the cloud OS has its own characteristics of resource management and task scheduling for supporting various kinds of cloud applications. The evolution of cloud OS is in fact driven by these two often conflicting goals and finding the right tradeoff between them makes each phase of the evolution happen. In this paper, we have investigated the ways of cloud OS evolution from three different aspects: enabling technology evolution, OS architecture evolution and cloud ecosystem evolution. We show that finding the appropriate APIs (application programming interfaces) is critical for the next phase of cloud OS evolution. Convenient interfaces need to be provided without scarifying efficiency when APIs are chosen. We present an API-driven cloud OS practice, showing the great capability of APIs for developing a better cloud OS and helping build and run the cloud ecosystem healthily. Keywords cloud computing, operating system, architecture evolution, virtualization, cloud ecosystem 1 Introduction and domestically○4 . Many traditional applications have been migrated to the cloud systems. For developers 1.1 Cloud Operating System and service providers, services and applications are In recent years, cloud computing systems have been hosted without the concern about infrastructure con- becoming more and more prevalent both abroad○1 ∼○3 struction, application deployment, hardware updating Survey Special Section on MOST Cloud and Big Data The work is supported by the National Key Research and Development Program of China under Grant No. 2016YFB1000500. ○1 https://aws.amazon.com/cn/documentation/, Nov. 2016. ○2 https://www.azure.cn/documentation/, Nov. 2016. ○3 https://cloud.google.com/, Nov. 2016. ○4 https://develop.aliyun.com/, Nov. 2016. ©2017 Springer Science + Business Media, LLC & Science Press, China Zuo-Ning Chen et al.: Evolution of Cloud Operating System: From Technology to Ecosystem 225 or data center maintenance. Now, the platform compo- Rich More nents running inside the cloud providers are considered as cloud operating systems (OS). The cloud OS[1], simi- [2-6] lar to traditional OS managing bare metal hardware SaaS and the software resources, goes through a serial of evo- lution and now enters the next stage of evolution. We start our discussion with the functions that can be pro- PaaS vided by cloud OS[1]. And towards the end of this pa- per, we hope to provide a guideline for the next stage Cloud OS Functionalities IaaS of evolution. Cloud computing systems[1,7-9] are often built from the existing single machine OS, usually Linux. Now, Ecosystem Services the other operating systems like Windows have been used in the data center infrastructure. Most of the OS Kernel cloud computing system components are constructed [2 3] Core API IaaS API as user applications - from the traditional OS point PaaS API API SaaS of view. However, the platform for running cloud appli- API Levels High cations can still be called an OS as the platform serves the same two critical goals as a traditional OS. On the Fig.1. Cloud OS API levels and the ecosystem services. one hand, the cloud OS is used for managing the large- scale distributed computing resources, similar to the 1.2 Requirements of Cloud OS traditional OS managing hardware in a single machine. In a single computer, it is quite clear that there On the other hand, the cloud OS provides abstraction needs an OS abstracting the bare metal hardware for for running user applications. APIs (application pro- facilitating the applications as well as users to use gramming interfaces) are provided for programmers to the computing resources conveniently. However, most develop cloud applications. This is similar to the case of the components in the cloud OS are implemented that a local OS provides system calls for servicing appli- as user-level programs. The fundamental necessity of cations. For example, file systems are used for providing building a cloud OS needs further discussion as cloud storage APIs instead of exposing the block operation di- applications can always be built directly on the current rectly from disks in local OS. Cloud OS provides similar operating systems without concerning the management APIs to a distributed file system. Besides programming of hardware in the kernel mode. The true necessity APIs, some other facilities will be provided for running relies on the programming APIs and runtime support the system smoothly in the cloud. Job scheduler is such in the cloud environment[13,18-21]. Local OSes mainly [10-12] a service for scheduling jobs . Local OS schedules focus on a single machine. They usually do not con- processes while cloud OS schedules distributed jobs. sider any cloud application logically as a whole uni- Data management is also a very important component fied application spanning over a large number of ma- [13-18] in the cloud OS . Users and applications need to chines. Thus traditional OSes just provide the basic track the data flow inside their applications running in facilities for communications. In addition, cloud ap- the cloud environment. Data processing applications es- plications have different forms such as micro services pecially need the thorough understanding of their data for building web applications, batch processing for big flow among different components in the cloud OS. Fig.1 data analysis[19-21], query-based data analytics[18,22-23], shows the cloud OS API levels as well as various services and real time processing of streaming data[24-26]. All supported. Core APIs are relatively stable and used for the applications have their own internal logical orga- managing the underlying infrastructure and hiding re- nizations of multiple components running on multiple, sources heterogeneity and distribution. On top of core or even thousands of machines. Exposing very sim- APIs are other APIs that provide more functionalities, ple communication interfaces is just not enough. Deve- easing the burden of building more higher levels of cloud lopers need higher levels of abstractions for building services and applications. Through this way, the cloud their applications without struggling with details re- ecosystem can be built and cloud services and applica- lated to the complex communication patterns and ma- tions can proliferate. chine architecture. Exposing APIs that can run on 226 J. Comput. Sci. & Technol., Mar. 2017, Vol.32, No.2 top of multiple machines will be very helpful. This is own cloud OS under different considerations. Amazon a very common case for the current cloud OS practi- started with virtual machine (VM) instances for deve- tioners such as Google GAE○5 , Amazon AWS○6 , Mi- lopers and administrators to start building their own crosoft Azure○7 and Alibaba Cloud○8 . Cloud appli- systems, releasing them from the maintenance of the cation developers can get the programming interfaces underlying hardware. At the same time, Google started without considering the physical resources. For exam- its cloud OS considering large amount of data process- ple, developers can store objects in the cloud without ing. These are the two main pioneers building the knowing the final disks storing the data[14]. Program- cloud OS. The services provided by these two companies ming is always about abstractions and we need the are quite different. The followers, such as Microsoft, cloud OS to provide the cloud programming abstrac- started with the similar services with different inter- tion for building cloud applications. The other reason faces exposed. For business reasons, the interfaces are why a cloud OS is necessary is that running cloud appli- proprietary, leading to open source versions to provide cation is different from running applications in a single similar but slightly different interfaces. Thus, the cloud machine. For each single machine OS, a task sched- application developers have to face the problem of ven- uler will be used for managing the processes created in dor lock-in which means that applications built for one the system.
Recommended publications
  • The Road Ahead for Computing Systems
    56 JANUARY 2019 HiPEAC conference 2019 The road ahead for Valencia computing systems Monica Lam on keeping the web open Alberto Sangiovanni Vincentelli on building tech businesses Koen Bertels on quantum computing Tech talk 2030 contents 7 14 16 Benvinguts a València Monica Lam on open-source Starting and scaling a successful voice assistants tech business 3 Welcome 30 SME snapshot Koen De Bosschere UltraSoC: Smarter systems thanks to self-aware chips 4 Policy corner Rupert Baines The future of technology – looking into the crystal ball 33 Innovation Europe Sandro D’Elia M2DC: The future of modular microserver technology 6 News João Pita Costa, Ariel Oleksiak, Micha vor dem Berge and Mario Porrmann 14 HiPEAC voices 34 Innovation Europe ‘We are witnessing the creation of closed, proprietary TULIPP: High-performance image processing for linguistic webs’ embedded computers Monica Lam Philippe Millet, Diana Göhringer, Michael Grinberg, 16 HiPEAC voices Igor Tchouchenkov, Magnus Jahre, Magnus Peterson, ‘Do not think that SME status is the final game’ Ben Rodriguez, Flemming Christensen and Fabien Marty Alberto Sangiovanni Vincentelli 35 Innovation Europe 18 Technology 2030 Software for the big data era with E2Data Computing for the future? The way forward for Juan Fumero computing systems 36 Innovation Europe Marc Duranton, Madeleine Gray and Marcin Ostasz A RECIPE for HPC success 23 Technology 2030 William Fornaciari Tech talk 2030 37 Innovation Europe Solving heterogeneous challenges with the 24 Future compute special Heterogeneity Alliance
    [Show full text]
  • Google Cloud Issue Summary Multiple Products - 2020-08-19 All Dates/Times Relative to US/Pacific
    Google Cloud Issue Summary Multiple Products - 2020-08-19 All dates/times relative to US/Pacific Starting on August 19, 2020, from 20:55 to 03:30, multiple G Suite and Google Cloud Platform products experienced errors, unavailability, and delivery delays. Most of these issues involved creating, uploading, copying, or delivering content. The total incident duration was 6 hours and 35 minutes, though the impact period differed between products, and impact was mitigated earlier for most users and services. We understand that this issue has impacted our valued customers and users, and we apologize to those who were affected. DETAILED DESCRIPTION OF IMPACT Starting on August 19, 2020, from 20:55 to 03:30, Google Cloud services exhibited the following issues: ● Gmail: The Gmail service was unavailable for some users, and email delivery was delayed. About ​ 0.73% of Gmail users (both consumer and G Suite) active within the preceding seven days experienced 3 or more availability errors during the outage period. G Suite customers accounted for 27% of affected Gmail users. Additionally, some users experienced errors when adding attachments to messages. Impact on Gmail was mitigated by 03:30, and all messages delayed by this incident have been delivered. ● Drive: Some Google Drive users experienced errors and elevated latency. Approximately 1.5% of Drive ​ users (both consumer and G Suite) active within the preceding 24 hours experienced 3 or more errors during the outage period. ● Docs and Editors: Some Google Docs users experienced issues with image creation actions (for ​ example, uploading an image, copying a document with an image, or using a template with images).
    [Show full text]
  • Fog Computing: a Platform for Internet of Things and Analytics
    Fog Computing: A Platform for Internet of Things and Analytics Flavio Bonomi, Rodolfo Milito, Preethi Natarajan and Jiang Zhu Abstract Internet of Things (IoT) brings more than an explosive proliferation of endpoints. It is disruptive in several ways. In this chapter we examine those disrup- tions, and propose a hierarchical distributed architecture that extends from the edge of the network to the core nicknamed Fog Computing. In particular, we pay attention to a new dimension that IoT adds to Big Data and Analytics: a massively distributed number of sources at the edge. 1 Introduction The “pay-as-you-go” Cloud Computing model is an efficient alternative to owning and managing private data centers (DCs) for customers facing Web applications and batch processing. Several factors contribute to the economy of scale of mega DCs: higher predictability of massive aggregation, which allows higher utilization with- out degrading performance; convenient location that takes advantage of inexpensive power; and lower OPEX achieved through the deployment of homogeneous compute, storage, and networking components. Cloud computing frees the enterprise and the end user from the specification of many details. This bliss becomes a problem for latency-sensitive applications, which require nodes in the vicinity to meet their delay requirements. An emerging wave of Internet deployments, most notably the Internet of Things (IoTs), requires mobility support and geo-distribution in addition to location awareness and low latency. We argue that a new platform is needed to meet these requirements; a platform we call Fog Computing [1]. We also claim that rather than cannibalizing Cloud Computing, F. Bonomi R.
    [Show full text]
  • Hybrid Cloud Foundation
    Hybrid Cloud Foundation Explore, Plan, Implement Hybrid Cloud Foundation is your on-ramp to Azure. This This offering includes modules focusing on Core Azure, Microsoft Services Solution Offering will help you learn Azure IaaS, Azure Operations, and Azure Workloads. The about Azure so that you can make informed design Operations module is a discovery and planning workshop. decisions leading to an Enterprise-grade implementation The Core, IaaS, and Workload modules include a technical to meet your business needs and strategies. design workstream, and a hands-on exploration and implementation workstream. Outcomes Reduce cloud Prepare for new Accelerate cloud adoption risk operating models adoption Benefit from cloud adoption Cloud completely changes how IT is Take your hybrid solution to market expertise shaped over thousands delivered and managed. Gain quickly with a structured approach of engagements with Fortune 500 insights and recommendations for and detailed guidance based on and other Enterprise organizations running and operating in the cloud. our past experience. around the world. Capabilities Hybrid Cloud Foundation Modules Related offerings Core Azure Design (3 weeks) Azure Workloads for SAP (6+ weeks): Focus on design decisions core to Azure: subscription Azure Workloads for SQL (6+ weeks): model, naming conventions, identity, security, and external Design and implement a specific VM-based workload. network connectivity. Azure Migration Pilot (3 weeks): Migrate your first VM- based workloads to Azure. Azure IaaS Design (6 weeks) Extend your core Azure design. Focus on the design Azure Operations Jumpstart (5 weeks): Deep planning to decisions to enable Azure IaaS capabilities: compute, help your people, process, technology shift for operating storage, networking, and extending on-premises in the cloud.
    [Show full text]
  • Opennebula 5.4 Deployment Guide Release 5.4.15
    OpenNebula 5.4 Deployment guide Release 5.4.15 OpenNebula Systems Jun 19, 2018 This document is being provided by OpenNebula Systems under the Creative Commons Attribution-NonCommercial- Share Alike License. THE DOCUMENT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IM- PLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DOCUMENT. i CONTENTS 1 Cloud Design 1 1.1 Overview.................................................1 1.2 Open Cloud Architecture.........................................2 1.3 VMware Cloud Architecture.......................................7 1.4 OpenNebula Provisioning Model.................................... 13 2 OpenNebula Installation 19 2.1 Overview................................................. 19 2.2 Front-end Installation.......................................... 19 2.3 MySQL Setup.............................................. 25 3 Node Installation 27 3.1 Overview................................................. 27 3.2 KVM Node Installation......................................... 28 3.3 vCenter Node Installation........................................ 34 3.4 Verify your Installation.......................................... 42 4 Authentication Setup 50 4.1 Overview................................................. 50 4.2
    [Show full text]
  • A Dynamic Cloud Computing Platform for Ehealth Systems
    A Dynamic Cloud Computing Platform for eHealth Systems Mehdi Bahrami 1 and Mukesh Singhal 2 Cloud Lab University of California Merced, USA Email: 1 IEEE Senior Member, [email protected]; 2 IEEE Fellow, [email protected] Abstract— Cloud Computing technology offers new Application Programming Interface (API) could have some opportunities for outsourcing data, and outsourcing computation issue when the application transfer to a cloud computing system to individuals, start-up businesses, and corporations in health that needs to redefine or modify the security functions of the API care. Although cloud computing paradigm provides interesting, in order to use the cloud. Each cloud computing system offer and cost effective opportunities to the users, it is not mature, and own services to using the cloud introduces new obstacles to users. For instance, vendor lock-in issue that causes a healthcare system rely on a cloud Security Issue: Data security refers to accessibility of stored vendor infrastructure, and it does not allow the system to easily data to only authorized users, and network security refers to transit from one vendor to another. Cloud data privacy is another accessibility of transfer of data between two authorized users issue and data privacy could be violated due to outsourcing data through a network. Since cloud computing uses the Internet as to a cloud computing system, in particular for a healthcare system part of its infrastructure, stored data on a cloud is vulnerable to that archives and processes sensitive data. In this paper, we both a breach in data and network security. present a novel cloud computing platform based on a Service- Oriented cloud architecture.
    [Show full text]
  • Guest OS Compatibility Guide
    Guest OS Compatibility Guide Guest OS Compatibility Guide Last Updated: September 29, 2021 For more information go to vmware.com. Introduction VMware provides the widest virtualization support for guest operating systems in the industry to enable your environments and maximize your investments. The VMware Compatibility Guide shows the certification status of operating system releases for use as a Guest OS by the following VMware products: • VMware ESXi/ESX Server 3.0 and later • VMware Workstation 6.0 and later • VMware Fusion 2.0 and later • VMware ACE 2.0 and later • VMware Server 2.0 and later VMware Certification and Support Levels VMware product support for operating system releases can vary depending upon the specific VMware product release or update and can also be subject to: • Installation of specific patches to VMware products • Installation of specific operating system patches • Adherence to guidance and recommendations that are documented in knowledge base articles VMware attempts to provide timely support for new operating system update releases and where possible, certification of new update releases will be added to existing VMware product releases in the VMware Compatibility Guide based upon the results of compatibility testing. Tech Preview Operating system releases that are shown with the Tech Preview level of support are planned for future support by the VMware product but are not certified for use as a Guest OS for one or more of the of the following reasons: • The operating system vendor has not announced the general availability of the OS release. • Not all blocking issues have been resolved by the operating system vendor.
    [Show full text]
  • In-Memory Computing Platform: Data Grid Deep Dive
    In-Memory Computing Platform: Data Grid Deep Dive Rachel Pedreschi Matt Sarrel Director of Solutions Architecture Director of Technical Marketing GridGain Systems GridGain Systems [email protected] [email protected] @rachelpedreschi @msarrel © 2016 GridGain Systems, Inc. GridGain Company Confidential Agenda • Introduction • In-Memory Computing • GridGain / Apache Ignite Overview • Survey Results • Data Grid Deep Dive • Customer Case Studies © 2016 GridGain Systems, Inc. Why In-Memory Now? Digital Transformation is Driving Companies Closer to Their Customers • Driving a need for real-time interactions Internet Traffic, Data, and Connected Devices Continue to Grow • Web-scale applications and massive datasets require in-memory computing to scale out and speed up to keep pace • The Internet of Things generates huge amounts of data which require real-time analysis for real world uses The Cost of RAM Continues to Fall • In-memory solutions are increasingly cost effective versus disk-based storage for many use cases © 2015 GridGain Systems, Inc. GridGain Company Confidential Why Now? Data Growth and Internet Scale Declining DRAM Cost Driving Demand Driving Attractive Economics Growth of Global Data 35. 26.3 17.5 ZettabytesData of 8.8 DRAM 0. Flash Disk 8 zettabytes in 2015 growing to 35 in 2020 Cost drops 30% every 12 months © 2016 GridGain Systems, Inc. The In-Memory Computing Technology Market Is Big — And Growing Rapidly IMC-Enabling Application Infrastructure ($M) © 2016 GridGain Systems, Inc. What is an In-Memory Computing Platform?
    [Show full text]
  • Main Application Version 7.18 This Documentation Is Provided Under Restrictions on Use and Are Protected by Intellectual Property Laws
    Architecture Main application Version 7.18 This documentation is provided under restrictions on use and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this documentation, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. © 2021 Creatio. All rights reserved. Table of Contents | 3 Table of Contents Main application 4 Creatio layers 4 Creatio infrastructure 5 Horizontal scaling 9 Deployment options 11 © 2021 Creatio. All rights reserved. Main application | 4 Main application Beginner The classic three-tier Creatio architecture is cross-platform, flexibile, and scalable. The presentation layer lets users access Creatio UI via a web browser or a mobile app for Android or iOS. Creatio application layer is available for the .NET Framework and .NET Core platforms, and can be deployed on Windows, Linux, and macOS web servers. Creatio supports Microsoft SQL Server, Oracle, and PostgreSQL for persistent storage on the data layer. Creatio supports version control system server integration, which allows for multi-user development. The Creatio architecture supports horizontal scaling and different deployment methods: cloud and on-site (with or without fault tolerance). Creatio layers Creatio has a classic three-tier architecture with the following layers: data, application, presentation.
    [Show full text]
  • Rackspace Service Blocks: Complex Cloud Operations Gain Advanced Operational Guidance and Support from Certified Cloud Specialists
    Rackspace Service Blocks: Complex Cloud Operations Gain advanced operational guidance and support from certified cloud specialists. Large organizations and businesses running highly complex cloud About Rackspace environments often require customized cloud architecture and access Rackspace is your trusted partner across cloud, to highly skilled cloud resources. Finding the right level of technical applications, security, data and infrastructure. expertise can be challenging, because talent is scarce, expensive and hard to retain. Rackspace® Complex Cloud Operations help you manage • A leader in the 2018 Gartner Magic Quadrant ongoing operational challenges and keep you informed on ever-evolving for Public Cloud Infrastructure Managed cloud features. Service Providers, Worldwide • 3,000+ cloud experts Experts Dedicated to Your Success • Hosting provider for more than half of the Rackspace is a next-generation cloud services provider that manages the Fortune 100 full cloud lifecycle. Complex Cloud Operations offers access to advanced technical resources to better manage public cloud operations and • 20+ years of hosting experience infrastructure architecture. • Customers in 150+ countries • 3,000+ AWS accreditations Key Features • 1,000+ AWS certifications Rackspace offers a range of robust features to support complex cloud operations including: • 1,300+ Microsoft certifications worldwide • 200+ Microsoft-certified professionals Expertise: Expert technical resources, including solution architects, lead engineers, container and Kubernetes experts, and DevOps professionals • 150+ Microsoft Azure certifications worldwide help optimize public cloud operations and architectural infrastructure. • 100+ Microsoft Azure-certified professionals Optimized Custom Configurations: Custom configurations include • 13 Microsoft partner certifications monitoring services, OS optimization, patch management, alert response • Five-time Microsoft Hosting Partner of the Year runbooks and deployment management.
    [Show full text]
  • The FPGA As a Computing Platform
    X01_Introduction.qxp 3/15/2005 3:31 PM Page 1 CHAPTER 1 The FPGA as a Computing Platform As the cost per gate of FPGAs declines, embedded and high-performance sys- tems designers are being presented with new opportunities for creating accel- erated software applications using FPGA-based programmable hardware platforms. From a hardware perspective, these new platforms effectively bridge the gap between software programmable systems based on traditional microprocessors, and application-specific platforms based on custom hard- ware functions. From a software perspective, advances in design tools and methodology for FPGA-based platforms enable the rapid creation of hardware-accelerated algorithms. The opportunities presented by these programmable hardware plat- forms include creation of custom hardware functions by software engineers, later design freeze dates, simplified field updates, and the reduction or elimi- nation of custom chips from many categories of electronic products. Increas- ingly, systems designers are seeing the benefits of using FPGAs as the basis for applications that are traditionally in the domain of application-specific in- tegrated circuits (ASICs). As FPGAs have grown in logic capacity, their ability to host high-performance software algorithms and complete applications has grown correspondingly. In this chapter, we will present a brief overview of FPGAs and FPGA- based platforms and present the general philosophy behind using the C lan- guage for FPGA application development. Experienced FPGA users will find 1 X01_Introduction.qxp 3/15/2005 3:31 PM Page 2 2 The FPGA as a Computing Platform much of this information familiar, but nonetheless we hope you stay with us as we take the FPGA into new, perhaps unfamiliar territory: that of high-performance computing.
    [Show full text]
  • An Experimental Study of Load Balancing of Opennebula Open-Source Cloud Computing Platform
    An Experimental Study of Load Balancing of OpenNebula Open-Source Cloud Computing Platform A B M Moniruzzaman, StudentMember, IEEE Kawser Wazed Nafi Syed Akther Hossain, Member, IEEE & ACM Abstract— Cloud Computing is becoming a viable computing organization existing computing infrastructure into a private or solution for services oriented computing. Several open-source hybrid cloud [3]. Eucalyptus, CloudStack, OpenStack and cloud solutions are available to these supports. Open-source OpenNebula are the most popular open-source cloud solutions software stacks offer a huge amount of customizability without used as to build such community cloud platforms. Eucalyptus huge licensing fees. As a result, open source software are widely is open source cloud software for building AWS-compatible used for designing cloud, and private clouds are being built private and hybrid clouds [4]. Apache CloudStack is open increasingly in the open source way. Numerous contributions source software designed to deploy and manage large networks have been made by the open-source community related to of virtual machines Infrastructure as a Service (IaaS) cloud private-IaaS-cloud. OpenNebula - a cloud platform is one of the computing platform [5]. OpenStack is a cloud operating system popular private cloud management software. However, little has that controls large pools of compute, storage, and networking been done to systematically investigate the performance evaluation of this open-source cloud solution in the existing resources throughout a datacenter, all managed through a literature. The performance evaluation aids new and existing dashboard that gives administrators control while empowering research, industry and international projects when selecting their users to provision resources through a web interface [6].
    [Show full text]