SlideShare a Scribd company logo
1 of 39
Serverless Architectures
https://martinfowler.com/articles/serverless.html
Serverless
• Serverless computing, or more simply Serverless, is a hot topic in the
software architecture world.
• The “Big Three” cloud vendors—Amazon, Google, and Microsoft—are
heavily invested in Serverless
Serverless Architectures
• Serverless architectures are application designs that incorporate
third-party “Backend as a Service” (BaaS) services, and/or that include
custom code run in managed, ephemeral containers on a “Functions
as a Service” (FaaS) platform.
• By using these ideas, and related ones like single-page applications,
such architectures remove much of the need for a traditional always-
on server component.
• Serverless architectures may benefit from significantly reduced
operational cost, complexity, and engineering lead time, at a cost of
increased reliance on vendor dependencies and comparatively
immature supporting services.
What is Serverless?
• there’s no one clear view of what Serverless is.
• For starters, it encompasses two different but overlapping areas:
1. Serverless was first used to describe applications that significantly
or fully incorporate third-party, cloud-hosted applications and
services, to manage server-side logic and state.
• “rich client” applications—think single-page web apps, or mobile apps—that
use the vast ecosystem of cloud-accessible databases (e.g., Firebase),
authentication services (e.g., Auth0, AWS Cognito)
• These types of services have been previously described as “(Mobile) Backend
as a Service", and I use "BaaS"
What is Serverless?
2. Serverless can also mean applications where server-side logic is still
written by the application developer, but, unlike traditional
architectures, it’s run in stateless compute containers that are
event-triggered, ephemeral (may only last for one invocation), and
fully managed by a third party.
• One way to think of this is “Functions as a Service” or "FaaS".
• AWS Lambda is one of the most popular implementations of a Functions-as-
a-Service platform at present. Besides Azure Functions, Google Cloud
Functions etc.
Example
• UI-driven applications
• Let’s think about a traditional three-tier client-oriented system with
server-side logic. A good example is a typical ecommerce- (pet store).
• Traditionally, the architecture will look something like the diagram
below. Let’s say it’s implemented in Java or Javascript on the server
side, with an HTML + Javascript component as the client:
Example
• With this architecture the client can be relatively unintelligent, with
much of the logic in the system—authentication, page navigation,
searching, transactions—implemented by the server application.
Example
• With a Serverless architecture this may end up looking more like this:
Example
• here we see a number of significant changes:
a.We’ve deleted the authentication logic in the original
application and have replaced it with a third-party BaaS
service (e.g., Auth0.)
b.Using another example of BaaS, we’ve allowed the client
direct access to a subset of our database (for product
listings), which itself is fully hosted by a third party (e.g.,
Google Firebase.). We likely have a different security profile
for the client accessing the database in this way than for
server resources that access the database.
Example
• here we see a number of significant changes:
• previous two points imply a very important third: some logic
that was in the Pet Store server is now within the client—e.g.,
keeping track of a user session, understanding the UX structure
of the application, reading from a database and translating that
into a usable view, etc. The client is well on its way to becoming
a Single Page Application.
• We may want to keep some UX-related functionality in the server, if, for example, it’s
compute intensive or requires access to significant amounts of data. In our pet store, an
example is “search.” Instead of having an always-running server, as existed in the
original architecture, we can instead implement a FaaS function that responds to HTTP
requests via an API gateway (described later). Both the client and the server “search”
function read from the same database for product data.
• If we choose to use AWS Lambda as our FaaS platform we can port the search code
from the original Pet Store server to the new Pet Store Search function without a
complete rewrite, since Lambda supports Java and Javascript—our original
implementation languages
Example
• here we see a number of significant changes:
• Finally, we may replace our “purchase” functionality with
another separate FaaS function, choosing to keep it on the
server side for security reasons, rather than reimplement it
in the client. It too is fronted by an API gateway. Breaking
up different logical requirements into separately deployed
components is a very common approach when using FaaS.
Example
• In the original version, all flow, control, and security was managed by
the central server application. In the Serverless version there is no
central arbiter of these concerns. Instead we see a preference for
choreography over orchestration, with each component playing a
more architecturally aware role—an idea also common in a
microservices approach.
Example
• Benefits:
• more flexible and amenable to change.
• both as a whole and through independent updates to components;
• there is better division of concerns
• trade-off:
• it requires better distributed monitoring, and
• we rely more significantly on the security capabilities of the underlying platform.
• More fundamentally, there are a greater number of moving pieces to get our heads
around than there are with the monolithic application we had originally.
• Whether the benefits of flexibility and cost are worth the added
complexity of multiple backend components is very context dependent
Message-driven applications
• A different example is a backend data-processing service.
• Say you’re writing a user-centric application that needs to quickly
respond to UI requests, and, secondarily, it needs to capture all the
different types of user activity that are occurring, for subsequent
processing.
• Think about an online advertisement system: when a user clicks on an
ad you want to very quickly redirect them to the target of that ad. At
the same time, you need to collect the fact that the click has
happened so that you can charge the advertiser.
Message-driven applications
• The “Ad Server” synchronously responds to the user (not shown) and
also posts a “click message” to a channel. This message is then
asynchronously processed by a “click processor” application that
updates a database, e.g., to decrement the advertiser’s budget.
In the Serverless world this looks as follows:
Message-driven applications
• Can you see the difference?
• asynchronous message processing is a very popular use case for Serverless
technologies.
• We’ve replaced a long-lived message-consumer application with a FaaS
function.
• This function runs within the event-driven context the vendor provides.
• The FaaS environment may also process several messages in parallel by
instantiating multiple copies of the function code.
• Note that the cloud platform vendor supplies both the message broker and
the FaaS environment—the two systems are closely tied to each other.
Unpacking "Function as a Service"
• AWS Lambda lets you run code without provisioning or managing
servers.
• (1) ... With Lambda, you can run code for virtually any type of
application or backend service
• (2) - all with zero administration.
• Just upload your code and Lambda takes care of everything required
to run (3) and
• scale (4) your code with high availability.
• You can set up your code to automatically trigger from other AWS
services (5) or
• call it directly from any web or mobile app (6).
Unpacking "Function as a Service"
1. Fundamentally, FaaS is about running backend code without
managing your own server systems or your own long-lived server
applications.
• That second clause—long-lived server applications—is a key difference when
comparing with other modern architectural trends like containers and PaaS
(Platform as a Service)
• If we go back to our click-processing example from earlier, FaaS replaces the
click-processing server (possibly a physical machine, but definitely a specific
application) with something that doesn’t need a provisioned server, nor an
application that is running all the time.
Unpacking "Function as a Service"
2. FaaS offerings do not require coding to a specific framework or
library.
• FaaS functions are regular applications when it comes to language and
environment.
• For instance, AWS Lambda functions can be implemented “first class” in
Javascript, Python, Go, any JVM language (Java, Clojure, Scala, etc.), or any
.NET language. However your Lambda function can also execute another
process that is bundled with its deployment artifact.
Unpacking "Function as a Service"
3. Deployment is very different from traditional systems since we have no
server applications to run ourselves. In a FaaS environment we upload
the code for our function to the FaaS provider, and the provider does
everything else necessary for provisioning resources, instantiating VMs,
managing processes, etc.
4. Horizontal scaling is completely automatic, elastic, and managed by the
provider. If your system needs to be processing 100 requests in parallel
the provider will handle that without any extra configuration on your
part. The “compute containers” executing your functions are ephemeral,
with the FaaS provider creating and destroying them purely driven by
runtime need. Most importantly, with FaaS the vendor handles all
underlying resource provisioning and allocation—no cluster or VM
management is required by the user at all.
Unpacking "Function as a Service"
Let’s return to our click processor. Say that we were having a good day
and customers were clicking on ten times as many ads as usual. For the
traditional architecture, would our click-processing application be able
to handle this? For example, did we develop our application to be able
to handle multiple messages at a time? If we did, would one running
instance of the application be enough to process the load? If we are
able to run multiple processes, is autoscaling automatic or do we need
to reconfigure that manually? With a FaaS approach all of these
questions are already answered—you need to write the function ahead
of time to assume horizontal-scaled parallelism, but from that point on
the FaaS provider automatically handles all scaling needs.
Unpacking "Function as a Service"
5. Functions in FaaS are typically triggered by event types defined by
the provider. With Amazon AWS such stimuli include S3
(file/object) updates, time (scheduled tasks), and messages added
to a message bus (e.g., Kinesis).
6. Most providers also allow functions to be triggered as a response to
inbound HTTP requests; in AWS one typically enables this by way of
using an API gateway. We used an API gateway in our Pet Store
example for our “search” and “purchase” functions. Functions can
also be invoked directly via a platform-provided API, either
externally or from within the same cloud environment, but this is a
comparatively uncommon use.
Unpacking "Function as a Service"
• State
• FaaS functions have significant restrictions when it comes to local
(machine/instance-bound) state—i.e., data that you store in variables in memory, or
data that you write to local disk
• you have no guarantee that such state is persisted across multiple invocations, and,
more strongly, you should not assume that state from one invocation of a function
will be available to another invocation of the same function.
• Execution duration
• FaaS functions are typically limited in how long each invocation is allowed to run. At
present the “timeout” for an AWS Lambda function to respond to an event is at
most five minutes, before being terminated. Microsoft Azure and Google Cloud
Functions have similar limits.
• This means that certain classes of long-lived tasks are not suited to FaaS functions
without re-architecture—you may need to create several different coordinated FaaS
functions, whereas in a traditional environment you may have one long-duration
task performing both coordination and execution.
Unpacking "Function as a Service"
• Startup latency and “cold starts”
• It takes some time for a FaaS platform to initialize an instance of a function
before each event. This startup latency can vary significantly, even for one
specific function, depending on a large number of factors, and may range
anywhere from a few milliseconds to several seconds.
• Initialization of a Lambda function will either be a “warm start”—
reusing an instance of a Lambda function and its host container from
a previous event or
• “cold start” —creating a new container instance, starting the function
host process, etc. Unsurprisingly, when considering startup latency,
it’s these cold starts that bring the most concern.
Unpacking "Function as a Service"
• Cold-start latency depends on many variables: the language you use,
how many libraries you’re using, how much code you have, the
configuration of the Lambda function environment itself, whether
you need to connect to other resources, etc
• Many of these aspects are under a developer’s control, so it’s often possible
to reduce the startup latency incurred as part of a cold start.
Unpacking "Function as a Service"
• API gateways
• An API gateway is an HTTP server where routes and endpoints are defined in
configuration, and each route is associated with a resource to handle that route.
• In a Serverless architecture such handlers are often FaaS functions. in the
case of a FaaS-backed route, will call the relevant FaaS function with a
representation of the original request.
• The FaaS function will execute its logic and return a result to the API
gateway, which in turn will transform this result into an HTTP response
that it passes back to the original caller.
• Amazon’s API Gateway is a BaaS (yes, BaaS!) service in its own right in that
it’s an external service that you configure, but do not need to run or
provision yourself
Unpacking "Function as a Service"
• API gateways may also perform authentication, input validation,
response code mapping, and more.
• One use case for an API gateway with FaaS functions is creating HTTP-
fronted microservices in a Serverless way with all the scaling,
management, and other benefits that come from FaaS functions.
Benefits
• Reduced operational cost
• Serverless is, at its most simple, an outsourcing solution.
• It allows you to pay someone to manage servers, databases and even
application logic that you might otherwise manage yourself.
• The reduced costs appear to you as the total of two aspects.
• The first are infrastructure cost gains that come purely from sharing infrastructure (e.g.,
hardware, networking) with other people
• The second are labor cost gains: you'll be able to spend less of your own time on an
outsourced Serverless system than on an equivalent developed and hosted by yourself
Benefits
• BaaS: reduced development cost
• A BaaS database removes much of the database administration overhead,
and typically provides mechanisms to perform appropriate authorization for
different types of users, in the patterns expected of a Serverless app.
• FaaS: scaling costs
• “horizontal scaling is completely automatic, elastic, and managed by the
provider.”
• Depending on your traffic scale and shape, this can be a huge economic win
for you.
Benefits
Example: inconsistent traffic
Benefits
Optimization is the root of some cost savings
• any performance optimizations you make to your code will not only
increase the speed of your app, but they’ll have a direct and
immediate link to reduction in operational costs.
• For example, say an application initially takes one second to process
an event. If, through code optimization, this is reduced to 200 ms, it
will (on AWS Lambda) immediately see an 80 percent savings in
compute costs without making any infrastructural changes.
Benefits
Easier operational management
• Scaling benefits of FaaS beyond infrastructure costs
• scaling functionality of FaaS reduce compute cost, it also reduces operational
management because the scaling is automatic.
• since scaling is performed by the provider on every request/event, you no longer
need to think about the question of how many concurrent requests you can handle
before running out of memory or seeing too much of a performance hit—at least
not within your FaaS-hosted components.
• Reduced packaging and deployment complexity
• Packaging and deploying a FaaS function is simple compared to deploying an entire
server.
• All you’re doing is packaging all your code into a zip file, and uploading it. No
Puppet/Chef, no start/stop shell scripts, no decisions about whether to deploy one
or many containers on a machine.
Benefits
• Time to market and continuous experimentation
• The new-idea-to-initial-deployment story for FaaS is often excellent,
especially for simple functions triggered by a maturely defined event in the
vendor’s ecosystem.
• "Greener" computing?
Inherent drawbacks
• Vendor control
• With any outsourcing strategy you are giving up control of some of your
system to a third-party vendor. Such lack of control may manifest as system
downtime, unexpected limits, cost changes, loss of functionality, forced API
upgrade
• Multitenancy problems
• Multitenancy refers to the situation where multiple instances of software
for several different customers (or tenants) are run on the same machine,
and possibly within the same hosting application.
• sometimes multitenant solutions can have problems with security (one
customer being able to see another’s data), robustness (an error in one
customer’s software causing a failure in a different customer’s software),
and performance (a high-load customer causing another to slow down).
Inherent drawbacks
• Vendor lock-in
• It’s very likely that whatever Serverless features you’re using from one
vendor will be implemented differently by another vendor.
• If you want to switch vendors you’ll almost certainly need to update your
operational tools (deployment, monitoring, etc.)
• Security concerns
• Embracing a Serverless approach opens you up to a large number of
security questions.
• increases your surface area for malicious intent and ups the likelihood of a successful
attack.
• If using a BaaS database directly from your mobile platforms you are losing the
protective barrier a server-side application provides in a traditional application.
Inherent drawbacks
• Repetition of logic across client platforms
• With a “full” BaaS architecture no custom logic is written on the server side—it’s
all in the client.
• all your client apps (perhaps web, native iOS, and native Android) now need to be
able to communicate with your vendor database, and will need to understand how
to map from your database schema to application logic.
• Loss of server optimizations
• With a full BaaS architecture there is no opportunity to optimize your server
design for client performance.
• No in-server state for Serverless FaaS
• FaaS functions have significant restrictions when it comes to local .. state. .. You
should not assume that state from one invocation of a function will be available to
another invocation of the same function.
Implementation drawbacks
• Configuration
• very little in the way of configuration for Lambda functions. worth checking if you
use a less mature platform.
• DoS yourself
• AWS Lambda limits how many concurrent executions of your Lambda functions
you can be running at a given time.
• Some organizations use the same AWS account for both production and testing.
That means if someone, somewhere, in your organization performs a new type of
load test and starts trying to execute one thousand concurrent Lambda functions,
you’ll accidentally DoS your production applications.
• Execution duration
• AWS Lambda functions are aborted if they run for longer than five minutes.
• Startup latency
Implementation drawbacks
Testing
• Unit testing Serverless apps is fairly simple: any code that you write is “just
code,” and for the most part there aren’t a whole bunch of custom libraries
you have to use or interfaces that you have to implement.
• Integration testing Serverless apps, on the other hand, is hard.
• Debugging
• Debugging with FaaS is an interesting area. There’s been progress here,
mostly related to running FaaS functions locally, Different vendors may not
have adequate support for debugging.
Consideration before Migrating
 Tooling
 State management
 Platform improvements
 Education

More Related Content

What's hot

(DVO401) Deep Dive into Blue/Green Deployments on AWS
(DVO401) Deep Dive into Blue/Green Deployments on AWS(DVO401) Deep Dive into Blue/Green Deployments on AWS
(DVO401) Deep Dive into Blue/Green Deployments on AWSAmazon Web Services
 
Terraform GitOps on Codefresh
Terraform GitOps on CodefreshTerraform GitOps on Codefresh
Terraform GitOps on CodefreshCodefresh
 
Keeping a Secret with HashiCorp Vault
Keeping a Secret with HashiCorp VaultKeeping a Secret with HashiCorp Vault
Keeping a Secret with HashiCorp VaultMitchell Pronschinske
 
DCSF19 Dockerfile Best Practices
DCSF19 Dockerfile Best PracticesDCSF19 Dockerfile Best Practices
DCSF19 Dockerfile Best PracticesDocker, Inc.
 
Transforming Infrastructure into Code - Importing existing cloud resources u...
Transforming Infrastructure into Code  - Importing existing cloud resources u...Transforming Infrastructure into Code  - Importing existing cloud resources u...
Transforming Infrastructure into Code - Importing existing cloud resources u...Shih Oon Liong
 
YOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at NetflixYOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at NetflixBrendan Gregg
 
CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton Araf Karsh Hamid
 
Architecting for the Cloud using NetflixOSS - Codemash Workshop
Architecting for the Cloud using NetflixOSS - Codemash WorkshopArchitecting for the Cloud using NetflixOSS - Codemash Workshop
Architecting for the Cloud using NetflixOSS - Codemash WorkshopSudhir Tonse
 
Repository Management with JFrog Artifactory
Repository Management with JFrog ArtifactoryRepository Management with JFrog Artifactory
Repository Management with JFrog ArtifactoryStephen Chin
 
Linux Profiling at Netflix
Linux Profiling at NetflixLinux Profiling at Netflix
Linux Profiling at NetflixBrendan Gregg
 
Building Open Source Identity Management with FreeIPA
Building Open Source Identity Management with FreeIPABuilding Open Source Identity Management with FreeIPA
Building Open Source Identity Management with FreeIPALDAPCon
 
Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...
Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...
Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...Amazon Web Services
 
BPF - in-kernel virtual machine
BPF - in-kernel virtual machineBPF - in-kernel virtual machine
BPF - in-kernel virtual machineAlexei Starovoitov
 
Netflix: From Clouds to Roots
Netflix: From Clouds to RootsNetflix: From Clouds to Roots
Netflix: From Clouds to RootsBrendan Gregg
 
Hadoop REST API Security with Apache Knox Gateway
Hadoop REST API Security with Apache Knox GatewayHadoop REST API Security with Apache Knox Gateway
Hadoop REST API Security with Apache Knox GatewayDataWorks Summit
 
Building Network Functions with eBPF & BCC
Building Network Functions with eBPF & BCCBuilding Network Functions with eBPF & BCC
Building Network Functions with eBPF & BCCKernel TLV
 
Monitoring Kubernetes with Prometheus
Monitoring Kubernetes with PrometheusMonitoring Kubernetes with Prometheus
Monitoring Kubernetes with PrometheusGrafana Labs
 
Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...
Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...
Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...Flink Forward
 

What's hot (20)

(DVO401) Deep Dive into Blue/Green Deployments on AWS
(DVO401) Deep Dive into Blue/Green Deployments on AWS(DVO401) Deep Dive into Blue/Green Deployments on AWS
(DVO401) Deep Dive into Blue/Green Deployments on AWS
 
Terraform GitOps on Codefresh
Terraform GitOps on CodefreshTerraform GitOps on Codefresh
Terraform GitOps on Codefresh
 
Keeping a Secret with HashiCorp Vault
Keeping a Secret with HashiCorp VaultKeeping a Secret with HashiCorp Vault
Keeping a Secret with HashiCorp Vault
 
DCSF19 Dockerfile Best Practices
DCSF19 Dockerfile Best PracticesDCSF19 Dockerfile Best Practices
DCSF19 Dockerfile Best Practices
 
Transforming Infrastructure into Code - Importing existing cloud resources u...
Transforming Infrastructure into Code  - Importing existing cloud resources u...Transforming Infrastructure into Code  - Importing existing cloud resources u...
Transforming Infrastructure into Code - Importing existing cloud resources u...
 
YOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at NetflixYOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at Netflix
 
CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton
 
Argocd up and running
Argocd up and runningArgocd up and running
Argocd up and running
 
Architecting for the Cloud using NetflixOSS - Codemash Workshop
Architecting for the Cloud using NetflixOSS - Codemash WorkshopArchitecting for the Cloud using NetflixOSS - Codemash Workshop
Architecting for the Cloud using NetflixOSS - Codemash Workshop
 
Repository Management with JFrog Artifactory
Repository Management with JFrog ArtifactoryRepository Management with JFrog Artifactory
Repository Management with JFrog Artifactory
 
Linux Profiling at Netflix
Linux Profiling at NetflixLinux Profiling at Netflix
Linux Profiling at Netflix
 
Building Open Source Identity Management with FreeIPA
Building Open Source Identity Management with FreeIPABuilding Open Source Identity Management with FreeIPA
Building Open Source Identity Management with FreeIPA
 
Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...
Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...
Using HashiCorp’s Terraform to build your infrastructure on AWS - Pop-up Loft...
 
BPF - in-kernel virtual machine
BPF - in-kernel virtual machineBPF - in-kernel virtual machine
BPF - in-kernel virtual machine
 
Netflix: From Clouds to Roots
Netflix: From Clouds to RootsNetflix: From Clouds to Roots
Netflix: From Clouds to Roots
 
Hadoop REST API Security with Apache Knox Gateway
Hadoop REST API Security with Apache Knox GatewayHadoop REST API Security with Apache Knox Gateway
Hadoop REST API Security with Apache Knox Gateway
 
Building Network Functions with eBPF & BCC
Building Network Functions with eBPF & BCCBuilding Network Functions with eBPF & BCC
Building Network Functions with eBPF & BCC
 
Scale Kubernetes to support 50000 services
Scale Kubernetes to support 50000 servicesScale Kubernetes to support 50000 services
Scale Kubernetes to support 50000 services
 
Monitoring Kubernetes with Prometheus
Monitoring Kubernetes with PrometheusMonitoring Kubernetes with Prometheus
Monitoring Kubernetes with Prometheus
 
Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...
Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...
Dynamically Scaling Data Streams across Multiple Kafka Clusters with Zero Fli...
 

Similar to Serverless Architectures

Serverless Architectures - Where have all the servers gone?
Serverless Architectures - Where have all the servers gone?Serverless Architectures - Where have all the servers gone?
Serverless Architectures - Where have all the servers gone?Nane Kratzke
 
Building Serverless Microservices Using Serverless Framework on the Cloud
Building Serverless Microservices Using Serverless Framework on the CloudBuilding Serverless Microservices Using Serverless Framework on the Cloud
Building Serverless Microservices Using Serverless Framework on the CloudSrini Karlekar
 
Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...
Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...
Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...Srini Karlekar
 
What is FAAS Function as a service Explained
What is FAAS Function as a service ExplainedWhat is FAAS Function as a service Explained
What is FAAS Function as a service Explainedjeetendra mandal
 
What are cloud service models
What are cloud service modelsWhat are cloud service models
What are cloud service modelsLivin Jose
 
AWS Interview Questions and Answers -CREDO SYSTEMZ.pdf
AWS Interview Questions and Answers -CREDO SYSTEMZ.pdfAWS Interview Questions and Answers -CREDO SYSTEMZ.pdf
AWS Interview Questions and Answers -CREDO SYSTEMZ.pdfnishajeni1
 
Aws serverless multi-tier_architectures
Aws serverless multi-tier_architecturesAws serverless multi-tier_architectures
Aws serverless multi-tier_architecturessonpro2312
 
Serverless Computing Model
Serverless Computing ModelServerless Computing Model
Serverless Computing ModelMohamed Samir
 
Introduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptxIntroduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptxNadir Arain
 
From Serverless to InterCloud
From Serverless to InterCloudFrom Serverless to InterCloud
From Serverless to InterCloudWayne Scarano
 
Serverless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloadsServerless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloadsTensult
 
Cloud Computing Serverless Architecture
Cloud Computing Serverless ArchitectureCloud Computing Serverless Architecture
Cloud Computing Serverless ArchitectureYASH Technologies
 
When to use serverless computing.pdf
When to use serverless computing.pdfWhen to use serverless computing.pdf
When to use serverless computing.pdfSGBSeo
 
CloudComputing
CloudComputingCloudComputing
CloudComputingAdi Challa
 

Similar to Serverless Architectures (20)

Demistifying serverless on aws
Demistifying serverless on awsDemistifying serverless on aws
Demistifying serverless on aws
 
What is Serverless Computing?
What is Serverless Computing?What is Serverless Computing?
What is Serverless Computing?
 
Serverless Architectures - Where have all the servers gone?
Serverless Architectures - Where have all the servers gone?Serverless Architectures - Where have all the servers gone?
Serverless Architectures - Where have all the servers gone?
 
Serverless Architecture
Serverless ArchitectureServerless Architecture
Serverless Architecture
 
Building Serverless Microservices Using Serverless Framework on the Cloud
Building Serverless Microservices Using Serverless Framework on the CloudBuilding Serverless Microservices Using Serverless Framework on the Cloud
Building Serverless Microservices Using Serverless Framework on the Cloud
 
Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...
Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...
Building Cross-Cloud Platform Cognitive Microservices Using Serverless Archit...
 
What is FAAS Function as a service Explained
What is FAAS Function as a service ExplainedWhat is FAAS Function as a service Explained
What is FAAS Function as a service Explained
 
Cloud presentation NELA
Cloud presentation NELACloud presentation NELA
Cloud presentation NELA
 
What are cloud service models
What are cloud service modelsWhat are cloud service models
What are cloud service models
 
AWS Interview Questions and Answers -CREDO SYSTEMZ.pdf
AWS Interview Questions and Answers -CREDO SYSTEMZ.pdfAWS Interview Questions and Answers -CREDO SYSTEMZ.pdf
AWS Interview Questions and Answers -CREDO SYSTEMZ.pdf
 
Aws serverless multi-tier_architectures
Aws serverless multi-tier_architecturesAws serverless multi-tier_architectures
Aws serverless multi-tier_architectures
 
Serverless Computing Model
Serverless Computing ModelServerless Computing Model
Serverless Computing Model
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
Introduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptxIntroduction to Azure fundamentals of cloud.pptx
Introduction to Azure fundamentals of cloud.pptx
 
From Serverless to InterCloud
From Serverless to InterCloudFrom Serverless to InterCloud
From Serverless to InterCloud
 
Serverless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloadsServerless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloads
 
Coud discovery chap 3
Coud discovery chap 3Coud discovery chap 3
Coud discovery chap 3
 
Cloud Computing Serverless Architecture
Cloud Computing Serverless ArchitectureCloud Computing Serverless Architecture
Cloud Computing Serverless Architecture
 
When to use serverless computing.pdf
When to use serverless computing.pdfWhen to use serverless computing.pdf
When to use serverless computing.pdf
 
CloudComputing
CloudComputingCloudComputing
CloudComputing
 

Recently uploaded

Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...kalichargn70th171
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxalwaysnagaraju26
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfryanfarris8
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 

Recently uploaded (20)

Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 

Serverless Architectures

  • 2. Serverless • Serverless computing, or more simply Serverless, is a hot topic in the software architecture world. • The “Big Three” cloud vendors—Amazon, Google, and Microsoft—are heavily invested in Serverless
  • 3. Serverless Architectures • Serverless architectures are application designs that incorporate third-party “Backend as a Service” (BaaS) services, and/or that include custom code run in managed, ephemeral containers on a “Functions as a Service” (FaaS) platform. • By using these ideas, and related ones like single-page applications, such architectures remove much of the need for a traditional always- on server component. • Serverless architectures may benefit from significantly reduced operational cost, complexity, and engineering lead time, at a cost of increased reliance on vendor dependencies and comparatively immature supporting services.
  • 4. What is Serverless? • there’s no one clear view of what Serverless is. • For starters, it encompasses two different but overlapping areas: 1. Serverless was first used to describe applications that significantly or fully incorporate third-party, cloud-hosted applications and services, to manage server-side logic and state. • “rich client” applications—think single-page web apps, or mobile apps—that use the vast ecosystem of cloud-accessible databases (e.g., Firebase), authentication services (e.g., Auth0, AWS Cognito) • These types of services have been previously described as “(Mobile) Backend as a Service", and I use "BaaS"
  • 5. What is Serverless? 2. Serverless can also mean applications where server-side logic is still written by the application developer, but, unlike traditional architectures, it’s run in stateless compute containers that are event-triggered, ephemeral (may only last for one invocation), and fully managed by a third party. • One way to think of this is “Functions as a Service” or "FaaS". • AWS Lambda is one of the most popular implementations of a Functions-as- a-Service platform at present. Besides Azure Functions, Google Cloud Functions etc.
  • 6. Example • UI-driven applications • Let’s think about a traditional three-tier client-oriented system with server-side logic. A good example is a typical ecommerce- (pet store). • Traditionally, the architecture will look something like the diagram below. Let’s say it’s implemented in Java or Javascript on the server side, with an HTML + Javascript component as the client:
  • 7. Example • With this architecture the client can be relatively unintelligent, with much of the logic in the system—authentication, page navigation, searching, transactions—implemented by the server application.
  • 8. Example • With a Serverless architecture this may end up looking more like this:
  • 9. Example • here we see a number of significant changes: a.We’ve deleted the authentication logic in the original application and have replaced it with a third-party BaaS service (e.g., Auth0.) b.Using another example of BaaS, we’ve allowed the client direct access to a subset of our database (for product listings), which itself is fully hosted by a third party (e.g., Google Firebase.). We likely have a different security profile for the client accessing the database in this way than for server resources that access the database.
  • 10. Example • here we see a number of significant changes: • previous two points imply a very important third: some logic that was in the Pet Store server is now within the client—e.g., keeping track of a user session, understanding the UX structure of the application, reading from a database and translating that into a usable view, etc. The client is well on its way to becoming a Single Page Application. • We may want to keep some UX-related functionality in the server, if, for example, it’s compute intensive or requires access to significant amounts of data. In our pet store, an example is “search.” Instead of having an always-running server, as existed in the original architecture, we can instead implement a FaaS function that responds to HTTP requests via an API gateway (described later). Both the client and the server “search” function read from the same database for product data. • If we choose to use AWS Lambda as our FaaS platform we can port the search code from the original Pet Store server to the new Pet Store Search function without a complete rewrite, since Lambda supports Java and Javascript—our original implementation languages
  • 11. Example • here we see a number of significant changes: • Finally, we may replace our “purchase” functionality with another separate FaaS function, choosing to keep it on the server side for security reasons, rather than reimplement it in the client. It too is fronted by an API gateway. Breaking up different logical requirements into separately deployed components is a very common approach when using FaaS.
  • 12. Example • In the original version, all flow, control, and security was managed by the central server application. In the Serverless version there is no central arbiter of these concerns. Instead we see a preference for choreography over orchestration, with each component playing a more architecturally aware role—an idea also common in a microservices approach.
  • 13. Example • Benefits: • more flexible and amenable to change. • both as a whole and through independent updates to components; • there is better division of concerns • trade-off: • it requires better distributed monitoring, and • we rely more significantly on the security capabilities of the underlying platform. • More fundamentally, there are a greater number of moving pieces to get our heads around than there are with the monolithic application we had originally. • Whether the benefits of flexibility and cost are worth the added complexity of multiple backend components is very context dependent
  • 14. Message-driven applications • A different example is a backend data-processing service. • Say you’re writing a user-centric application that needs to quickly respond to UI requests, and, secondarily, it needs to capture all the different types of user activity that are occurring, for subsequent processing. • Think about an online advertisement system: when a user clicks on an ad you want to very quickly redirect them to the target of that ad. At the same time, you need to collect the fact that the click has happened so that you can charge the advertiser.
  • 15. Message-driven applications • The “Ad Server” synchronously responds to the user (not shown) and also posts a “click message” to a channel. This message is then asynchronously processed by a “click processor” application that updates a database, e.g., to decrement the advertiser’s budget. In the Serverless world this looks as follows:
  • 16. Message-driven applications • Can you see the difference? • asynchronous message processing is a very popular use case for Serverless technologies. • We’ve replaced a long-lived message-consumer application with a FaaS function. • This function runs within the event-driven context the vendor provides. • The FaaS environment may also process several messages in parallel by instantiating multiple copies of the function code. • Note that the cloud platform vendor supplies both the message broker and the FaaS environment—the two systems are closely tied to each other.
  • 17. Unpacking "Function as a Service" • AWS Lambda lets you run code without provisioning or managing servers. • (1) ... With Lambda, you can run code for virtually any type of application or backend service • (2) - all with zero administration. • Just upload your code and Lambda takes care of everything required to run (3) and • scale (4) your code with high availability. • You can set up your code to automatically trigger from other AWS services (5) or • call it directly from any web or mobile app (6).
  • 18. Unpacking "Function as a Service" 1. Fundamentally, FaaS is about running backend code without managing your own server systems or your own long-lived server applications. • That second clause—long-lived server applications—is a key difference when comparing with other modern architectural trends like containers and PaaS (Platform as a Service) • If we go back to our click-processing example from earlier, FaaS replaces the click-processing server (possibly a physical machine, but definitely a specific application) with something that doesn’t need a provisioned server, nor an application that is running all the time.
  • 19. Unpacking "Function as a Service" 2. FaaS offerings do not require coding to a specific framework or library. • FaaS functions are regular applications when it comes to language and environment. • For instance, AWS Lambda functions can be implemented “first class” in Javascript, Python, Go, any JVM language (Java, Clojure, Scala, etc.), or any .NET language. However your Lambda function can also execute another process that is bundled with its deployment artifact.
  • 20. Unpacking "Function as a Service" 3. Deployment is very different from traditional systems since we have no server applications to run ourselves. In a FaaS environment we upload the code for our function to the FaaS provider, and the provider does everything else necessary for provisioning resources, instantiating VMs, managing processes, etc. 4. Horizontal scaling is completely automatic, elastic, and managed by the provider. If your system needs to be processing 100 requests in parallel the provider will handle that without any extra configuration on your part. The “compute containers” executing your functions are ephemeral, with the FaaS provider creating and destroying them purely driven by runtime need. Most importantly, with FaaS the vendor handles all underlying resource provisioning and allocation—no cluster or VM management is required by the user at all.
  • 21. Unpacking "Function as a Service" Let’s return to our click processor. Say that we were having a good day and customers were clicking on ten times as many ads as usual. For the traditional architecture, would our click-processing application be able to handle this? For example, did we develop our application to be able to handle multiple messages at a time? If we did, would one running instance of the application be enough to process the load? If we are able to run multiple processes, is autoscaling automatic or do we need to reconfigure that manually? With a FaaS approach all of these questions are already answered—you need to write the function ahead of time to assume horizontal-scaled parallelism, but from that point on the FaaS provider automatically handles all scaling needs.
  • 22. Unpacking "Function as a Service" 5. Functions in FaaS are typically triggered by event types defined by the provider. With Amazon AWS such stimuli include S3 (file/object) updates, time (scheduled tasks), and messages added to a message bus (e.g., Kinesis). 6. Most providers also allow functions to be triggered as a response to inbound HTTP requests; in AWS one typically enables this by way of using an API gateway. We used an API gateway in our Pet Store example for our “search” and “purchase” functions. Functions can also be invoked directly via a platform-provided API, either externally or from within the same cloud environment, but this is a comparatively uncommon use.
  • 23. Unpacking "Function as a Service" • State • FaaS functions have significant restrictions when it comes to local (machine/instance-bound) state—i.e., data that you store in variables in memory, or data that you write to local disk • you have no guarantee that such state is persisted across multiple invocations, and, more strongly, you should not assume that state from one invocation of a function will be available to another invocation of the same function. • Execution duration • FaaS functions are typically limited in how long each invocation is allowed to run. At present the “timeout” for an AWS Lambda function to respond to an event is at most five minutes, before being terminated. Microsoft Azure and Google Cloud Functions have similar limits. • This means that certain classes of long-lived tasks are not suited to FaaS functions without re-architecture—you may need to create several different coordinated FaaS functions, whereas in a traditional environment you may have one long-duration task performing both coordination and execution.
  • 24. Unpacking "Function as a Service" • Startup latency and “cold starts” • It takes some time for a FaaS platform to initialize an instance of a function before each event. This startup latency can vary significantly, even for one specific function, depending on a large number of factors, and may range anywhere from a few milliseconds to several seconds. • Initialization of a Lambda function will either be a “warm start”— reusing an instance of a Lambda function and its host container from a previous event or • “cold start” —creating a new container instance, starting the function host process, etc. Unsurprisingly, when considering startup latency, it’s these cold starts that bring the most concern.
  • 25. Unpacking "Function as a Service" • Cold-start latency depends on many variables: the language you use, how many libraries you’re using, how much code you have, the configuration of the Lambda function environment itself, whether you need to connect to other resources, etc • Many of these aspects are under a developer’s control, so it’s often possible to reduce the startup latency incurred as part of a cold start.
  • 26. Unpacking "Function as a Service" • API gateways • An API gateway is an HTTP server where routes and endpoints are defined in configuration, and each route is associated with a resource to handle that route. • In a Serverless architecture such handlers are often FaaS functions. in the case of a FaaS-backed route, will call the relevant FaaS function with a representation of the original request. • The FaaS function will execute its logic and return a result to the API gateway, which in turn will transform this result into an HTTP response that it passes back to the original caller. • Amazon’s API Gateway is a BaaS (yes, BaaS!) service in its own right in that it’s an external service that you configure, but do not need to run or provision yourself
  • 27. Unpacking "Function as a Service" • API gateways may also perform authentication, input validation, response code mapping, and more. • One use case for an API gateway with FaaS functions is creating HTTP- fronted microservices in a Serverless way with all the scaling, management, and other benefits that come from FaaS functions.
  • 28. Benefits • Reduced operational cost • Serverless is, at its most simple, an outsourcing solution. • It allows you to pay someone to manage servers, databases and even application logic that you might otherwise manage yourself. • The reduced costs appear to you as the total of two aspects. • The first are infrastructure cost gains that come purely from sharing infrastructure (e.g., hardware, networking) with other people • The second are labor cost gains: you'll be able to spend less of your own time on an outsourced Serverless system than on an equivalent developed and hosted by yourself
  • 29. Benefits • BaaS: reduced development cost • A BaaS database removes much of the database administration overhead, and typically provides mechanisms to perform appropriate authorization for different types of users, in the patterns expected of a Serverless app. • FaaS: scaling costs • “horizontal scaling is completely automatic, elastic, and managed by the provider.” • Depending on your traffic scale and shape, this can be a huge economic win for you.
  • 31. Benefits Optimization is the root of some cost savings • any performance optimizations you make to your code will not only increase the speed of your app, but they’ll have a direct and immediate link to reduction in operational costs. • For example, say an application initially takes one second to process an event. If, through code optimization, this is reduced to 200 ms, it will (on AWS Lambda) immediately see an 80 percent savings in compute costs without making any infrastructural changes.
  • 32. Benefits Easier operational management • Scaling benefits of FaaS beyond infrastructure costs • scaling functionality of FaaS reduce compute cost, it also reduces operational management because the scaling is automatic. • since scaling is performed by the provider on every request/event, you no longer need to think about the question of how many concurrent requests you can handle before running out of memory or seeing too much of a performance hit—at least not within your FaaS-hosted components. • Reduced packaging and deployment complexity • Packaging and deploying a FaaS function is simple compared to deploying an entire server. • All you’re doing is packaging all your code into a zip file, and uploading it. No Puppet/Chef, no start/stop shell scripts, no decisions about whether to deploy one or many containers on a machine.
  • 33. Benefits • Time to market and continuous experimentation • The new-idea-to-initial-deployment story for FaaS is often excellent, especially for simple functions triggered by a maturely defined event in the vendor’s ecosystem. • "Greener" computing?
  • 34. Inherent drawbacks • Vendor control • With any outsourcing strategy you are giving up control of some of your system to a third-party vendor. Such lack of control may manifest as system downtime, unexpected limits, cost changes, loss of functionality, forced API upgrade • Multitenancy problems • Multitenancy refers to the situation where multiple instances of software for several different customers (or tenants) are run on the same machine, and possibly within the same hosting application. • sometimes multitenant solutions can have problems with security (one customer being able to see another’s data), robustness (an error in one customer’s software causing a failure in a different customer’s software), and performance (a high-load customer causing another to slow down).
  • 35. Inherent drawbacks • Vendor lock-in • It’s very likely that whatever Serverless features you’re using from one vendor will be implemented differently by another vendor. • If you want to switch vendors you’ll almost certainly need to update your operational tools (deployment, monitoring, etc.) • Security concerns • Embracing a Serverless approach opens you up to a large number of security questions. • increases your surface area for malicious intent and ups the likelihood of a successful attack. • If using a BaaS database directly from your mobile platforms you are losing the protective barrier a server-side application provides in a traditional application.
  • 36. Inherent drawbacks • Repetition of logic across client platforms • With a “full” BaaS architecture no custom logic is written on the server side—it’s all in the client. • all your client apps (perhaps web, native iOS, and native Android) now need to be able to communicate with your vendor database, and will need to understand how to map from your database schema to application logic. • Loss of server optimizations • With a full BaaS architecture there is no opportunity to optimize your server design for client performance. • No in-server state for Serverless FaaS • FaaS functions have significant restrictions when it comes to local .. state. .. You should not assume that state from one invocation of a function will be available to another invocation of the same function.
  • 37. Implementation drawbacks • Configuration • very little in the way of configuration for Lambda functions. worth checking if you use a less mature platform. • DoS yourself • AWS Lambda limits how many concurrent executions of your Lambda functions you can be running at a given time. • Some organizations use the same AWS account for both production and testing. That means if someone, somewhere, in your organization performs a new type of load test and starts trying to execute one thousand concurrent Lambda functions, you’ll accidentally DoS your production applications. • Execution duration • AWS Lambda functions are aborted if they run for longer than five minutes. • Startup latency
  • 38. Implementation drawbacks Testing • Unit testing Serverless apps is fairly simple: any code that you write is “just code,” and for the most part there aren’t a whole bunch of custom libraries you have to use or interfaces that you have to implement. • Integration testing Serverless apps, on the other hand, is hard. • Debugging • Debugging with FaaS is an interesting area. There’s been progress here, mostly related to running FaaS functions locally, Different vendors may not have adequate support for debugging.
  • 39. Consideration before Migrating  Tooling  State management  Platform improvements  Education