Picasso: a Lightweight Edge Computing Platform

Total Page:16

File Type:pdf, Size:1020Kb

Picasso: a Lightweight Edge Computing Platform PiCasso: A Lightweight Edge Computing Platform Adisorn Lertsinsrubtavee, Anwaar Ali, Carlos Molina-Jimenez, Arjuna Sathiaseelan and Jon Crowcroft Computer Laboratory, University of Cambridge, UK Email: fi[email protected] Abstract—Recent trends show that deploying low cost devices deploy multiple instances of a given service opportunistically with lightweight virtualisation services is an attractive alternative to ensure that it complies with service requirements. The core for supporting the computational requirements at the network of PiCasso is the orchrestration engine that deploys services edge. Examples include inherently supporting the computational needs for local applications like smart homes and applications on the basis of the service specifications and the status of with stringent Quality of Service (QoS) requirements which are the resources of the hosting devices. Although PiCasso is still naturally hard to satisfy by traditional cloud infrastructures or under development, this paper offers insights into the building supporting multi-access edge computing requirements of network of service deployment platforms (its main contribution). We in the box type solutions. The implementation of such platform demonstrate that the effort involves the execution of practical demands precise knowledge of several key system parameters, including the load that a service can tolerate and the number experiments to yield results to identified the parameters that of service instances that a device can host. In this paper, we the orchrestration engine needs to take into account. introduce PiCasso, a platform for lightweight service orchestra- tion at the edges, and discuss the benchmarking results aimed II. RELATED WORK at identifying the critical parameters that PiCasso needs to take Several works [3]–[6] have explored the benefits of into consideration. lightweight service deployment through a deployment scheme I. INTRODUCTION similar to ours i.e., based on microservices (e.g., Docker Latest advances in lightweight OS virtualisation technolo- containers) running in low cost hardware substrate. The insight gies such as Docker and Unikernels allow service providers of these studies is that pushing services from centralised clouds to deploy and replicate their services on demand at the edge to the edge can potentially improve end users’ experience, of the network i.e. for supporting edge/fog computing. The in particular, for latency sensitive applications. However, the motivation for this approach is to improve the QoS (latency policies to deploy the service instances are not discussed. Our in particular), provide high level of security (provided by the work addresses this issue, by the use of an intelligent orches- strict isolation capabilities of technologies such as Unikernels) tration engine that decides when/where to deploy a service and provide privacy. An edge cloud can be built on the basis of instance to meet its requirements. A deployment policy that several hardware technologies (e.g., rack of servers), however takes into account startup latencies (instantiation) is discussed clouds built by clusters of single-board devices (e.g., Rasp- in [7]. According to this work a service is deployed when the berry Pi, Cubie boards etc) are drawing significant attention overall latency incurred is more than the life expectancy of for several reasons: these devices are cheap, consume low the application itself. A limitation of this solution is that it energy and (if optimised) have enough resources to support considers only the deployment cost and overlooks the status applications of practical interest such as those used in smart of the resources of underlying hardware. This issue is a major cities [1]. The aim of optimisation is to maximize the use of concern in our work. The authors in [8] point out that the running devices so that we can deliver the service with as less load inflicted on the hardware can significantly impact the as possible of them without compromising the necessary QoS network performance in centralised clouds. In our work, we requirements of applications. are concerned about similar issues but in resource constrained To overcome this challenge, the service provider can benefit clouds deployed at the edge. from flexibility of a lightweight service deployment infras- Related to PiCasso are container orchestration technologies tructure [2] that provides on-demand computing capacity and such as Docker Swarm, Mesos and Kubernetes that are used enables elastic service provisioning. For instance, a service to orchestrate and manage service instances in both cen- image can be migrated from the service repository and au- tralised and edge clouds [9]–[11]. Although they provide some tomatically instantiated on the edge device after receiving a automation and load balancing functions, they still rely on service request from the end-user. With this approach, the manual intervention in the administration and orchestration of service provider can opportunistically aggregate idle resources the services. In our work, we aim at an intelligent orchestration from widely distributed computational devices demonstrate the engine capable of performing the managerial tasks much like huge potential of pool resources to build highly scalable, low Docker Swarm and other tools but in an automated fashion cost and easily deployable platforms. that is supported by the monitoring of resources. This paper contributes to cover the research gap. It intro- Frameworks such as MuSIC [12] and MapCloud [13] pro- duces PiCasso – a platform for deploying QoS-sensitive ser- posed the dynamic service allocation algorithms to improve vices in edge clouds built of single board devices. PiCasso can QoS while considering factors like application delay, device power consumption, user cost and user mobility patterns. Manager where the orchestration engine uses it for deciding Similarly, PiCasso aims to develop intelligent service orches- on deployments. tration algorithms but we consider other factors such as the 2) Service Execution allows the edge node to instantiate current workload of underlying hardwares and characteristics containers automatically. It provides an API that allows edge of different container applications. nodes to receive Docker images and json obj with deployment description from the Service Orchestrator. The following json III. PICASSO object is a deployment descriptor to instantiate a httpd-busybox 1 PiCasso is a platform for service deployment at the edge web server. of the network. Its architecture is shown in Fig. 1. The current deploy_descriptor={ implementation is developed in Python. It assumes a network ’imageName’: ’hypriot/rpi-busybox- httpd:latest’, provider-centric model where the provider is in full control of ’port_host’: ’80’ the communication infrastructure. PiCasso has the following ’port_container’: ’8083’} components: Without loss of generality, further parameters can be added Service Orchestrator to the json object to enable the deployment of more sophisti- Service Providers cated services. Service Repo 3) Service Proxy is an intermediary that seeks the service Monitoring Orchestration instance for clients. A user’ s request is intercepted at the Manager Engine local edge node and forwarded to a running container that serves a requested service. If the service is not available in Edge Node#1 Monitoring Service the local edge node, the user’s request will be forwarded to Agent Execution Edge Node#2 the closet edge node hosting the requested service. To improve S S1 S2 3 Sn Monitoring Service the performance and reliability, a particular service can be de- Agent Execution Service Proxy ployed in several containers. These containers (replica) can be S S S S 1 2 3 n deployed either in the same edge node or multiple edge nodes Service Proxy across the network edge. The Service Proxy also includes load balancing function where it distributes the users’ requests 2 Fig. 1: PiCasso’s architecture. across multiple containers. We intend to use HAProxy to develop the service proxy and integrate it with the edge node. A. Edge node B. Service Orchestrator An edge node is a single board computer such as a Rasp- berry Pi (RPi) or any device with storage, CPU and software The service orchestrator is a central entity of PiCasso which facilities for hosting (upon request of the service orchestrator) is responsible for making an informative decision to deploy the the execution of microservices. Each edge node is provided services. The design of service orchestrator is shown in Fig. 2. with Monitoring Agent, Service Execution and Service Proxy 1) Orchestration Engine (OE) implements the logic for functionalities. deployment of instances of services to meet specific QoS 1) Monitoring Agent is responsible for measuring the current requirements. OE has access to an algorithm repository that status of resources and the current demand imposed on the can execute to make decisions on deployment of instances services. The monitored data is formatted as json objects. The of services. For instance, an edge node can rapidly become code below shows the actual data collected from an edge node, exhausted when a number of user requests are placed against a called \SEG 1". particular service at the same time. This can significantly result {"softResources":{"OS": "Linux"}, in large response time perceived by the end-users. To mitigate "hardResources": {"mem": "1 GB", "disk": "16 GB", "cpu": "A 1.2GHz quad-core ARMv8 CPU"}, this problem, the orchestration engine
Recommended publications
  • 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]
  • Openfog Reference Architecture for Fog Computing
    OpenFog Reference Architecture for Fog Computing Produced by the OpenFog Consortium Architecture Working Group www.OpenFogConsortium.org February 2017 1 OPFRA001.020817 © OpenFog Consortium. All rights reserved. Use of this Document Copyright © 2017 OpenFog Consortium. All rights reserved. Published in the USA. Published February 2017. This is an OpenFog Consortium document and is to be used in accordance with the terms and conditions set forth below. The information contained in this document is subject to change without notice. The information in this publication was developed under the OpenFog Consortium Intellectual Property Rights policy and is provided as is. OpenFog Consortium makes no representations or warranties of any kind with respect to the information in this publication, and specifically disclaims implied warranties of fitness for a particular purpose. This document contains content that is protected by copyright. Copying or distributing the content from this document without permission is prohibited. OpenFog Consortium and the OpenFog Consortium logo are registered trademarks of OpenFog Consortium in the United States and other countries. All other trademarks used herein are the property of their respective owners. Acknowledgements The OpenFog Reference Architecture is the product of the OpenFog Architecture Workgroup, co-chaired by Charles Byers (Cisco) and Robert Swanson (Intel). It represents the collaborative work of the global membership of the OpenFog Consortium. We wish to thank these organizations for contributing
    [Show full text]
  • Trinity Iot Product Catalogue
    IoT Devices TRINITY IOT PRODUCT CATALOGUE Teltonika Device Range 2021 TABLE OF CONTENTS 1 RUT950 27 TRB142 3 RUT955 29 TRB145 5 RUTX09 31 RUTX10 7 RUTX11 33 RUTX12 9 TRB141 35 RUTX08 11 RUT230 37 TRB255 13 RUT240 39 FMB920 15 RUT850 41 RUTXR1 17 RUT900 43 FM130 19 GH5200 45 BLUE SLIM ID 21 TRB245 47 BLUE COIN MAG 23 TSW100 49 BLUE COIN T 25 TRB140 PRODUCT SHEET / RUT950 ROUTER INTRODUCING RUT950 TRINITY APPROVED & SMART™ COMPATIBLE RUT950 is a highly reliable and secure LTE router for professional applications. Router delivers high performance, mission-critical cellular communication. RUT950 is equipped with connectivity redundancy through dual SIM failover. External antenna connectors make it possible to attach desired antennas and to easily find the best signal location. LTE LTE Cat4 Cat4 LTE Cat 4 with Dual SIM – significantly speeds up to 150 Mps reduce roaming costs WANLTE 4 LTEX failoverCat4 Cat4 Automatic switch to available 4x Ethernet ports backup connection with VLAN functionality LTE LTE Cat4 Cat4 Wireless Access Point Linux Powered with Hotspot functionality Simply order, and we’ll take care of the rest Source Import Test ICASA Management Onboarding 24/7 Platform Support www.trinity.co.za 1 PRODUCT SHEET / RUT950 ROUTER LAN Ethernet Ports WAN Ethernet Ports LTE antenna connectors Power socket WiFi antenna SIM card connectors slots Hardware Weight 256 g CPU Atheros Wasp, MIPS 74Kc, 550 MHz Memory 16 MBytes Flash, 128 MBytes DDR2 RAM Ethernet 4 x 10/100 Ethernet ports: 1 x WAN (configurable as LAN), 3 x LAN ports Power supply 9
    [Show full text]
  • Technical Proposal for One Day Workshop on Fog and Edge
    1 Technical Proposal for One Day Workshop on Fog and Edge Computing for Beyond IoT Services and Opportunities IEEE 7th World Forum on Internet of Things New Orleans, Louisiana, USA Workshop Title: Fog and Edge Computing for 6G Networks/IoT Services and Opportunities 1. Preamble As we evolve toward the Internet of Things (IoT), our 5G/6G and future mobile networks must support a much wider range of applications, including vehicular networking, automated man- ufacturing, smart cities, drones, smart grids, e-health, and the many emerging AI-enabled applications such as Virtual Reality (VR) and Augmented Reality (AR). The cloud computing plus communication pipe model is no longer adequate for supporting these emerging appli- cations. Connecting every device directly to the cloud can often be impractical due to factors such as limited resources on the devices, software and management complexity, limited net- work agility and cognition, and system scalability. In such scenarios, users will desire local services. Future mobile networks will also require computing capabilities inside or close to the radio access networks (RANs) to enable advanced networking capabilities, such as estab- lishing radio connections more timely and adjusting radio channel coding dynamically in re- sponse to changing user needs and communication environments, and allow user applica- tions to be hosted in the RANs that are closer to the users. These and the many other new requirements call for a new computing paradigm – fog/edge computing and networking. Fog/Edge envisions an open and standards-based horizontal ar- chitecture for distributing functions (from computing to storage to control and to networking functions) closer to users, not just to any specific type of network edge device but anywhere along the cloud-to-thing continuum that can best meet user requirements.
    [Show full text]
  • Fog Computing and the Internet of Things: a Review
    Review Fog Computing and the Internet of Things: A Review Hany F. Atlam 1,2,* ID , Robert J. Walters 1 and Gary B. Wills 1 1 Electronic and Computer Science Department, University of Southampton, Southampton SO17 1BJ, UK; [email protected] (R.J.W.); [email protected] (G.B.W.) 2 Computer Science and Engineering Department, Faculty of Electronic Engineering, Menoufia University, Menouf 32952, Egypt * Correspondence: [email protected]; Tel.: +44-074-2252-3772 Received: 4 March 2018; Accepted: 5 April 2018; Published: 8 April 2018 Abstract: With the rapid growth of Internet of Things (IoT) applications, the classic centralized cloud computing paradigm faces several challenges such as high latency, low capacity and network failure. To address these challenges, fog computing brings the cloud closer to IoT devices. The fog provides IoT data processing and storage locally at IoT devices instead of sending them to the cloud. In contrast to the cloud, the fog provides services with faster response and greater quality. Therefore, fog computing may be considered the best choice to enable the IoT to provide efficient and secure services for many IoT users. This paper presents the state-of-the-art of fog computing and its integration with the IoT by highlighting the benefits and implementation challenges. This review will also focus on the architecture of the fog and emerging IoT applications that will be improved by using the fog model. Finally, open issues and future research directions regarding fog computing and the IoT are discussed. Keywords: Internet of Things; cloud of things; fog computing; fog as a service; IoT with fog computing; cloud computing 1.
    [Show full text]
  • Edge Computing in the Context of Open Manufacturing
    Edge Computing in the Context of Open Manufacturing 01.07.2021 LEGAL DISCLAIMERS © 2021 Joint Development Foundation Projects, LLC, OMP Series and its contributors. All rights reserved. THESE MATERIALS ARE PROVIDED ”AS IS.” The parties expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non- infringement, fitness for a particular purpose, or title, related tothe materials. The entire risk as to implementing or otherwise using the materials is assumed by the implementer and user. IN NO EVENT WILL THE PARTIES BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS DELIVERABLE OR ITS GOVERNING AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER MEMBER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2 ACKNOWLEDGMENTS This document is a work product of the Open Manufacturing Platform – IoT Connectivity Working Group, chaired by Sebastian Buckel (BMW Group) and co-chaired by Dr. Veit Hammerstingl (BMW Group). AUTHORS Anhalt, Christopher, Dr. (Softing) Buckel, Sebastian (BMW Group) Hammerstingl, Veit, Dr. (BMW Group) Köpke, Alexander (Microsoft) Müller, Michael (Capgemini) Muth, Manfred (Red Hat) Ridl, Jethro (Reply) Rummel, Thomas (Softing) Weber Martins, Thiago, Dr. (SAP) FURTHER CONTRIBUTION BY Attrey, Kapil (Cognizant) Kramer, Michael (ZF) Krapp, Chiara (BMW Group) Krebs, Jeremy (Microsoft) McGrath, Daniel (Cognizant) Title Image by Possessed Photography from unsplash.com 3 Contents Contents 1 Introduction: The Importance of Edge Computing 5 2 Definition of Edge Computing 6 3 Reference Use Case 6 4 Views on Edge Computing 8 4.1 Infrastructural View .
    [Show full text]
  • All One Needs to Know About Fog Computing and Related Edge Computing ☆,☆☆ Paradigms: a Complete Survey
    Journal of Systems Architecture 98 (2019) 289–330 Contents lists available at ScienceDirect Journal of Systems Architecture journal homepage: www.elsevier.com/locate/sysarc All one needs to know about fog computing and related edge computing ☆,☆☆ paradigms: A complete survey Ashkan Yousefpour a,∗, Caleb Fung b, Tam Nguyen c, Krishna Kadiyala b, Fatemeh Jalali d, Amirreza Niakanlahiji e, Jian Kong b, Jason P. Jue b a University of California Berkeley, Berkeley, USA b University of Texas at Dallas, Richardson, USA c Georgia Institute of Technology, Atlanta, USA d IBM Research, Melbourne, Australia e University of North Carolina at Charlotte, Charlotte, USA a r t i c l e i n f o a b s t r a c t Keywords: With the Internet of Things (IoT) becoming part of our daily life and our environment, we expect rapid growth in Fog computing the number of connected devices. IoT is expected to connect billions of devices and humans to bring promising Edge computing advantages for us. With this growth, fog computing, along with its related edge computing paradigms, such as Cloud computing multi-access edge computing (MEC) and cloudlet, are seen as promising solutions for handling the large volume Internet of things (IoT) of security-critical and time-sensitive data that is being produced by the IoT. In this paper, we first provide a Cloudlet Mobile edge computing tutorial on fog computing and its related computing paradigms, including their similarities and differences. Next, Multi-access edge computing we provide a taxonomy of research topics in fog computing, and through a comprehensive survey, we summarize Mist computing and categorize the efforts on fog computing and its related computing paradigms.
    [Show full text]
  • C:\Andrzej\PDF\ABC Nagrywania P³yt CD\1 Strona.Cdr
    IDZ DO PRZYK£ADOWY ROZDZIA£ SPIS TREFCI Wielka encyklopedia komputerów KATALOG KSI¥¯EK Autor: Alan Freedman KATALOG ONLINE T³umaczenie: Micha³ Dadan, Pawe³ Gonera, Pawe³ Koronkiewicz, Rados³aw Meryk, Piotr Pilch ZAMÓW DRUKOWANY KATALOG ISBN: 83-7361-136-3 Tytu³ orygina³u: ComputerDesktop Encyclopedia Format: B5, stron: 1118 TWÓJ KOSZYK DODAJ DO KOSZYKA Wspó³czesna informatyka to nie tylko komputery i oprogramowanie. To setki technologii, narzêdzi i urz¹dzeñ umo¿liwiaj¹cych wykorzystywanie komputerów CENNIK I INFORMACJE w ró¿nych dziedzinach ¿ycia, jak: poligrafia, projektowanie, tworzenie aplikacji, sieci komputerowe, gry, kinowe efekty specjalne i wiele innych. Rozwój technologii ZAMÓW INFORMACJE komputerowych, trwaj¹cy stosunkowo krótko, wniós³ do naszego ¿ycia wiele nowych O NOWOFCIACH mo¿liwoYci. „Wielka encyklopedia komputerów” to kompletne kompendium wiedzy na temat ZAMÓW CENNIK wspó³czesnej informatyki. Jest lektur¹ obowi¹zkow¹ dla ka¿dego, kto chce rozumieæ dynamiczny rozwój elektroniki i technologii informatycznych. Opisuje wszystkie zagadnienia zwi¹zane ze wspó³czesn¹ informatyk¹; przedstawia zarówno jej historiê, CZYTELNIA jak i trendy rozwoju. Zawiera informacje o firmach, których produkty zrewolucjonizowa³y FRAGMENTY KSI¥¯EK ONLINE wspó³czesny Ywiat, oraz opisy technologii, sprzêtu i oprogramowania. Ka¿dy, niezale¿nie od stopnia zaawansowania swojej wiedzy, znajdzie w niej wyczerpuj¹ce wyjaYnienia interesuj¹cych go terminów z ró¿nych bran¿ dzisiejszej informatyki. • Komunikacja pomiêdzy systemami informatycznymi i sieci komputerowe • Grafika komputerowa i technologie multimedialne • Internet, WWW, poczta elektroniczna, grupy dyskusyjne • Komputery osobiste — PC i Macintosh • Komputery typu mainframe i stacje robocze • Tworzenie oprogramowania i systemów komputerowych • Poligrafia i reklama • Komputerowe wspomaganie projektowania • Wirusy komputerowe Wydawnictwo Helion JeYli szukasz ]ród³a informacji o technologiach informatycznych, chcesz poznaæ ul.
    [Show full text]
  • Linuxvilag-54.Pdf 4301KB 9 2012-05-28 10:24:50
    Beköszöntõ © Kiskapu Kft. Minden jog fenntartva Ahogy azt ígértük... össze, másrészt pedig lehetõséget is Megváltozunk. Ígérem. Na, nem úgy, biztosítunk egymás megismerésére. ahogy Bajor Imre ígérte tíz éve egy Az új „nyílt” szerkesztés jegyében kabaréban, hogy új életet kezd, de kialakítottunk tehát egy weboldalt mivel a piát szereti, ezért az új életé- ( linuxvilag.hu/szerzoknek), ahol ben is inni fog. Mi inkább azon tulaj- bárki jelentkezhet, aki szívesen írna donságainkat igyekszünk átmenteni, cikket, vagy elmondaná, hogy milyen melyeket olvasóink is a lap értékének cikket látna örömmel az újságban. tartanak. A cikkírók itt további anyagot is találnak a leadandó cikkekkel kap- Az elmúlt idõszakban folytatott piac- csolatban. kutatások és olvasói levelek alapján három fõbb változási cél rajzolódott Reményeink szerint a szeptemberi ki elõttünk. Olvasóink szerint: számtól már egy teljesen új arculattal indul, mindhárom célterületen változ- • A cikkek túl tömörek, nehezen va, olvasóink igényéhez jobban alkal- olvashatóak mazkodva. Mint mindig, most is örömmel várunk bármilyen véle- • Kevés a kezdõknek, próbálkozó ményt, ötletet, kritikát! kedvûeknek szóló cikk A „mostani generáció” utolsó két lap- • Több hazai vonatkozású, olvasmá- számához is kellemes olvasást kívánok! nyos cikkre van igény A tervek megvitatása közben még egy Szy György gondolat folyamatosan felvetõdött: fõszerkesztõ valahogy jobban be szeretnénk vonni a hazai szakembereket a Linuxvilág szerkesztésébe. Ezzel egyrészt egy érdekesebb, színesebb anyag állhat Hír-lelõ Kütyüimádóknak Táblájuk még nem volt Titkos biztonság A Nokia újfajta, internet tábla névre Az IBM PC-s üzletágát nemrég átve- Minden adatra kiterjedõ, hardveres keresztelt mobil eszközt mutatott be. võ Lenovo bemutatta az elsõ ThinkPad titkosítást végzõ, hordozható számító- A teljes nevén Nokia 770 Internet Tablet tábla PC-t.
    [Show full text]
  • IOT-EDGE-SERVER BASED EMBEDDED SYSTEM for WIDE-RANGE HABITATS by Archit Gajjar, B.Tech. THESIS Presented to the Faculty of the U
    IOT-EDGE-SERVER BASED EMBEDDED SYSTEM FOR WIDE-RANGE HABITATS by Archit Gajjar, B.Tech. THESIS Presented to the Faculty of The University of Houston-Clear Lake In Partial Fulfillment Of the Requirements For the Degree MASTER OF SCIENCE in Computer Engineering THE UNIVERSITY OF HOUSTON-CLEAR LAKE MAY, 2019 IOT-EDGE-SERVER BASED EMBEDDED SYSTEM FOR WIDE-RANGE HABITATS by Archit Gajjar APPROVED BY Xiaokun Yang, PhD, Chair Hakduran Koc, PhD, Committee Member Ishaq Unwala, PhD, Committee Member APPROVED/RECEIVED BY THE COLLEGE OF SCIENCE AND ENGINEERING: Said Bettayeb, PhD, Associate Dean Ju H. Kim, PhD, Dean Dedication I would like to dedicate this thesis to my parents, family members, roommates, and professors. I would never have made it here without all of you. Acknowledgments First and foremost, I am grateful to my advisor, Dr. Xiaokun Yang, for being friendly, caring, supportive, and help in numerous ways. Without his support, I could not have done what I was able to do. He was very generous in sharing his experiences on electrical and computer engineering, academic life and beyond. He is not only my adviser but also, a friend inspiring me for the rest of my life. Next, I would like to thank the members of my committee, Dr. Hakduran Koc and Dr. Ishaq Unwala for their support and suggestions in improving the quality of this dissertation. It is truly honored to have such great fantastic and knowledgeable professors serving as my committee members. I would also like to thank all the lab mates and members at the Integrated Cir- cut (IC) and Internet-of-Things (IoT) - IICOT Laboratory for creating an amazing working environment, and thank my friend, Yunxiang Zhang, for his assistance on work related to my research.
    [Show full text]
  • The Drivers and Benefits of Edge Computing
    The Drivers and Benefits of Edge Computing White Paper 226 Revision 0 by Steven Carlini Executive summary Internet use is trending towards bandwidth-intensive content and an increasing number of attached “things”. At the same time, mobile telecom networks and data networks are converging into a cloud computing architecture. To support needs today and tomorrow, computing power and storage is being inserted out on the network edge in order to lower data transport time and increase availability. Edge computing brings bandwidth-intensive content and latency-sensitive applications closer to the user or data source. This white paper explains the drivers of edge computing and explores the various types of edge computing available. RATE THIS PAPER by Schneider Electric White Papers are now part of the Schneider Electric white paper library produced by Schneider Electric’s Data Center Science Center [email protected] The Drivers and Benefits of Edge Computing Edge computing places data acquisition and control functions, storage of high bandwidth Edge content, and applications closer to the end user. It is inserted into a logical end point of a computing network (Internet or private network), as part of a larger cloud computing architecture. defined On-premise application Applications Service Edge Computing Figure 1 Applications Database Service IoT Basic diagram of cloud Applications Service computing with edge aggregation and control Edge Computing devices Cloud Applications Service Edge Computing High bandwidth content There are three primary applications of Edge Computing we will discuss in this white paper. 1. A tool to gather massive information from local “things” as an aggregation and control point.
    [Show full text]
  • Edge-To-Business Value Chain Delivery Via Elastic Telemetry of Cyber-Physical Systems
    Edge-to-Business Value Chain Delivery via Elastic Telemetry of Cyber-Physical Systems DISSERTATION zur Erlangung des akademischen Grades Doktor der Technischen Wissenschaften eingereicht von Soheil Qanbari Matrikelnummer 1129801 an der Fakultät für Informatik der Technischen Universität Wien Betreuung: Univ.Prof. Dr. Schahram Dustdar Diese Dissertation haben begutachtet: Prof. Dr. Schahram Dustdar Prof. Dr. Frank Leymann Wien, 2. Dezember 2015 Soheil Qanbari Technische Universität Wien A-1040 Wien Karlsplatz 13 Tel. +43-1-58801-0 www.tuwien.ac.at Edge-to-Business Value Chain Delivery via Elastic Telemetry of Cyber-Physical Systems DISSERTATION submitted in partial fulfillment of the requirements for the degree of Doktor der Technischen Wissenschaften by Soheil Qanbari Registration Number 1129801 to the Faculty of Informatics at the Vienna University of Technology Advisor: Univ.Prof. Dr. Schahram Dustdar The dissertation has been reviewed by: Prof. Dr. Schahram Dustdar Prof. Dr. Frank Leymann Vienna, 2nd December, 2015 Soheil Qanbari Technische Universität Wien A-1040 Wien Karlsplatz 13 Tel. +43-1-58801-0 www.tuwien.ac.at Erklärung zur Verfassung der Arbeit Soheil Qanbari Schwemmgasse 2/3/55A, 1020 Wien, Austria Hiermit erkläre ich, dass ich diese Arbeit selbständig verfasst habe, dass ich die verwen- deten Quellen und Hilfsmittel vollständig angegeben habe und dass ich die Stellen der Arbeit – einschließlich Tabellen, Karten und Abbildungen –, die anderen Werken oder dem Internet im Wortlaut oder dem Sinn nach entnommen sind, auf jeden Fall unter Angabe der Quelle als Entlehnung kenntlich gemacht habe. Wien, 2. Dezember 2015 Soheil Qanbari v Danksagung “Betrachte den Menschen als ein Bergwerk, reich an Edelsteinen von unschätzbarem Wert.
    [Show full text]