Towards a Computing Platform for the LEO Edge

Total Page:16

File Type:pdf, Size:1020Kb

Towards a Computing Platform for the LEO Edge Towards a Computing Platform for the LEO Edge Tobias Pfandzelter Jonathan Hasenburg David Bermbach TU Berlin & ECDF TU Berlin & ECDF TU Berlin & ECDF Mobile Cloud Computing Mobile Cloud Computing Mobile Cloud Computing Berlin, Germany Berlin, Germany Berlin, Germany [email protected] [email protected] [email protected] ABSTRACT satellite access networks can be a viable option for connecting all The new space race is heating up as private companies such as kinds of edge devices, even if terrestrial access is readily available. SpaceX and Amazon are building large satellite constellations in High-bandwidth, low-latency connections to client ground stations low-earth orbit (LEO) to provide global broadband internet access. and via inter-satellite links (ISL) enable direct low-latency routing As the number of subscribers connected to this access network between any two ground stations; thus, many argue that satellite grows, it becomes necessary to investigate if and how edge com- Internet will see broad adoption in the future [5, 7, 12]. puting concepts can be applied to LEO satellite networks. Still, sending data from all end devices to a centralized location In this paper, we discuss the unique characteristics of the LEO for processing can put a substantial strain on the satellite network. edge and analyze the suitability of three organization paradigms for Especially for applications that transfer large amounts of data or applications considering developer requirements. We conclude that require low latency event processing, this can quickly become a the serverless approach is the most promising solution, opening up problem [25]. The same issue applies to terrestrial networks for the field for future research. which edge computing, a computing paradigm that uses compute resources at the edge of the network in direct proximity to end CCS CONCEPTS users and devices, has been proposed as a promising solution [3, 9]. Applications can use these resources through edge platforms that • Computer systems organization ! Heterogeneous (hybrid) abstract from the geo-distributed server deployment and resource systems; Distributed architectures; • Networks ! Cloud comput- heterogeneity. These platforms are based on different organiza- ing. tion paradigms for applications (OPA), e.g., VMs, containers, or KEYWORDS serverless functions. Only recently, it has been proposed to also use computing re- satellite internet, LEO constellations, edge computing sources at the LEO edge to facilitate novel applications serving a ACM Reference Format: global user base [6]. To realize this vision, however, edge platforms Tobias Pfandzelter, Jonathan Hasenburg, and David Bermbach. 2021. To- must consider the unique characteristics of the LEO edge while still wards a Computing Platform for the LEO Edge. In 4th International Work- satisfying general requirements of application developers. As a first shop on Edge Systems, Analytics and Networking (EdgeSys ’21), April 26, step towards this goal, we must consider the core of such a platform, 2021, Online, United Kingdom. ACM, New York, NY, USA, 6 pages. https: the OPA, and analyze different options in light of the challenges at //doi.org/10.1145/3434770.3459736 the LEO edge. We therefore make the following contributions: 1 INTRODUCTION (1) We discuss the unique characteristics of the LEO edge (Sec- tion 3). Private Internet and aerospace companies are currently building (2) We derive requirements for building LEO edge applications the largest satellite constellations in existence: SpaceX, Amazon, from a developer perspective (Section 4). and Telesat – the so-called “New Space” companies – are deploy- (3) We analyze the suitability of three OPAs with regards to how ing or planning to launch tens of thousands of satellites into low they might satisfy developer requirements considering LEO Earth orbit (LEO) to provide global high-speed Internet access from arXiv:2104.02396v1 [cs.DC] 6 Apr 2021 edge characteristics (Section 5). space [28]. SpaceX’s Starlink constellation has already entered a public beta phase for subscribers in North America and the United 2 BACKGROUND & RELATED WORK Kingdom with more than 1,500 satellites in use [32]. Beyond enabling Internet access for underserved regions such In this section, we briefly introduce and describe the state of the art as rural areas, planes, or cargo and passenger ships, these new for large LEO satellite communication networks, edge computing, and OPAs. Furthermore, we also provide an overview of existing Permission to make digital or hard copies of all or part of this work for personal or LEO edge computing research. classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. Copyrights for components of this work owned by others than the 2.1 LEO Communication Networks author(s) must be honored. Abstracting with credit is permitted. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specific permission Satellite-backed Internet access has been available for decades with and/or a fee. Request permissions from [email protected]. geostationary satellites at altitudes of 35,000km. The high altitude EdgeSys ’21, April 26, 2021, Online, United Kingdom combined with the requirement to orbit above the equator, however, © 2021 Copyright held by the owner/author(s). Publication rights licensed to ACM. ACM ISBN 978-1-4503-8291-5/21/04...$15.00 result in high access latency for consumers which renders satellite https://doi.org/10.1145/3434770.3459736 Internet inviable for many use cases [10, 17]. EdgeSys ’21, April 26, 2021, Online, United Kingdom Tobias Pfandzelter, Jonathan Hasenburg, and David Bermbach app app app app app app app runtime runtime runtime runtime runtime runtime OS OS OS OS OS VM VM H/W H/W H/W H/W (1) no sharing (2) virtual machines (3) containers (4) serverless Figure 2: OPAs by levels of abstraction [16]: while less ab- straction offers more freedom and flexibility, more abstrac- tion simplifies writing applications and shifts execution control to the platform which often increases efficiency. between ground stations and satellites. These factors mean that any change to the constellations requires a substantial lead time [5, 31]. Figure 1: Overview of a LEO satellite constellation compris- ing different shells. Shown here is the proposed first phase 2.2 Edge Computing of the Starlink deployment with five shells of 1,584 satellites The demand for processing data close to its origin led to an in- at 550km, 1,600 at 1110km, 400 at 1130km, 375 at 1275km, creased popularity of the edge computing paradigm in research and 450 at 1325km altitude [20]. and industry [3, 9]. The main idea behind edge computing is to embed computing resources into the edge of the network, i.e., close to clients. Compared to cloud computing, resources are thus avail- Now, a new generation of Internet satellites is being developed able with low latency and bandwidth costs. Preventing data from by companies such as SpaceX, Amazon, and Telesat. Thousands of being transmitted to the cloud can also reduce privacy and security these satellites are being deployed in large constellations at altitudes risks [24]. of below 600km, i.e., in the LEO. Thus, satellites continuously orbit Typically, edge computing infrastructures comprise a multitude the globe and cover large ground distances in short periods of time. of geo-distributed nodes with different compute, storage, and net- Each satellite is equipped with radio transmitters and receivers to work capabilities. Using such a heterogeneous infrastructure is connect to ground stations. As ground station equipment is small significantly more difficult than the ease-of-adoption developers enough for use in family homes or airplanes, each satellite serves are used to from the cloud: Applications need to consider geo- many user terminals concurrently [5, 7, 12, 13]. distribution, horizontal scalability, and network availability for fully A complete LEO satellite constellation comprises different shells leveraging edge resources. To remedy this, a number of edge com- of satellites. Each shell is a collection of orbital planes with the puting platforms have been proposed to abstract from the underly- same orbital parameters equally distributed across the earth, with ing infrastructure. To this end, they employ service offloading tech- each plane comprising a number of equally spaced satellites. We niques, data geo-replication, or resource sharing [3, 14, 15, 27, 29]. show such a constellation in Figure 1. Edge computing platforms are usually developed around a spe- Given the low altitude, a single satellite has a relatively small cific OPA. In Figure 2, we show that the three main paradigms cone of coverage yet it must be connected to some form of uplink that have initially evolved in the context of cloud computing offer to provide Internet access. If no ground station uplink is available, different levels of abstractions. e.g., because a satellite currently crosses an ocean, satellites may Virtual Machines. Virtual machines (VM) are virtualized servers connect to adjacent satellites via ISLs. This way, satellites can ac- that run operating systems which have often been slightly modified quire Internet access even if no ground station is within their field for VM usage to increase performance. Multiple virtual machines of view. Satellites also use ISLs for providing low latency broadband can share a common physical machine, hence a single server can access since light propagates faster in a vacuum than in fiber. This be made to look like many smaller machines. VMs can be used just makes satellite based Internet an attractive alternative for many like regular servers and host long-running applications, often with Internet subscribers [5, 11, 21]. multiple connected services sharing a virtual host [9]. A main driver of the “new space race” are decreasing satellite launch cost due to the development of reusable rockets such as Containers.
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]
  • 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]
  • 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]
  • 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]
  • 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]
  • Computing Platforms Chapter 4
    Computing Platforms Chapter 4 COE 306: Introduction to Embedded Systems Dr. Abdulaziz Tabbakh Computer Engineering Department College of Computer Sciences and Engineering King Fahd University of Petroleum and Minerals [Adapted from slides of Dr. A. El-Maleh, COE 306, KFUPM] Next . Basic Computing Platforms The CPU bus Direct Memory Access (DMA) System Bus Configurations ARM Bus: AMBA 2.0 Memory Components Embedded Platforms Platform-Level Performance Computing Platforms COE 306– Introduction to Embedded System– KFUPM slide 2 Embedded Systems Overview Actuator Output Analog/Digital Sensor Input Analog/Digital CPU Memory Embedded Computer Computing Platforms COE 306– Introduction to Embedded System– KFUPM slide 3 Computing Platforms Computing platforms are created using microprocessors, I/O devices, and memory components A CPU bus is required to connect the CPU to other devices Software is required to implement an application Embedded system software is closely tied to the hardware Computing Platform: hardware and software Computing Platforms COE 306– Introduction to Embedded System– KFUPM slide 4 Computing Platform A typical computing platform includes several major hardware components: The CPU provides basic computational facilities. RAM is used for program and data storage. ROM holds the boot program and some permanent data. A DMA controller provides direct memory access capabilities. Timers are used by the operating system A high-speed bus, connected to the CPU bus through a bridge, allows fast devices to communicate efficiently with the rest of the system. A low-speed bus provides an inexpensive way to connect simpler devices and may be necessary for backward compatibility as well. Computing Platforms COE 306– Introduction to Embedded System– KFUPM slide 5 Platform Hardware Components Computer systems may have one or more bus Buses are classified by their overall performance: lows peed, high- speed.
    [Show full text]
  • Download from an Unknown Website Cannot Be Said to Be ‘Safe’ Just Because It Happens Not to Harbor a Virus
    A direct path to dependable software The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation Jackson, Daniel. “A direct path to dependable software.” Commun. ACM 52.4 (2009): 78-88. As Published http://dx.doi.org/10.1145/1498765.1498787 Publisher Association for Computing Machinery Version Author's final manuscript Citable link http://hdl.handle.net/1721.1/51683 Terms of Use Attribution-Noncommercial-Share Alike 3.0 Unported Detailed Terms http://creativecommons.org/licenses/by-nc-sa/3.0/ A Direct Path To Dependable Software Daniel Jackson Computer Science and Artificial Intelligence Laboratory Massachusetts Institute of Technology What would it take to make software more dependable? Until now, most approaches have been indirect: some practices – processes, tools or techniques – are used that are believed to yield dependable software, and the argument for dependability rests on the extent to which the developers have adhered to them. This article argues instead that developers should produce direct evidence that the software satisfies its dependability claims. The potential advantages of this approach are greater credibility (since the ar- gument is not contingent on the effectiveness of the practices) and reduced cost (since development resources can be focused where they have the most impact). 1 Why We Need Better Evidence Is a system that never fails dependable? Not necessarily. A dependable system is one you can depend on – that is, in which you can place your reliance or trust. A rational person or organization only does this with evidence that the system’s benefits outweigh its risks.
    [Show full text]
  • Open Source Solution for Cloud Computing Platform Using Openstack
    See discussions, stats, and author profiles for this publication at: http://www.researchgate.net/publication/263581733 Open Source Solution for Cloud Computing Platform Using OpenStack CONFERENCE PAPER · MAY 2014 DOI: 10.13140/2.1.1695.9043 CITATIONS DOWNLOADS VIEWS 8 826 204 5 AUTHORS, INCLUDING: Rakesh Kumar Neha Gupta JECRC Foundation University of Adelaide 20 PUBLICATIONS 69 CITATIONS 8 PUBLICATIONS 36 CITATIONS SEE PROFILE SEE PROFILE Shilpi Charu Kanishk Jain Rajasthan Technical University JECRC Foundation 10 PUBLICATIONS 33 CITATIONS 2 PUBLICATIONS 14 CITATIONS SEE PROFILE SEE PROFILE Available from: Rakesh Kumar Retrieved on: 10 August 2015 Rakesh Kumar et al, International Journal of Computer Science and Mobile Computing, Vol.3 Issue.5, May- 2014, pg. 89-98 Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320–088X IJCSMC, Vol. 3, Issue. 5, May 2014, pg.89 – 98 RESEARCH ARTICLE Open Source Solution for Cloud Computing Platform Using OpenStack Rakesh Kumar1, Neha Gupta2, Shilpi Charu3, Kanishk Jain4, Sunil Kumar Jangir5 1,2,3,4,5Department of Information Technology, JECRC, Jaipur, India 1 [email protected], 2 [email protected], 3 [email protected] 4 [email protected], 5 [email protected] Abstract— OpenStack is a massively scalable open source cloud operating system that is a global collaboration of developers and cloud computing technologists producing the ubiquitous open source cloud computing platform for public and private clouds. OpenStack provides series of interrelated projects delivering various components for a cloud infrastructure solution as well as controls large pools of storage, compute and networking resources throughout a datacenter that all managed through a dashboard(Horizon) that gives administrators control while empowering their users to provision resources through a web interface.
    [Show full text]
  • A Review on Software Testing Framework in Cloud Computing
    D.Anitha et al, / (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 5 (6) , 2014, 7553-7562 A Review on Software Testing Framework in Cloud Computing D.Anitha1 and Dr.M.V.Srinath2 1 Research Scholar, Department Of Computer Science, STET Womens College Mannargudi. 2Director, Department of Computer Applications, STET Womens College, Mannargudi. Abstract— Cloud computing has emerged as a new developers. It is based on .NET or Java extended computing paradigm that impacts several different research with cloud services. fields, including software testing. In cloud computing, the user 3. Infrastructure as a Service (Iaas) - It delivers cloud can use high end services in form of software that resides on computing infrastructures, namely, servers, different server and can be accessed from all over the world. software, data-center space and network It not only changes the way of obtaining computing resources but also alters the way of managing and delivering computing requirements. services, technologies and solutions. Software testing reduces The growth of cloud based services is evident, but the need for hardware and software resources and offers a cloud still undergoes development and testing before flexible and efficient cloud platform. Testing in the cloud deploying. The development of cloud-based services platform is effectively supported by engineers based on new increases with the need for testing their applications. Cloud test models and criteria. Prioritization technique is introduced computing provides cost effective and flexible means via to provide better relationship between test cases. These test scalable computing power and diverse services. The cloud cases are clustered based on priority level.
    [Show full text]
  • Integrated Circuit Designer
    About Seeqc At Seeqc, we are developing the world’s first digital quantum computing platform. Our unique chips- scale quantum architecture delivers unparalleled scope for commercial scalability. We have partnered with world-class quantum algorithm teams, and visionary enterprise clients to build quantum computers that will herald a new era in computational power. You will join a team of experienced executives and scientists with a varied background in superconducting digital circuits and quantum technologies. We have established an international presence, headquarters in New York with facilities in London and Naples, creating a truly diverse and unique team atmosphere. You will work with our international teams and partners to build a unique quantum computing platform with integrated superconducting digital circuits, designed to provide solutions for the ground-breaking challenges faced by our customers; from new drug modelling and building longer-lasting battery technologies, to advanced machine learning. We are offering full-time positions with highly competitive salary and company benefits including equity options. Roles are based in New York, and our international presence means that there will be opportunities to travel. For more info about Seeqc, head to seeqc.com About your role You will work closely with our digital design, quantum design and fabrication teams to perform circuit design including simulation, optimization, layout, verification of superconductor digital and mixed signal circuits. You will take advantage of your proficiency with computer-aided design tools to develop innovative solutions for the novel computational challenges realised in our unique hybrid quantum-classical superconducting quantum processor architecture. You will exploit your experience with analog RF circuit design or high-speed digital circuit design to create advanced classical circuits that can take maximum advantage Seeqc’s unique integrated quantum-classical quantum processors.
    [Show full text]
  • Nutanix Xtreme Computing Platform
    Datasheet Nutanix Xtreme Computing Platform The Nutanix Xtreme Computing Platform is a 100% software-driven infrastructure solution that natively converges storage, compute and virtualization into a turnkey appliance that can be deployed in minutes to run any application out of the box. Datacenter capacity can be easily expanded one node at a time with no disruption, delivering linear and predictable scalability with pay-as-you-grow flexibility. Nutanix eliminates complexity and allows IT to drive better business outcomes. Nutanix is built with the same web-scale technologies and architectures that power leading Internet and cloud infrastructures, such as Google, Facebook, and Amazon – and runs any workload at any scale. The Xtreme Computing Platform brings together web-scale engineering with consumer-grade management to make infrastructure invisible and elevate IT teams so they can focus on what matters most – applications. At the heart of the Xtreme Computing Platform are two product families: Nutanix Acropolis and Nutanix Prism. Acropolis provides a distributed storage fabric delivering enterprise storage services, and an app mobility fabric that enables workloads to move freely between virtualization environments without penalty. Nutanix Prism, a comprehensive management solution for Acropolis, delivering unprecedented one-click simplicity to the IT infrastructure lifecycle. Unprecedented Flexibility Uncompromising Simplicity Acropolis delivers the industry’s first open platform for Prism incorporates consumer-grade design to simplify application-centric virtualization and mobility. IT professionals deployment, optimization and operations of advanced IT benefit from uncompromising flexibility of where to run their infrastructure. Prism provides one-click infrastructure applications, and can freely choose the best application management, one-click operational insights and one-click virtualization and provisioning technologies for their troubleshooting for both storage and compute.
    [Show full text]
  • Building a Trustworthy Computing Platform
    Building a Trustworthy Computing Platform Gabriel L. Somlo, Ph.D. <[email protected]> SEI, CERT Division Carnegie Mellon University Pittsburgh, PA 15213 ©2019 Carnegie Mellon University Building a Trustworthy Computing Platform Gabriel L. Somlo, Ph.D. [Distribution Statement A] Approved for public release and unlimited distribution. Copyright 2019 Carnegie Mellon University. All Rights Reserved. This material is based upon work funded and supported by the Department of Defense under Contract No. FA8702-15-D-0002 with Carnegie Mellon University for the operation of the Software Engineering Institute, a federally funded research and development center. The view, opinions, and/or findings contained in this material are those of the author(s) and should not be construed as an official Government position, policy, or decision, unless designated by other documentation. References herein to any specific commercial product, process, or service by trade name, trade mark, manufacturer, or otherwise, does not necessarily constitute or imply its endorsement, recommendation, or favoring by Carnegie Mellon University or its Software Engineering Institute. NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING INSTITUTE MATERIAL IS FURNISHED ON AN “AS-IS” BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT. [DISTRIBUTION STATEMENT A] This material has been approved for public release and unlimited distribution. Please see Copyright notice for non-US Government use and distribution.
    [Show full text]