SlideShare a Scribd company logo
1 of 31
BY ALEXIS CUADRADO
AWSLAMBDA@SCALE
DESIGNING FOR HIGH LOAD
LAMBDA @ SCALE #NERDEARLA
LOOK, IT SCALES
AUTOMATICALLY!
MANAGED SERVICE
ACCOUNT
CONCURRENCY
COLD STARTS
THROTTLING
BURST
CONCURRENCY
EXECUTION
COSTS
GETTINGOURLAMBDAFUNCTIONSTO
PERFORMASREQUIRED
THE CHALLENGE OF SCALE
THREEPERFORMANCEINDICATORS
$
LATENCY THROUGHPUT
COSTPER
TRANSACTION
seconds or milliseconds transactions per second (TPS) USD
MINIMIZE MAXIMIZE MINIMIZE
TIP: Define proper Service Level Objectives (SLOs)
LAMBDA @ SCALE #NERDEARLA
(meet demand)
MINIMIZING LATENCY
BY ALEXIS CUADRADO
AWSLAMBDA@SCALE
MAKE EVERY MILLISECOND COUNT
ANATOMYOFALAMBDAINVOCATION
1
2
RUNTIME
3
COMPUTE SUBSTRATE
EXECUTION ENVIRONMENT
HANDLER CODE
STATIC CODE
4 5
Download Code Start Environment Bootstrap Runtime Run Static Code Run Handler
1 2 3 4 5
LAMBDA @ SCALE #NERDEARLA
initializing
executing
available
invocation
LONGLIVETHEEXECUTIONENVIRONMENT!
1 2 3
TIME
EXECUTION ENVIRONMENT
LAMBDA @ SCALE #NERDEARLA
STARTEDONTHECOLDFOOT
initializing
executing
available
invocation
1
2
3
E1
E2
4
5
cold start
Download Code Start Environment Set up Runtime Run Static Code Run Handler
1 2 3 4 5
LAMBDA @ SCALE #NERDEARLA
DISSECTING LATENCY
Download Code Start Environment Bootstrap Runtime Run Static Code Run Handler
1 2 3 4 5
COLD START ( INITIALIZATION ) EXECUTION
LAMBDA @ SCALE #NERDEARLA
OPTIMIZEHANDLERLOGIC
EMPLOY EFFICIENT ALGORITHMS
A B
C
Put those hard-won
whiteboarding skills to use
Parallelize I/O operations
(e.g. S3 downloads)
Use Step Functions
LAMBDA @ SCALE #NERDEARLA
AVOID ORCHESTRATION
MOVE WORK OUTSIDE HANDLER
D
MULTI-THREADING
Download Code Start Environment Set up Runtime Run Static Code Run Handler
1 2 3 4 5
Reusable objects should be
statically initialized
TURNUPTHERAM!
Example Python Function: Return all prime numbers between 0 and 10K
MEMORY (MB) EXECUTION DURATION (MS)
128 170
256 80
512 40
1024 20
1536 17
3008 17
MEMORY = vCPU NETWORK THROUGHPUT
lowest latency
negative returns beyond this point
Beware of
LAMBDA @ SCALE #NERDEARLA
Download Code Start Environment Set up Runtime Run Static Code Run Handler
1 2 3 4 5
TIP: Enable Lambda Insights for profiling
STATICINITIALIZATIONDONERIGHT
+ 120 ms
LAMBDA @ SCALE #NERDEARLA
Download Code Start Environment Set up Runtime Run Static Code Run Handler
1 2 3 4 5
PACKAGESIZEMATTERS
Download Deployment Package Start Environment Bootstrap Runtime
Download Deployment
Package
Start Environment Bootstrap Runtime Run Static Code
Run
Handler
50 MB
20 MB
TIPS:
• Audit and remove unused dependencies
• Use minifiers (e.g. node-minify)
LAMBDA @ SCALE #NERDEARLA
1
1
3 4 5
2
3
2
ONCOLDSTARTFREQUENCY
LAMBDA @ SCALE #NERDEARLA
?
?
?
? COLD
WARM
Isn’t that what we’re all asking in our own lives?
HOW CAN WE GET MORE OF THIS?
... AND LESS OF THIS?
CONCURRENCY
t₀ t₁
E3
concurrency = 1 t₂
E1
E2
concurrency = 3
1 2
3
4
TIME
LAMBDA @ SCALE #NERDEARLA
PROVISIONALLTHECONCURRENCY!
t₀
E3
E1
E2
provisioned concurrency = 3
1
2
3
4
5
t₁
concurrency is provisioned
requests start arriving
TIME
NO COLD STARTS!
LAMBDA @ SCALE #NERDEARLA
AUTOSCALING
TIME
DEMAND /
CONCURRENCY
LAMBDA @ SCALE #NERDEARLA
MAXIMIZING
BY ALEXIS CUADRADO
AWSLAMBDA@SCALE
THROUGHPUT
LEAVE NO REQUEST BEHIND
AFUNCTION’STHROUGHPUT
1 2
1 2
1 2 3 4
= 2 TPS
THROUGHPUT =
CONCURRENCY
LATENCY
= 4 TPS
= 4 TPS
= 500 ms
= 1
= 500 ms
= 500 ms = 500 ms
= 2
= 250 ms = 250 ms = 250 ms = 250 ms
= 1 3 4
LAMBDA @ SCALE #NERDEARLA
REDUCINGLATENCYTOGAINTHROUGHPUT
250 ms
1 2 3 4 5 6 7 8
1 2 3 4 5 6 7 8 9 10
1 2 4
3
= 4 TPS
1 sec
100 ms
50 ms
125 ms
1
2
3
4
= 8 TPS
= 10 TPS
= 1
LAMBDA @ SCALE #NERDEARLA
?
OH,THERATELIMITS
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
100 ms
50 ms
50 ms
4A
3
4B
= 20 TPS
= 10 TPS
= STILL 10 TPS
= 1
Throughput capped due to rate limiting
Additional invocations will increase
concurrency or be throttled
LAMBDA @ SCALE #NERDEARLA
1 3 5 7 9 11 13 15 17 19
2 4 6 8 10 12 14 16 18 20
ASYNCHRONOUS
INVOCATIONS
SYNCHRONOUS
INVOCATIONS
No limit!
ACCOUNTCONCURRENCY
TIME
E1
E100
E1
E800
THROTTLED
X
concurrency = 200
concurrency = 800
account concurrency = 1000
ANOTHER FUNCTION
OUR FUNCTION
LAMBDA @ SCALE #NERDEARLA
Everyone gets their share
RESERVEDCONCURRENCY
TIME
E1
E300
E1
E100
THROTTLED
X
concurrency = 300
concurrency = 100
account concurrency = 1000
OUR FUNCTION
ANOTHER FUNCTION
reserved concurrency = 900
-1900
LAMBDA @ SCALE #NERDEARLA
BURSTCONCURRENCY
TIME (MINUTES)
CONCURRENCY
(UNITS)
5K
3000
2500
1000 1500
1000
0 0
500 1000
2500
1
0 3
2 4 6
5 7 9
8
2K
1K
3K
4K
+500 +500 +500 +500
+0 +0 +0 +500 +500
BURST QUOTA = 3000
AVAILABLE BURST
ACCOUNT CONCURRENCY = 5000
BURST THROTTLE ZONE
ACCOUNT THROTTLE ZONE
BURST THROTTLE ZONE
FUNCTION CONCURRENCY
Super
(OR HOW FAST CONCURRENCY CAN RISE)
LAMBDA @ SCALE #NERDEARLA
MINIMIZING
BY ALEXIS CUADRADO
AWSLAMBDA@SCALE
$ COSTS
GET THE BIGGEST BANG FOR YOUR BUCK
HOWLAMBDAPRICINGWORKS
$
COSTPER
TRANSACTION
also COST PER EXECUTION
$
= COMPUTE
CHARGES
REQUEST
CHARGES
Rates vary based on Region and CPU Architecture
Free Tier available
Elegible for Savings Plans
fixed fee per request
EXECUTION
DURATION
ALLOCATED
MEMORY
LATENCY
determines
influences
LAMBDA @ SCALE #NERDEARLA
POWERTUNING
alexcasalboni/aws-lambda-power-tuning
OPTIMAL
MEMORY
CONFIGURATION
LAMBDA @ SCALE #NERDEARLA
ARMYOURSELF(WITHGRAVITON2)
COST
LATENCY
LAMBDA @ SCALE #NERDEARLA
PUTTINGITALLTOGETHER
BY ALEXIS CUADRADO
AWSLAMBDA@SCALE
BEFORE OUR BRAINS BURST
WHATWE(HOPEFULLY)LEARNEDTODAY
KEY PERFORMANCE METRICS
Getting our Lambda Functions to perform as required
THE CHALLENGE OF SCALE
COLD STARTS
HOW LAMBDA PROCESSES INVOCATIONS
Execution Environments
CONCURRENCY
HOW LAMBDA SCALES
HOW PRICING WORKS
QUOTAS
CONTROLS
ACCOUNT CONCURRENCY
BURST CONCURRENCY
PROVISIONED CONCURRENCY
RESERVED CONCURRENCY
(how fast)
(how much)
(pre-warm)
(set aside)
POWER TUNING
$
LATENCY - THROUGHPUT - COST PER TRANSACTION
WHAT FACTORS AFFECT LATENCY
THROUGHPUT CONSIDERATIONS
Interplay between memory, execution time and costs
COLD START EXECUTION
Rate Limits, Concurrency Quotas and Controls
Relation to Latency and Concurrency
OPTIMIZATION TECHNIQUES Price-performance gains with arm64 (Graviton2)
LAMBDA @ SCALE #NERDEARLA
LAMBDA @ SCALE #NERDEARLA
THANKYOU
@alexscuadrado
/in/alexis-cuadrado
FOLLOW ME
𝕏
alexis.hashnode.dev

More Related Content

Similar to AWS Lambda Scaling: Minimizing Latency, Maximizing Throughput & Reducing Costs

Scaling Twitter
Scaling TwitterScaling Twitter
Scaling TwitterBlaine
 
SDPHP - Percona Toolkit (It's Basically Magic)
SDPHP - Percona Toolkit (It's Basically Magic)SDPHP - Percona Toolkit (It's Basically Magic)
SDPHP - Percona Toolkit (It's Basically Magic)Robert Swisher
 
SQL and PLSQL features for APEX Developers
SQL and PLSQL features for APEX DevelopersSQL and PLSQL features for APEX Developers
SQL and PLSQL features for APEX DevelopersConnor McDonald
 
AWS Lambda from the trenches
AWS Lambda from the trenchesAWS Lambda from the trenches
AWS Lambda from the trenchesYan Cui
 
PagerDuty | OSCON 2016 Failure Testing
PagerDuty | OSCON 2016 Failure TestingPagerDuty | OSCON 2016 Failure Testing
PagerDuty | OSCON 2016 Failure TestingPagerDuty
 
Big data meetup 2012 01-18 - stripped
Big data meetup 2012 01-18 - strippedBig data meetup 2012 01-18 - stripped
Big data meetup 2012 01-18 - strippedMalcolm Box
 
Getting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at Scale
Getting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at ScaleGetting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at Scale
Getting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at ScaleBishop Fox
 
Apache Spark Core—Deep Dive—Proper Optimization
Apache Spark Core—Deep Dive—Proper OptimizationApache Spark Core—Deep Dive—Proper Optimization
Apache Spark Core—Deep Dive—Proper OptimizationDatabricks
 
Reactor, Reactive streams and MicroServices
Reactor, Reactive streams and MicroServicesReactor, Reactive streams and MicroServices
Reactor, Reactive streams and MicroServicesStéphane Maldini
 
Crystal is a Rubyists friend (quick anecdote)
Crystal is a Rubyists friend (quick anecdote)Crystal is a Rubyists friend (quick anecdote)
Crystal is a Rubyists friend (quick anecdote)Forrest Chang
 
Simplereach: Counters at Scale: A Cautionary Tale
Simplereach: Counters at Scale: A Cautionary TaleSimplereach: Counters at Scale: A Cautionary Tale
Simplereach: Counters at Scale: A Cautionary TaleDataStax Academy
 
Counters At Scale - A Cautionary Tale
Counters At Scale - A Cautionary TaleCounters At Scale - A Cautionary Tale
Counters At Scale - A Cautionary TaleEric Lubow
 
Enterprise Network Manager: the Router-On-A-stick
Enterprise Network Manager: the Router-On-A-stickEnterprise Network Manager: the Router-On-A-stick
Enterprise Network Manager: the Router-On-A-stick3Anetwork com
 
1.1 Intro to WinDDI.pdf
1.1 Intro to WinDDI.pdf1.1 Intro to WinDDI.pdf
1.1 Intro to WinDDI.pdfssuser8b6c85
 
Active Record & SQL - Bulk Insert
Active Record & SQL - Bulk InsertActive Record & SQL - Bulk Insert
Active Record & SQL - Bulk InsertZvika Epstein
 
Reactive Microservices with JRuby and Docker
Reactive Microservices with JRuby and DockerReactive Microservices with JRuby and Docker
Reactive Microservices with JRuby and DockerJohn Scattergood
 

Similar to AWS Lambda Scaling: Minimizing Latency, Maximizing Throughput & Reducing Costs (20)

Scaling Twitter
Scaling TwitterScaling Twitter
Scaling Twitter
 
Load testing with Blitz
Load testing with BlitzLoad testing with Blitz
Load testing with Blitz
 
SDPHP - Percona Toolkit (It's Basically Magic)
SDPHP - Percona Toolkit (It's Basically Magic)SDPHP - Percona Toolkit (It's Basically Magic)
SDPHP - Percona Toolkit (It's Basically Magic)
 
SQL and PLSQL features for APEX Developers
SQL and PLSQL features for APEX DevelopersSQL and PLSQL features for APEX Developers
SQL and PLSQL features for APEX Developers
 
Samplab19
Samplab19Samplab19
Samplab19
 
AWS Lambda from the trenches
AWS Lambda from the trenchesAWS Lambda from the trenches
AWS Lambda from the trenches
 
PagerDuty | OSCON 2016 Failure Testing
PagerDuty | OSCON 2016 Failure TestingPagerDuty | OSCON 2016 Failure Testing
PagerDuty | OSCON 2016 Failure Testing
 
Big data meetup 2012 01-18 - stripped
Big data meetup 2012 01-18 - strippedBig data meetup 2012 01-18 - stripped
Big data meetup 2012 01-18 - stripped
 
Getting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at Scale
Getting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at ScaleGetting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at Scale
Getting Buzzed on Buzzwords: Using Cloud & Big Data to Pentest at Scale
 
Apache Spark Core—Deep Dive—Proper Optimization
Apache Spark Core—Deep Dive—Proper OptimizationApache Spark Core—Deep Dive—Proper Optimization
Apache Spark Core—Deep Dive—Proper Optimization
 
Reactor, Reactive streams and MicroServices
Reactor, Reactive streams and MicroServicesReactor, Reactive streams and MicroServices
Reactor, Reactive streams and MicroServices
 
Crystal is a Rubyists friend (quick anecdote)
Crystal is a Rubyists friend (quick anecdote)Crystal is a Rubyists friend (quick anecdote)
Crystal is a Rubyists friend (quick anecdote)
 
Simplereach: Counters at Scale: A Cautionary Tale
Simplereach: Counters at Scale: A Cautionary TaleSimplereach: Counters at Scale: A Cautionary Tale
Simplereach: Counters at Scale: A Cautionary Tale
 
Counters At Scale - A Cautionary Tale
Counters At Scale - A Cautionary TaleCounters At Scale - A Cautionary Tale
Counters At Scale - A Cautionary Tale
 
Enterprise Network Manager: the Router-On-A-stick
Enterprise Network Manager: the Router-On-A-stickEnterprise Network Manager: the Router-On-A-stick
Enterprise Network Manager: the Router-On-A-stick
 
1.1 Intro to WinDDI.pdf
1.1 Intro to WinDDI.pdf1.1 Intro to WinDDI.pdf
1.1 Intro to WinDDI.pdf
 
Active Record & SQL - Bulk Insert
Active Record & SQL - Bulk InsertActive Record & SQL - Bulk Insert
Active Record & SQL - Bulk Insert
 
MLflow with R
MLflow with RMLflow with R
MLflow with R
 
Reactive Microservices with JRuby and Docker
Reactive Microservices with JRuby and DockerReactive Microservices with JRuby and Docker
Reactive Microservices with JRuby and Docker
 
Kamailio - SIP Servers Everywhere
Kamailio - SIP Servers EverywhereKamailio - SIP Servers Everywhere
Kamailio - SIP Servers Everywhere
 

Recently uploaded

What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noidabntitsolutionsrishis
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Matt Ray
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Hr365.us smith
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odishasmiwainfosol
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 

Recently uploaded (20)

What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 

AWS Lambda Scaling: Minimizing Latency, Maximizing Throughput & Reducing Costs