Serverless in production
an experience report
Yan Cui
What’s in this talk?
! how to responsibly run a serverless architecture (aka. how to do
ops in serverless)
! testing, CI/CD
! logging, distributed tracing, monitoring
! config management, securing secrets
! coldstarts
! gotchas/limitations + workarounds/hacks
hi,I’mYanCui
hi,I’mYanCui
AWS user since 2009
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
apr, 2016
Before
! hidden complexities and dependencies
! low utilisation to leave headroom for large spikes
! EC2 scaling is slow, so scale earlier
! paying for lots of used resources
! up to 30 mins to deploy
! deployments required downtime
- Dan North
“lead time to someone saying
thank you is the only reputation
metric that matters.”
Serverless in production (O'Reilly Software Architecture)
“what would good look like for us?”
Deployments should…
! be small
! be fast
! have zero downtime
! require no lock-step
Features should…
! be independently deployable
! be loosely-coupled
We want to…
! minimise cost of unused resources
! minimise ops effort
! reduce technical mess
! deliver visible improvements to users faster
nov, 2016
170 Lambda functions in prod
1.2 GB deployment packages in prod
95% cost saving vs EC2
15x no. of prod releases per month
time
is a good fit
1st function in prod!
time
is a good fit
?
time
is a good fit
1st function in prod!
Practices ToolsPrinciples
what is good? how to make it good? with what?
Principles outlast Tools
ALERTING
CI / CD
TESTING
LOGGING
MONITORING
170 functions
WOOF!
? ?
time
is a good fit
1st function in prod!
CONFIG MANAGEMENT
SECURITY
DISTRIBUTED TRACING
evolving the platform
building a better search experience
Legacy Monolith Amazon Kinesis Amazon Lambda
Amazon CloudSearch
Legacy Monolith Amazon Kinesis Amazon Lambda
Amazon CloudSearchAmazon API Gateway Amazon Lambda
building an analytics pipeline
Legacy Monolith Amazon Kinesis Amazon Lambda
Google BigQuery
Legacy Monolith Amazon Kinesis Amazon Lambda
Google BigQuery
1 developer, 2 days
design production
(his 1st serverless project)
Legacy Monolith Amazon Kinesis Amazon Lambda
Google BigQuery
“thank you, nothing ever got
done this fast at Skype!”
- Dan North
“lead time to someone saying
thank you is the only reputation
metric that matters.”
rebuilding the timeline feature
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
building better user recommendations
BigQuery
BigQuery
grapheneDB
BigQuery
grapheneDB
BigQuery
grapheneDB
BigQuery
getting PRODUCTION READY
CHOOSE A
FRAMEWORK
DEPLOYMENT
http://serverless.com
https://github.com/awslabs/serverless-application-model
http://apex.run
https://apex.github.io/up
https://github.com/claudiajs/claudia
https://github.com/Miserlou/Zappa
http://gosparta.io/
TESTING
amzn.to/29Lxuzu
Level of Testing
1.Unit
do our objects do the right thing?
are they easy to work with?
Serverless in production (O'Reilly Software Architecture)
1.Unit
2.Integration
does our code work against code we
can’t change?
Level of Testing
handler
handler
test by invoking the handler
Level of Testing
1.Unit
2.Integration
3.Acceptance
does the whole system work?
Level of Testing
unit
integration
acceptance
feedback
confidence
“…We find that tests that mock external libraries
often need to be complex to get the code into the
right state for the functionality we need to exercise.
The mess in such tests is telling us that the design
isn’t right but, instead of fixing the problem by
improving the code, we have to carry the extra
complexity in both code and test…”
Don’t Mock Types You Can’t Change
“…The second risk is that we have to be sure
that the behaviour we stub or mock matches
what the external library will actually do…
Even if we get it right once, we have to make
sure that the tests remain valid when we
upgrade the libraries…”
Don’t Mock Types You Can’t Change
Services
Don’t Mock Types You Can’t Change
Paul Johnston
The serverless approach
to testing is different and
may actually be easier.
http://bit.ly/2t5viwK
LambdaAPI Gateway DynamoDB
LambdaAPI Gateway DynamoDB
Unit Tests
LambdaAPI Gateway DynamoDB
Unit Tests
Mock/Stub
is our request correct?
is the request
mapping set up
is the API resources
configured correctly?
are we assuming the
correct schema?
LambdaAPI Gateway DynamoDB
is Lambda proxy
configured correctly?
is IAM policy set up
correctly?
is the table created?
what unit tests will not tell you…
Serverless in production (O'Reilly Software Architecture)
most Lambda functions are simple have
single purpose, the risk of shipping broken
software has largely shifted to how they
integrate with external services
observation
Serverless in production (O'Reilly Software Architecture)
But it slows down
my feedback loop…
IT’S NOT
ABOUT YOU!
me
test your system,
not (just) your code
API Gateway
IOT
Kinesis
SNS
ElastiCache
CloudWatch
DynamoDB
IAM
S3
Auth0
GrapheneDB
SES
Twilio
Google BigQuery
MongoLab
CloudSearch
APN
GCM
Lambda
EC2
…if a service can’t provide you with
a relatively easy way to test the
interface in reality, then you should
consider using another one.
Paul Johnston
“…Wherever possible, an acceptance test
should exercise the system end-to-end without
directly calling its internal code.
An end-to-end test interacts with the system
only from the outside: through its interface…”
Testing End-to-End
Legacy Monolith Amazon Kinesis Amazon Lambda
Amazon CloudSearchAmazon API Gateway Amazon Lambda
Legacy Monolith Amazon Kinesis Amazon Lambda
Amazon CloudSearchAmazon API Gateway Amazon Lambda
Test Input
Legacy Monolith Amazon Kinesis Amazon Lambda
Amazon CloudSearchAmazon API Gateway Amazon Lambda
Test Input
Validate
integration tests exercise
system’s Integration with its
external dependencies
acceptance tests exercise
system End-to-End from
the outside
integration tests differ from
acceptance tests only in HOW the
Lambda functions are invoked
observation
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
CI/CD PIPELINE
“…We prefer to have the end-to-end tests
exercise both the system and the process
by which it’s built and deployed…
This sounds like a lot of effort (it is), but has
to be done anyway repeatedly during the
software’s lifetime…”
Testing End-to-End
me
Deployment scripts that only
live on the CI box is a disaster
waiting to happen.
Jenkins build config deploys and tests
unit + integration tests
deploy
acceptance tests
if [ "$1" = "deploy" ] && [ $# -eq 4 ]; then
STAGE=$2
REGION=$3
PROFILE=$4
npm install
AWS_PROFILE=$PROFILE 'node_modules/.bin/sls' deploy -s $STAGE -r $REGION
…
if [ "$1" = "deploy" ] && [ $# -eq 4 ]; then
STAGE=$2
REGION=$3
PROFILE=$4
npm install
AWS_PROFILE=$PROFILE 'node_modules/.bin/sls' deploy -s $STAGE -r $REGION
…
install serverless framework as
dev dependency
can be run locally & on the CI box
Serverless in production (O'Reilly Software Architecture)
auto auto manual
LOGGING
Serverless in production (O'Reilly Software Architecture)
2016-07-12T12:24:37.571Z 994f18f9-482b-11e6-8668-53e4eab441ae
GOT is off air, what do I do now?
2016-07-12T12:24:37.571Z 994f18f9-482b-11e6-8668-53e4eab441ae
GOT is off air, what do I do now?
UTC Timestamp API Gateway Request Id
your log message
function name
date
function version
me
Logs are not easily searchable
in CloudWatch Logs.
LOG OVERLOAD
CENTRALISE LOGS
CENTRALISE LOGS
MAKE THEM EASILY
SEARCHABLE
+ +
the elk stack
CloudWatch Logs
CloudWatch Logs AWS Lambda ELK stack
CloudWatch Events
CloudWatch Logs
http://bit.ly/2f3zxQG
DISTRIBUTED TRACING
Serverless in production (O'Reilly Software Architecture)
“my followers didn’t
receive my new post!”
- a user
where could the
problem be?
correlation IDs*
* eg. request-id, user-id, yubl-id, etc.
ROLL YOUR OWN
CLIENTS
kinesis client
http client
sns client
http://bit.ly/2k93hAj
kinesis
global.CONTEXT
log.info(…)
api-b
global.CONTEXT
global.CONTEXT
global.CONTEXT
x-correlation-id = …
x-correlation-xxx = …
API Gateway Kinesis
SNS
API Gateway
API Gatewayapi-a api-c
sns
headers[“User-Agent”]
headers[“Debug-Log-Enabled”]
MessageAttributes: [
“x-correlation-id”: …
“User-Agent”: …
“Debug-Log-Enabled”: …
]
global.CONTEXT
headers[“User-Agent”]
headers[“Debug-Log-Enabled”]
headers[“x-correlation-id”]
headers[“User-Agent”]
headers[“Debug-Log-Enabled”]
headers[“x-correlation-id”]
data.__context
capture
forward
function
event
ROLL YOUR OWN
CLIENTS
X-RAY
Amazon X-Ray
Amazon X-Ray
traces do not span over
API Gateway
MONITORING + ALERTING
“where do I install
monitoring agents?”
you can’t
• invocation Count
• error Count
• latency
• throttling
• granular to the minute
• support custom metrics
• invocation Count
• error Count
• latency
• throttling
• granular to the minute
• support custom metrics
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Why not IOPipe?
! pervasive access to your entire application
! adds latency for tracking
me
The only “background”
processing you get are the
capabilities the platform
provides out of the box.
“how do I batch up and
send logs/metrics in the
background?”
you can’t
(kinda)
console.log(“hydrating yubls from db…”);
console.log(“fetching user info from user-api”);
console.log(“MONITORING|1489795335|27.4|latency|user-api-latency”);
console.log(“MONITORING|1489795335|8|count|yubls-served”);
timestamp metric value
metric type
metric namemetrics
logs
CloudWatch Logs AWS Lambda
ELK stack
logs
metrics
CloudWatch
CloudWatch Logs
CloudWatch Logs AWS Lambda
ELK stack
logs
metrics
CloudWatch
memory used
memory size
billed duration
http://bit.ly/2gGredx
http://bit.ly/2goFZ8F
DASHBOARDS
DASHBOARDS
SET ALARMS
DASHBOARDS
SET ALARMS
TRACK APP-LEVEL
METRICS
Not Only CloudWatch
Serverless in production (O'Reilly Software Architecture)
don’t put all your eggs in one basket
aka. you don’t want your monitoring system to
fail at the same time as the systems it monitors
CONFIG MANAGEMENT
Lambda
me
Environment variables make it
hard to share configurations
across functions.
me
Environment variables make it
hard to implement fine-grained
access to sensitive info.
http://bit.ly/2uQKABA
couples ability to deploy with access to sensitive
data, which often don’t overlap in a large
engineering team or in a regulated environment
CENTRALISED
CONFIG SERVICE
config service
goes here
Serverless in production (O'Reilly Software Architecture)
Serverless in production (O'Reilly Software Architecture)
Why not consul or etcd?
! multiple EC2 instances in multi-AZ for HA
! have to manage servers, patch OS, patch software, etc.
! learning curve for configuring the service
! learning curve for using the CLI tools
Serverless in production (O'Reilly Software Architecture)
SSM
Parameter
Store
SSM Parameter Store
HTTPS
role-based access
encrypted in-flight
SSM Parameter Store
encrypt
role-based access
SSM Parameter Store
encrypted at-rest
HTTPS
role-based access
SSM Parameter Store
encrypted in-flight
SSM Parameter Store
decrypt
role-based access
CENTRALISED
CONFIG SERVICE
CLIENT LIBRARY
Requirements for client library
! standardise and encapsulate how you manage configs
! supports client-side caching (fetch & cache at coldstart)
! invalidate cache at interval
! invalidate cache explicitly when staleness is detected
http://bit.ly/2yLUjwd
PRO TIPS
max 75 GB total deployment package size*
* limit is per AWS region
Janitor Monkey
Janitor Lambda
http://bit.ly/2xzVu4a
disable versionFunctions in
install Serverless framework as dev
dependency at project level
dev dependencies are excluded since 1.16.0
http://bit.ly/2vzBqhC
http://amzn.to/2vtUkDU
UNDERSTAND
COLDSTARTS
Amazon X-Ray
1st invocation
2nd invocation
cold start
source: http://bit.ly/2oBEbw2
http://bit.ly/2rtCCBz
http://bit.ly/2rtCCBz
C#
http://bit.ly/2rtCCBz
Java
http://bit.ly/2rtCCBz
NodeJs, Python
me
C# and Java experiences ~100
times the cold start time of
Python and also suffer from
much higher standard deviation
me
memory size improves cold
start time linearly
AVOID
COLDSTARTS
CloudWatch Event AWS Lambda
CloudWatch Event AWS Lambda
ping
ping
ping
ping
CloudWatch Event AWS Lambda
ping
ping
ping
ping
CloudWatch Event AWS Lambda
ping
ping
ping
ping
HEALTH CHECKS?
AWS Lambda
docs
Take advantage of container re-use to improve the
performance of your function. Make sure any
externalized configuration or dependencies that your
code retrieves are stored and referenced locally after initial
execution. Limit the re-initialization of variables/objects on
every invocation. Instead use static initialization/
constructor, global/static variables and singletons. Keep
alive and reuse connections (HTTP, database, etc.) that
were established during a previous invocation.
http://amzn.to/2jzLmkb
max 5 mins execution time
http://bit.ly/2w6ItdI
CONSIDER
PARTIAL
FAILURES
AWS Lambda
docs
AWS Lambda polls your stream and
invokes your Lambda function.
Therefore, if a Lambda function fails,
AWS Lambda attempts to process the
erring batch of records until the time
the data expires.
http://amzn.to/2vs2lIg
vs
processing halts until failed
events are retried successfully/
expired from stream
prioritize realtime-ness,
retry failed events with best effort,
then skip
SNS
Kinesis
SQS
after 3 attempts
share processing logic
events are processed in
chronological order
failed events are retried out
of sequence
PROCESS SQS
WITH RECURSIVE
FUNCTIONS
http://bit.ly/2npomX6
AVOID HOT
KINESS
STREAMS
AWS Lambda
docs
Each shard can support up to
5 transactions per second for
reads, up to a maximum total data
read rate of 2 MB per second.
http://amzn.to/2ubyaot
AWS Lambda
docs
If your stream has 100 active
shards, there will be 100 Lambda
functions running concurrently.
Then, each Lambda function
processes events on a shard in
the order that they arrive.
http://amzn.to/2ubyaot
when no. of processors goes up…
ReadProvisionedThroughputExceeded
can have too many Kinesis read operations…
ReadRecords.IteratorAge
unpredictable spikes in read ‘latency’…
can kinda workaround…
http://bit.ly/2uv5LsH
clever, but costly
new tool, new problems
but they’re easier to deal with
@theburningmonk
theburningmonk.com
github.com/theburningmonk
http://bit.ly/2yQZj1H

More Related Content

PPTX
Learning the Alphabet: A/B, CD and [E-Z] in the Docker Datacenter by Brett Ti...
PDF
DCEU 18: From Monolith to Microservices
PDF
Serverless Functions: Accelerating DevOps Adoption
PDF
Use Docker to Deliver Cognitive Services Running Cross Platform and Multi Clo...
PDF
Docker Meetup at Docker HQ: Docker Cloud
PDF
Containers & Cloud Native Ops Cloud Foundry Approach
PDF
Making Friendly Microservices by Michele Titlol
PDF
Digital Transformation with Docker, Cloud, and DevOps: How JCPenney Handles B...
Learning the Alphabet: A/B, CD and [E-Z] in the Docker Datacenter by Brett Ti...
DCEU 18: From Monolith to Microservices
Serverless Functions: Accelerating DevOps Adoption
Use Docker to Deliver Cognitive Services Running Cross Platform and Multi Clo...
Docker Meetup at Docker HQ: Docker Cloud
Containers & Cloud Native Ops Cloud Foundry Approach
Making Friendly Microservices by Michele Titlol
Digital Transformation with Docker, Cloud, and DevOps: How JCPenney Handles B...

What's hot (20)

PDF
DockerCon 18 Cool Hacks: Cloud Native ML with Docker Enterprise Edition
PDF
Javantura v4 - Self-service app deployment with Kubernetes and OpenShift - Ma...
PPTX
Kubernetes from the ground up
PDF
OpenWhisk Under the Hood -- London Oct 16 2016
PDF
DCSF19 Kubernetes Security with OPA
PDF
Building Your NoSQL Ship: How an Enterprise Transitioned from a RDBMS to NoSQ...
PPTX
Infrastructure as Code and AWS CDK
PDF
Docker in Production at the Aurora Team
PDF
DockerCon SF 2015: Faster, Cheaper, Safer
PDF
OpenWhisk Deep Dive: the action container model
PDF
DCSF 19 Improving the Human Condition with Docker
PDF
DCSF 19 Docker Enterprise Platform and Architecture
PPTX
Containers and Kubernetes
PPTX
Docker for the Enterprise with Containers as a Service by Banjot Chanana
PDF
Considerations for operating docker at scale
PDF
56k.cloud training
PPTX
Cloud foundry: The Platform for Forging Cloud Native Applications
PPTX
Dockercon 2019 Developing Apps with Containers, Functions and Cloud Services
PDF
Building and Running Workloads the Knative Way
PDF
Netflix Open Source: Building a Distributed and Automated Open Source Program
DockerCon 18 Cool Hacks: Cloud Native ML with Docker Enterprise Edition
Javantura v4 - Self-service app deployment with Kubernetes and OpenShift - Ma...
Kubernetes from the ground up
OpenWhisk Under the Hood -- London Oct 16 2016
DCSF19 Kubernetes Security with OPA
Building Your NoSQL Ship: How an Enterprise Transitioned from a RDBMS to NoSQ...
Infrastructure as Code and AWS CDK
Docker in Production at the Aurora Team
DockerCon SF 2015: Faster, Cheaper, Safer
OpenWhisk Deep Dive: the action container model
DCSF 19 Improving the Human Condition with Docker
DCSF 19 Docker Enterprise Platform and Architecture
Containers and Kubernetes
Docker for the Enterprise with Containers as a Service by Banjot Chanana
Considerations for operating docker at scale
56k.cloud training
Cloud foundry: The Platform for Forging Cloud Native Applications
Dockercon 2019 Developing Apps with Containers, Functions and Cloud Services
Building and Running Workloads the Knative Way
Netflix Open Source: Building a Distributed and Automated Open Source Program

Viewers also liked (20)

PDF
Building Cloud-Native Applications with Kubernetes, Helm and Kubeless
PPTX
Serverless Reality
PPTX
Serverless on Kubernetes
PDF
Rafal Gancarz - Serverless for the Enterprise - Codemotion Milan 2017
DOCX
Elk Reporting Ii
PPTX
Cloud integration: what's in it for you? (Toon Vanhoutte & Massimo Crippa at ...
PPTX
Conociendo los servicios adicionales en big data
PDF
Integrating the CDO Role Into Your Organization; Managing the Disruption (MIT...
PPTX
C++ Coroutines
PDF
The Beauty of BAD code
PPTX
Harmonizing Multi-tenant HBase Clusters for Managing Workload Diversity
PDF
소셜 코딩 GitHub & branch & branch strategy
ODP
Open Source Monitoring Tools Shootout
PPTX
SPSNL17 - Securing Office 365 and Microsoft Azure like a rock star (or groupi...
PPTX
Oracle integration cloud service (ICS) best practices learned from the field ...
PPTX
Azure OMS
PPT
15 oefeningen schakelen van weerstanden
PDF
Rio Cloud Computing Meetup 25/01/2017 - Lançamentos do AWS re:Invent 2016
PPTX
SQL saturday 623 TLV - SQL AZURE
PDF
02 a holistic approach to big data
Building Cloud-Native Applications with Kubernetes, Helm and Kubeless
Serverless Reality
Serverless on Kubernetes
Rafal Gancarz - Serverless for the Enterprise - Codemotion Milan 2017
Elk Reporting Ii
Cloud integration: what's in it for you? (Toon Vanhoutte & Massimo Crippa at ...
Conociendo los servicios adicionales en big data
Integrating the CDO Role Into Your Organization; Managing the Disruption (MIT...
C++ Coroutines
The Beauty of BAD code
Harmonizing Multi-tenant HBase Clusters for Managing Workload Diversity
소셜 코딩 GitHub & branch & branch strategy
Open Source Monitoring Tools Shootout
SPSNL17 - Securing Office 365 and Microsoft Azure like a rock star (or groupi...
Oracle integration cloud service (ICS) best practices learned from the field ...
Azure OMS
15 oefeningen schakelen van weerstanden
Rio Cloud Computing Meetup 25/01/2017 - Lançamentos do AWS re:Invent 2016
SQL saturday 623 TLV - SQL AZURE
02 a holistic approach to big data

Similar to Serverless in production (O'Reilly Software Architecture) (20)

PDF
Serverless in production, an experience report (Going Serverless)
PDF
Serverless in production, an experience report (JeffConf)
PDF
Serverless in production, an experience report (microservices london)
PDF
Serverless in Production, an experience report (AWS UG South Wales)
PDF
Serverless in production, an experience report (NDC London, 31 Jan 2018)
PDF
Serverless in production, an experience report (NDC London 2018)
PDF
Serverless in production, an experience report (FullStack 2018)
PDF
Serverless in production, an experience report (London js community)
PDF
Serverless in production, an experience report (linuxing in london)
PDF
Serverless in production, an experience report (CoDe-Conf)
PDF
Serverless in production, an experience report
PDF
Serverless in production, an experience report (LNUG)
PDF
Serverless in Production, an experience report (cloudXchange)
PDF
Serverless in production, an experience report (London DevOps)
PDF
Serverless in production, an experience report (BuildStuff)
PDF
Serverless in production, an experience report (codemotion milan)
PDF
Yan Cui - Serverless in production, an experience report - Codemotion Milan 2017
PDF
Serverless in production, an experience report (IWOMM)
PDF
Serverless in production, an experience report (Going Serverless, 28 Feb 2018)
PDF
AWS Lambda from the trenches (Serverless London)
Serverless in production, an experience report (Going Serverless)
Serverless in production, an experience report (JeffConf)
Serverless in production, an experience report (microservices london)
Serverless in Production, an experience report (AWS UG South Wales)
Serverless in production, an experience report (NDC London, 31 Jan 2018)
Serverless in production, an experience report (NDC London 2018)
Serverless in production, an experience report (FullStack 2018)
Serverless in production, an experience report (London js community)
Serverless in production, an experience report (linuxing in london)
Serverless in production, an experience report (CoDe-Conf)
Serverless in production, an experience report
Serverless in production, an experience report (LNUG)
Serverless in Production, an experience report (cloudXchange)
Serverless in production, an experience report (London DevOps)
Serverless in production, an experience report (BuildStuff)
Serverless in production, an experience report (codemotion milan)
Yan Cui - Serverless in production, an experience report - Codemotion Milan 2017
Serverless in production, an experience report (IWOMM)
Serverless in production, an experience report (Going Serverless, 28 Feb 2018)
AWS Lambda from the trenches (Serverless London)

More from Yan Cui (20)

PDF
How to win the game of trade-offs
PDF
How to choose the right messaging service
PDF
How to choose the right messaging service for your workload
PDF
Patterns and practices for building resilient serverless applications.pdf
PDF
Lambda and DynamoDB best practices
PDF
Lessons from running AppSync in prod
PDF
Serverless observability - a hero's perspective
PDF
How to ship customer value faster with step functions
PDF
How serverless changes the cost paradigm
PDF
Why your next serverless project should use AWS AppSync
PDF
Build social network in 4 weeks
PDF
Patterns and practices for building resilient serverless applications
PDF
How to bring chaos engineering to serverless
PDF
Migrating existing monolith to serverless in 8 steps
PDF
Building a social network in under 4 weeks with Serverless and GraphQL
PDF
FinDev as a business advantage in the post covid19 economy
PDF
How to improve lambda cold starts
PDF
What can you do with lambda in 2020
PDF
A chaos experiment a day, keeping the outage away
PDF
How to debug slow lambda response times
How to win the game of trade-offs
How to choose the right messaging service
How to choose the right messaging service for your workload
Patterns and practices for building resilient serverless applications.pdf
Lambda and DynamoDB best practices
Lessons from running AppSync in prod
Serverless observability - a hero's perspective
How to ship customer value faster with step functions
How serverless changes the cost paradigm
Why your next serverless project should use AWS AppSync
Build social network in 4 weeks
Patterns and practices for building resilient serverless applications
How to bring chaos engineering to serverless
Migrating existing monolith to serverless in 8 steps
Building a social network in under 4 weeks with Serverless and GraphQL
FinDev as a business advantage in the post covid19 economy
How to improve lambda cold starts
What can you do with lambda in 2020
A chaos experiment a day, keeping the outage away
How to debug slow lambda response times

Recently uploaded (20)

PDF
The AI Revolution in Customer Service - 2025
PDF
NewMind AI Weekly Chronicles – August ’25 Week IV
PDF
Launch a Bumble-Style App with AI Features in 2025.pdf
PDF
Streamline Vulnerability Management From Minimal Images to SBOMs
PPTX
AQUEEL MUSHTAQUE FAKIH COMPUTER CENTER .
PDF
Data Virtualization in Action: Scaling APIs and Apps with FME
PDF
IT-ITes Industry bjjbnkmkhkhknbmhkhmjhjkhj
PDF
Human Computer Interaction Miterm Lesson
PPTX
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
PDF
The-2025-Engineering-Revolution-AI-Quality-and-DevOps-Convergence.pdf
PPTX
Information-Technology-in-Human-Society.pptx
PDF
Early detection and classification of bone marrow changes in lumbar vertebrae...
PDF
Decision Optimization - From Theory to Practice
PDF
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
PDF
Lung cancer patients survival prediction using outlier detection and optimize...
PDF
Identification of potential depression in social media posts
PDF
A hybrid framework for wild animal classification using fine-tuned DenseNet12...
PDF
A symptom-driven medical diagnosis support model based on machine learning te...
PDF
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
PDF
Co-training pseudo-labeling for text classification with support vector machi...
The AI Revolution in Customer Service - 2025
NewMind AI Weekly Chronicles – August ’25 Week IV
Launch a Bumble-Style App with AI Features in 2025.pdf
Streamline Vulnerability Management From Minimal Images to SBOMs
AQUEEL MUSHTAQUE FAKIH COMPUTER CENTER .
Data Virtualization in Action: Scaling APIs and Apps with FME
IT-ITes Industry bjjbnkmkhkhknbmhkhmjhjkhj
Human Computer Interaction Miterm Lesson
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
The-2025-Engineering-Revolution-AI-Quality-and-DevOps-Convergence.pdf
Information-Technology-in-Human-Society.pptx
Early detection and classification of bone marrow changes in lumbar vertebrae...
Decision Optimization - From Theory to Practice
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
Lung cancer patients survival prediction using outlier detection and optimize...
Identification of potential depression in social media posts
A hybrid framework for wild animal classification using fine-tuned DenseNet12...
A symptom-driven medical diagnosis support model based on machine learning te...
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
Co-training pseudo-labeling for text classification with support vector machi...

Serverless in production (O'Reilly Software Architecture)