A Proposal for a Cloud-Based Microservice Architecture for the Skolrutiner System

Total Page:16

File Type:pdf, Size:1020Kb

A Proposal for a Cloud-Based Microservice Architecture for the Skolrutiner System IT 20 052 Examensarbete 15 hp Augusti 2020 A proposal for a cloud-based microservice architecture for the Skolrutiner system Nhat Minh Pham Institutionen för informationsteknologi Department of Information Technology Abstract A proposal for a cloud-based microservice architecture for the Skolrutiner system Nhat Minh Pham Teknisk- naturvetenskaplig fakultet UTH-enheten Skolrutiner, a fast-moving startup company, has a great idea of a platform for handling documents. However, they do not have a scalable Besöksadress: and modular system architecture since all the current services are Ångströmlaboratoriet Lägerhyddsvägen 1 centralized and running on a single virtual machine. The main purpose Hus 4, Plan 0 of this thesis is to study and design a cloud-based microservice system for the platform of the company. This new microservice Postadress: approach, with the help of many modern features of cloud computing, Box 536 751 21 Uppsala is expected to resolve the major issues of the current system. The proposed architecture might be costly and challenging to implement, Telefon: but it could help the company to have a general knowledge about cloud 018 – 471 30 03 computing, microservices, and how to apply these technologies to the Telefax: expanding business. The re-implementation of the Skolrutiner system 018 – 471 30 00 based on the given architecture is out of the scope of this thesis work. Hemsida: http://www.teknat.uu.se/student Handledare: Johannes Lundström Ämnesgranskare: Karl Marklund Examinator: Johannes Borgström IT 20 052 Tryckt av: Reprocentralen ITC Contents 1 Introduction 1 1.1 Motivation . .1 1.2 Contribution . .1 1.3 Overview . .2 2 Cloud computing 2 2.1 Definitions . .2 2.2 Service models . .3 2.3 Deployment models . .5 2.4 Characteristics . .5 3 Microservices 6 3.1 Monolithic architecture . .6 3.2 Microservices . .8 3.3 Key benefits . .9 3.4 Communication mechanisms . 10 3.5 Inter-service communication . 12 3.6 Drawbacks . 13 4 Current system design 13 4.1 Current system design . 13 4.2 About the Skolrutiner application . 14 4.3 Current design . 14 5 Proposal of the new design 16 5.1 Requirements for the new design . 16 5.2 The new design . 16 5.2.1 Overall architecture . 17 5.2.2 API gateway and service design . 18 5.2.3 Authentication and authorization in the system . 23 5.2.4 File uploading in the new design . 25 5.3 Evaluation . 26 6 Conclusion 27 6.1 Contribution . 28 6.2 Future work . 28 1 Introduction This section will give you an overview of what motivates me to write the thesis, what this thesis contributes and a summary of the work that each section will cover. 1.1 Motivation While the term \cloud" might seem quite abstract, the benefits of cloud computing are very tangible [4]. Since the cloud has gained popularity in the computing world, there is no doubt that moving to the cloud nowadays is a natural evolution. More and more businesses are making the switch by shifting their applications from self-hosted servers into the cloud, and so is my client company, Skolrutiner. By cloud, we mean any computing environment in which computing, networking, and storage resources can be provisioned and released elastically in an on-demand, self-service manner [21]. With all the great advantages and profits that cloud computing brings about, sometimes it is the only choice for modern companies with large and complex systems. The term "microservice architecture", which describes a particular way of designing an application system as a collection of independently deploy- able services [11], is also a very hot topic in recent years. Many development teams take it as the top-tier approach to traditional monolithic architecture. Most of them are doing the shifting work from their code-heavy monoliths to the smaller, self-contained microservices. However, like any architectural style, microservices comes with both benefits and costs, which you should understand in depth when designing any microservice system. The goal of this thesis project is to design a microservice system based on cloud computing, which could meet the requirements from the company Skolrutiner of a system having high availability, flexible scalability and easy of executing on a cloud platform [19]. The proposed architecture could be useful for the company, Skolrutiner, to help them to have a better vision of how to apply cloud computing and microservices to their specific context. 1.2 Contribution The focused contributions of this thesis are to: • provide a comprehensive definition of cloud computing, its character- istics and advantages over maintaining physical infrastructure • compare microservices with the traditional monolithic architecture and discuss the advantages and drawbacks of implementing a microservice system over a monolithic one 1 • provide the client, Skolrutiner, with a comprehensive description of their curren system architecture, discuss the disadvantages of the cur- rent design and the company's requirements for the design of the new system • propose a new cloud-based microservice design for the Skolrutiner sys- tem, explain and evaluate it. 1.3 Overview The thesis is divided into sections in a way that I hope will make it easier to read from beginning to end. Here is an overview of what would be covered: • Section 2: Background provides background theory of cloud com- puting and microservices. • Section 3: Architecture introduces the company's current system, its drawbacks, propose new design for the company and evaluates the new design. • Section 4: Conclusion summarizes the thesis work and discusses potential future work. 2 Cloud computing This section brings up basic knowledge about cloud computing, its charac- teristics, service models and deployment models. 2.1 Definitions At the early stage of the internet era, physical servers where the only so- lution for web infrastructure of every company. However, things change and now, cloud computing underpins a huge number of services. This in- cludes consumer services like Gmail or the cloud back-up of the photos on your smartphone [14]. Cloud computing, in simple terms, is the delivery of computing services over the internet. According to the National Institute of Standards and Technology (NIST) in the United States of America, Cloud computing is "a model for enabling ubiquitous, convenient, on-demand network access to a shared pool of con- figurable computing resources (e.g., networks, servers, storage, applications, and services) that can be rapidly provisioned and released with minimal management effort or service provider interaction" [17]. This cloud model is composed of five essential characteristics, three service models, and four deployment models [17]. 2 2.2 Service models The service models of cloud computing are categorized into three basic mod- els which are built on top of one another: Software (application) as a Ser- vice (SaaS), Platform as a Service (PaaS) and Infrastructure as a Service (IaaS), as shown in figure 1. Understanding these models and the differ- ences between them could enable a company like the client - Skolrutiner to accomplish business goals and effectively support business changes. Figure 1: Service models in cloud computing Software as a Service (SaaS): SaaS provides the capability for users to connect to and use applications running on a cloud infrastructure. All the setup of the underlying infrastructure, platform, application software and data is handled by the service provider, which is responsible for managing hardware and software, ensuring the availability and security of the app as well as its data. Tenants can access their applications through a program interface, or commonly through a web browser. Some example of SaaS products might be web-based email services (Gmail, Outlook, ...), online office services (Office365, Google Docs, ...) for personal use or for organisation use like MailChimp, Twilio, Elastic stack, etc. 3 Platform as a Service (PaaS): PaaS provides to the consumer a complete development and deployment environment in the cloud, to deliver everything from simple cloud-based applications to sophisticated, cloud- enabled enterprise applications [16] using programming languages, libraries, frameworks and tools supported by the provider. The consumers do not need to manage the underlying infrastructure including servers, operating system, network or storage, but has control over the deployed applications and possibly configuration settings for the application-hosting environment [17]. PaaS is often used by organisations for some scenarios such as devel- opment framework, analytics, business intelligence, etc. Infrastructure as a Service (IaaS): IaaS is the lowest level of the three cloud service models, providing the instant computing infrastructure, provisioned and managed over the internet. IaaS offers the capability to scale up and down quickly and pay- as-you-go payment. With infrastructure being available in the cloud, you can avoid the expense and complexity of buying and managing your own physical servers and other data-center infrastructure [15]. In addition to the three main models above, serverless computing is recently a popular service model supported by many service providers. The major difference seems to be that Serverless computing makes applications scale automatically while with PaaS, applications must be configured to scale automatically. To be more precise, the figure 2 will illuminate the similarities and differences between serverless computing. Figure 2: Similarities and differences between Platform-as-a-Service and Serverless computing 4 2.3 Deployment models There are different ways to deploy cloud resources. The options for deploy- ment are public, private and hybrid cloud. Public cloud: Public cloud is the most popular way of deploying cloud computing. The cloud resource is provisioned for open use by the general public. It is owned, managed and operated by a third-party cloud service provider and delivered over the internet. Using the public cloud, different cloud tenants share the same hardware, network and storage. Web mail services, office applications, online storage, development and testing envi- ronments are usually deployed on a public cloud.
Recommended publications
  • Software Architecture: Past, Present, Future
    Software Architecture: Past, Present, Future Wilhelm Hasselbring 1 Introduction For large, complex software systems, the design of the overall system structure (the software architecture) is an essential challenge. The architecture of a software system defines that system in terms of components and connections among those components [55, 58]. It is not the design of that system which is more detailed. The architecture shows the correspondence between the requirements and the constructed system, thereby providing some rationale for the design decisions. This level of design has been addressed in a number of ways including informal diagrams and descriptive terms, module interconnection languages, and frameworks for systems that serve the needs of specific application domains. An architecture embodies decisions about quality properties. It represents the earliest opportunity for evaluating those decisions. Furthermore, reusability of components and services depends on how strongly coupled they are with other components in the system architecture. Performance, for instance, depends largely upon the complexity of the required coordination, in particular when the components are distributed via some network. The architecture is usually the first artifact to be examined when a programmer (particularly a maintenance programmer) unfamiliar with the system begins to work on it. Software architecture is often the first design artifact that represents decisions on how requirements of all types are to be achieved. As the manifestation of early design decisions, it represents design decisions that are hardest to change and hence most deserving of careful consideration. W. Hasselbring () Kiel University, Kiel, Germany e-mail: [email protected] © The Author(s) 2018 169 V.
    [Show full text]
  • An Experimental Study on Microservices Based Edge Computing Platforms Qian Qu, Ronghua Xu, Seyed Yahya Nikouei, Yu Chen Dept
    1 An Experimental Study on Microservices based Edge Computing Platforms Qian Qu, Ronghua Xu, Seyed Yahya Nikouei, Yu Chen Dept. of Electrical & Computer Engineering, Binghamton University, SUNY, Binghamton, NY 13902, USA fqqu2, rxu22, snikoue1, [email protected] Abstract—The rapid technological advances in the Internet of development and easy deployment among multiple service Things (IoT) allows the blueprint of Smart Cities to become providers. feasible by integrating heterogeneous cloud/fog/edge computing Because of many attractive features, such as good scalabil- paradigms to collaboratively provide variant smart services in our cities and communities. Thanks to attractive features like fine ity, fine granularity, loose coupling, continuous development, granularity and loose coupling, the microservices architecture and low maintenance cost, the microservices architecture has has been proposed to provide scalable and extensible services in emerged and gained a lot of interests both in industry and large scale distributed IoT systems. Recent studies have evaluated academic community [17], [21]. Compared to traditional SOAs and analyzed the performance interference between microser- in which the system is a monolithic unit, the microservices vices based on scenarios on the cloud computing environment. However, they are not holistic for IoT applications given the architecture divides an monolithic application into multiple restriction of the edge device like computation consumption and atomic microservices that run independently on distributed network capacity. This paper investigates multiple microservice computing platforms. Each microservice performs one specific deployment policies on edge computing platform. The microser- sub-task or service, which requires less computation resource vices are developed as docker containers, and comprehensive ex- and reduces the communication overhead.
    [Show full text]
  • Comparing Service- Based Architectures
    Comparing Service- based Architectures @neal4d nealford.com 1 agenda Micro Service-oriented Service-based 2 Service-oriented Architecture 3 origins: hubs System B System A System C 4 origins: hubs System B System A System C System D (ftp only) 5 origins: hubs System E (http only) System B System A System C System D (ftp only) 6 origins: hubs System E (http only) System B System A System C System D (ftp only) 7 origins: hubs System E (http only) System B Integration System A Hub System C System D (ftp only) 8 origins: hubs System E (http only) System B Integration System A Hub System C System D (ftp only) 9 origins: hubs System E (http only) System B Integration System A Hub System C System D (ftp only) 10 origins: hubs looks great, but what about single point of failure and performance bottleneck considerations? 11 orchestration hub intelligent hub service oriented architecture / enterprise service bus pattern 12 service-oriented architecture abstraction service taxonomy shared resources middleware interoperability 13 service-oriented architecture business services BS BS BS BS BS BS message bus process choreographer service orchestrator enterprise services ES ES ES ES ES ES application services AS infrastructure services IS 14 service-oriented architecture business services BS BS BS BS BS BS messageabstract bus enterprise-level coarse-grained process choreographer owned and defined by business users data represented as WSDL, BPEL, XML, etc. service orchestrator no implementation - only name, input, and output enterpriseAre we services
    [Show full text]
  • Case Study on Building Data- Centric Microservices
    Case Study on Building Data- Centric Microservices Part I - Getting Started May 26, 2020 | Version 1.0 Copyright © 2020, Oracle and/or its affiliates Public DISCLAIMER This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your access to and use of this confidential material is subject to the terms and conditions of your Oracle software license and service agreement, which has been executed and with which you agree to comply. This document and information contained herein may not be disclosed, copied, reproduced or distributed to anyone outside Oracle without prior written consent of Oracle. This document is not part of your license agreement nor can it be incorporated into any contractual agreement with Oracle or its subsidiaries or affiliates. This document is for informational purposes only and is intended solely to assist you in planning for the implementation and upgrade of the product features described. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described in this document remains at the sole discretion of Oracle. Due to the nature of the product architecture, it may not be possible to safely include all features described in this document without risking significant destabilization of the code. TABLE OF CONTENTS DISCLAIMER INTRODUCTION ARCHITECTURE OVERVIEW Before You Begin Our Canonical Application
    [Show full text]
  • Evaluating Service-Oriented and Microservice Architecture Patterns to Deploy Ehealth Applications in Cloud Computing Environment
    applied sciences Article Evaluating Service-Oriented and Microservice Architecture Patterns to Deploy eHealth Applications in Cloud Computing Environment Huriviades Calderón-Gómez 1,2 , Luis Mendoza-Pittí 1,2 , Miguel Vargas-Lombardo 2,* , José Manuel Gómez-Pulido 1,3 , Diego Rodríguez-Puyol 3,4,5, Gloria Sención 6 and María-Luz Polo-Luque 3,7 1 Department of Computer Science, University of Alcalá, 28805 Alcalá de Henares, Spain; [email protected] (H.C.-G.); [email protected] (L.M.-P.); [email protected] (J.M.G.-P.) 2 e-Health and Supercomputing Research Group (GISES), Technological University of Panama, 0819-07289 Panama City, Panama 3 Department of Medicine and Medical Specialties, Ramón y Cajal Institute for Health Research (IRYCIS), 28034 Madrid, Spain; [email protected] (D.R.-P.); [email protected] (M.-L.P.-L.) 4 Foundation for Biomedical Research, Hospital Universitario Príncipe de Asturias, 28805 Alcalá de Henares, Spain 5 Department of Medicine and Medical Specialties, University of Alcalá, 28805 Alcalá de Henares, Spain 6 School of Medicine Autonomous, University of Santo Domingo, Santo Domingo 10105, Dominican Republic; [email protected] 7 Department of Nursing and Physiotherapy, University of Alcalá, 28801 Alcalá de Henares, Spain * Correspondence: [email protected] Citation: Calderón-Gómez, H.; Mendoza-Pittí, L.; Vargas-Lombardo, Abstract: This article proposes a new framework for a Cloud-based eHealth platform concept focused M.; Gómez-Pulido, J.M.; on Cloud computing environments, since current and emerging approaches using digital clinical Rodríguez-Puyol, D.; Sención, G.; history increasingly demonstrate their potential in maintaining the quality of the benefits in medical Polo-Luque, M.-L.
    [Show full text]
  • From Component-Based Architectures to Microservices: a 25-Years-Long Journey in Designing and Realizing Service-Based Systems
    From Component-based Architectures to Microservices: A 25-years-long Journey in Designing and Realizing Service-based Systems Giuseppe De Giacomo[0000−0001−9680−7658], Maurizio Lenzerini[0000−0003−2875−6187], Francesco Leotta[0000−0001−9216−8502], and Massimo Mecella[0000−0002−9730−8882] Sapienza Universit`adi Roma Dipartimento di Ingegneria Informatica Automatica e Gestionale fdegiacomo,lenzerini,leotta,[email protected] Abstract. Distributed information systems and applications are gen- erally described in terms of components and interfaces among them. How these component-based architectures have been designed and im- plemented evolved over the years, giving rise to the so-called paradigm of Service-Oriented Computing (SOC). In this chapter, we will follow a 25-years-long journey on how design methodologies and supporting technologies influenced one each other, and we discuss how already back in the late 90s the ancestors of the SOC paradigm were there, already paving the way for the technological evolution recently leading to mi- croservice architectures and serverless computing. Keywords: components · SOC · middleware technologies · microser- vices · design methodologies 1 Introduction Divide et impera1 describes an approach, relevant to many fields, where, to solve a problem, it is required or advantageous to break or divide what opposes the solution. As an example, in computer science and engineering, it is applied at the level of standalone programs, by organizing codes in functions, classes and libraries, but it is also at the basis of how complex business processes, spanning several departments/offices of the same organization and/or different organizations, are implemented by making different parties collaborating on a computer network [1].
    [Show full text]
  • Gremlin: Systematic Resilience Testing of Microservices
    Gremlin: Systematic Resilience Testing of Microservices Victor Heorhiadi Shriram Rajagopalan Hani Jamjoom Michael K. Reiter Vyas Sekar UNC Chapel Hill IBM T. J. Watson Research IBM T. J. Watson Research UNC Chapel Hill Carnegie Mellon University [email protected] [email protected] [email protected] [email protected] [email protected] Abstract—Modern Internet applications are being disaggre- Company Downtime Postmortem findings gated into a microservice-based architecture, with services Parse.ly, 13 hours Cascading failure due to message bus being updated and deployed hundreds of times a day. The 2015 [25] overload accelerated software life cycle and heterogeneity of language CircleCI, 17 hours Cascading failure due to database over- runtimes in a single application necessitates a new approach 2015 [19] load BBC, 48 hours Cascading failure due to database over- for testing the resiliency of these applications in production in- 2014 [18] load frastructures. We present Gremlin, a framework for systemat- Spotify, Several Cascading failure due to degradation of a ically testing the failure-handling capabilities of microservices. 2013 [26] hours core internal service Gremlin is based on the observation that microservices are Twilio, 10 hours Database failure caused billing service to loosely coupled and thus rely on standard message-exchange 2013 [28] repeatedly bill customers patterns over the network. Gremlin allows the operator to TABLE 1: A subset of recent outages experienced by popular, easily design tests and executes them by manipulating inter- highly available Internet services. Postmortem reports revealed service messages at the network layer. We show how to use missing or faulty failure-handling logic.
    [Show full text]
  • Testing Microservice Applications
    Dmitrii Savchenko TESTING MICROSERVICE APPLICATIONS ACTA UNIVERSITATIS LAPPEENRANTAENSIS 868 Dmitrii Savchenko TESTING MICROSERVICE APPLICATIONS Thesis for the degree of Doctor of Science (Technology) to be presented with due permission for public examination and criticism in the Auditorium of the Student Union House at Lappeenranta-Lahti University of Technology LUT, Lappeenranta, Finland on the 18th of October, 2019, at noon. The thesis was written under a joint doctorate agreement between Lappeenranta-Lahti University of Technology LUT, Finland and South Ural State University, Russia and jointly supervised by supervisors from both universities. Acta Universitatis Lappeenrantaensis 868 Supervisors Adjunct Professor Ossi Taipale LUT School of Engineering Science Lappeenranta-Lahti University of Technology LUT Finland Associate Professor Jussi Kasurinen LUT School of Engineering Science Lappeenranta-Lahti University of Technology LUT Finland Associate Professor Gleb Radchenko School of Electrical Engineering and Computer Science Department of System Programming Federal State Autonomous Educational Institution of High Education South Ural State University (National Research University) Russian Federation Reviewers Professor Timo Mantere Dept. of Electrical Engineering and Automation University of Vaasa Finland Professor Markku Tukiainen School of Computing University of Eastern Finland Joensuu Finland Opponent Professor Ita Richardson Lero - The Irish Software Research Centre University of Limerick Ireland ISBN 978-952-335-414-2 ISBN 978-952-335-415-9 (PDF) ISSN 1456-4491 ISSN-L 1456-4491 Lappeenranta-Lahti University of Technology LUT LUT University Press 2019 Abstract Dmitrii Savchenko Testing microservice applications Lappeenranta, 2019 59 p. Acta Universitatis Lappeenrantaensis 868 Diss. Lappeenranta-Lahti University of Technology LUT ISBN 978-952-335-414-2, ISBN 978-952-335-415-9 (PDF), ISSN-L 1456-4491, ISSN 1456- 4491 Software maintenance costs are growing from year to year because of the growing soft- ware complexity.
    [Show full text]
  • AN INSIGHT INTO MICROSERVICES TESTING STRATEGIES Arvind Sundar, Technical Test Lead
    WHITE PAPER AN INSIGHT INTO MICROSERVICES TESTING STRATEGIES Arvind Sundar, Technical Test Lead Abstract The ever-changing business needs of the industry necessitate that technologies adopt and align themselves to meet demands and, in the process of doing so, give rise to newer techniques and fundamental methods of architecture in software design. In the context of software design, the evolution of “microservices” is the result of such an activity and its impact percolates down to the teams working on building and testing software in the newer schemes of architecture. This white paper illustrates the challenges that the testing world has to deal with and the effective strategies that can be envisaged to overcome them while testing for applications designed with a microservices architecture. The paper can serve as a guide to anyone who wants an insight into microservices and would like to know more about testing methodologies that can be developed and successfully applied while working within such a landscape. Introduction Microservices attempt to streamline the key; as is a good knowledge of how to go software architecture of an application about testing at each stage of the test life by breaking it down into smaller units cycle. More often than not, the traditional surrounding the business needs of methods of testing have proven to be the application. The benefits that are ineffective in an agile world where changes expected out of doing so include creating are dynamic. The inclusion of independent systems that are more resilient, easily micro-units that have to be thoroughly scalable, flexible, and can be quickly and tested before their integration into the independently developed by individual larger application only increases the sets of smaller teams.
    [Show full text]
  • AWS Prescriptive Guidance Enabling Data Persistence in Microservices AWS Prescriptive Guidance Enabling Data Persistence in Microservices
    AWS Prescriptive Guidance Enabling data persistence in microservices AWS Prescriptive Guidance Enabling data persistence in microservices AWS Prescriptive Guidance: Enabling data persistence in microservices Copyright © Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection with any product or service that is not Amazon's, in any manner that is likely to cause confusion among customers, or in any manner that disparages or discredits Amazon. All other trademarks not owned by Amazon are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by Amazon. AWS Prescriptive Guidance Enabling data persistence in microservices Table of Contents Introduction ...................................................................................................................................... 1 Targeted business outcomes ........................................................................................................ 2 Patterns for enabling data persistence .................................................................................................. 3 Database-per-service pattern ....................................................................................................... 3 API composition pattern ............................................................................................................. 5 CQRS pattern ...........................................................................................................................
    [Show full text]
  • Finding Flexibility with Microservices, Containers, and Runtimes Featuring Research from Forrester How to Capture the Benefits of Microservice Design 2
    Finding Flexibility with Microservices, Containers, and Runtimes FEATURING RESEARCH FROM FORRESTER How To Capture The Benefits Of Microservice Design 2 Finding Flexibility with Microservices, Containers, and Runtimes FINDING FLEXIBILITY WITH MICROSERVICES, CONTAINERS, AND RUNTIMES An introduction to the Forrester analyst report: How to Capture the Benefits of Microservice Design There has always been a relationship between an application and the platform and services which run it. For a long time, that relationship was very tight and encompassed a lot of areas related to the IN THIS application design, from the language the application could be written in to administrative behaviors DOCUMENT like monitoring and logging, even things like transaction management, frontend UI development, or integration methods. 1 Finding Flexibility with Microservices, In a sense, the application platform was just another design consideration for the application. A few Containers, and years ago, as significant changes in platform technology like cloud, containers, and virtual machines Runtimes started rolling out, the primary emphasis for CTOs and application architects was on how to move to those platforms. The platform choice was a major part of the application. The focus was — one way or 5 How To Capture The Benefits Of another — getting into “the cloud.” Microservice Design There’s been a shift in customers’ priorities over the last few years. A 2016 survey of IT professionals by Red Hat found that fewer than 25% of respondents were actually focusing on moving applications 22 About redhat. to the cloud — the majority were focused on writing new applications or maintaining existing ones. The focus is moving from platform to the application itself.
    [Show full text]
  • Microsurfaces: the Role of Apis in a Microservice Architecture
    Microsurfaces: The Role of APIs in a Microservice Architecture 1 1 Microservices Adoption Continues to Grow in All Industries According to a recent survey, 86 percent of respondents expect microservice architecture to be their default approach to building software systems within five years. There are many reasons for moving to a microservice architecture, from increasing delivery speed to improving evolvability and scalability. However, there are also potential pitfalls as complexity shifts from place to place in the system and the associated organizational landscape. As a result, organizations moving to a microservice architecture need tools and techniques to help them deal with these new challenges. When it comes to microservice technologies, people have called containers the “gateway drug to microservices,” and containers can certainly ease deployment and operability. However, API-based communication may be even more vital to delivering value in all aspects of a microservice architecture. This ebook explores the varied roles that APIs play in the microservices landscape. 2 APIs vs. Microservices Before analyzing the value of APIs in a microservice architecture, it helps to clear up It is important to remember any confusion between the definitions of APIs and microservices. When someone says they are “building an API,” they are likely developing a microservice with an API that the API is just the interface, front door. Conversely, there are some who refer to API facades for legacy services as and even more important to microservices. Both examples blur the lines between the terms. remember that the service What is an API? What is a microservice? consumer views the API as a • An application interface exposedon a • An independently deployable contract, and they don’t care network application component what’s behind it as long as they • Can use many styles (e.g., REST), • Often self-contained (e.g., interface, get what they need.
    [Show full text]