SlideShare a Scribd company logo
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
• Netflix – background and evolution
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
• Netflix – background and evolution 
• Monolithic Apps
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Load Balancer 
Monolithic App 
Account 
Component 
Catalog 
Component 
Recommendation 
Component 
Customer Service 
Component 
Database
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Time
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
User Accounts 
Shopping Cart 
Product Catalog 
Customer Service
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Product Catalog Customer Service
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Tipping Point 
& & 
Organizational Growth Disverse Functionality Bottleneck in 
Monolithic stack
MicroServices 
Perhaps?
• Netflix – background and evolution 
• Monolithic Apps 
• Microservices
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
MicroService 
MegaService
Attribution: Adrian Cockroft, Martin Fowler …
• Write programs that do one thing and do it well. 
• Write programs to work together. 
tr 'A-Z' 'a-z' < doc.txt | tr -cs 'a-z' 'n' | sort | uniq | comm -23 - 
/usr/share/dict/words 
Program to print misspelt words in doc.txt
Comparing Monolithic to MicroServices
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Load Balancer 
Monolithic App 
Account 
Component 
Catalog 
Component 
Recommendation 
Component 
Customer Service 
Component 
Database
Load Balancer 
Account 
Service 
Catalog 
Service 
Recommendation 
Service 
Customer Service 
Service 
Catalog 
DB 
API Gateway 
Customer 
DB
• Netflix – background and evolution 
• Monolithic Apps 
• Microservices 
– Why?
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Your 
App/Service 
Service X 
Service Y 
Service Z 
Service L 
Service M
• Netflix – background and evolution 
• Monolithic Apps 
• Microservices 
– Challenges and Solutions
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Vs
Heterogeneity 
Can lead to chaos if not designed right …
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
non-JVM
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Service Discovery 
What’s your address?
Account 
Service 
Catalog 
Service 
Recommendation 
Service 
Customer Service 
Service 
X 
Service Y 
Service 
Z 
Service 
Registry 
Service 
(e.g. Netflix Eureka)
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
2 Billion 
~20 Billion Fan 
1 Request 1 Request 
Monolithic 
App 
MicroServices
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Your 
App/Service 
Service X 
Service Y 
Service Z 
Cache 
Cluster 
Cache 
Cluster 
Tip: Config your TTL based on flexibility with data staleness!
Your 
App/Service 
Service X 
Service Y 
Service Z 
Fn {A, B, C} 
Cache 
Cluster 
Cache 
Cluster
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
A/B Test 
Service 
App Service X Service Y Service Z 
User Account 
Service
A/B Test 
Service 
App Service X Service Y Service Z 
User Account 
Service 
reduces dependency 
load
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Data Serialization Overhead 
Data 
transformation 
getMovies() getMovie() getMovieMetadata( 
) 
C 
l 
i 
e 
n 
t 
D 
C 
l 
i 
e 
n 
t 
C 
C 
l 
i 
e 
n 
t 
B 
Service A Service B Service C Service D 
X X Avro 
JSON Xml 
Overall Response Time
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
A single “bad” service can still bring your service down
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Your 
App/Service 
Service X 
Service Y 
Service Z 
Service L 
Service M
Your 
App/Service 
Service X 
Service Y 
Service Z 
Service L 
Service M 
Your 
App/SYeoruvirc e 
App/Service
Your 
App/Service 
Service X 
Service Y 
Service Z 
Service L 
Service M 
Your 
App/SYeoruvirc e 
App/Service 
Service X 
Service Y 
Service Z 
Service L 
Service M
http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/WhatIsAutoScaling.html
http://techblog.netflix.com/2013/11/scryer-netflixs- 
predictive-auto-scaling.html
1.
Account 
Service 1 
Recommendation 
Service 1 
Customer Service 
Service 1 
API Gateway 
Account 
Service N 
Recommendation 
Service N 
Customer Service 
Service N 
Customer Service 
Load Balancer 
Reco Service 
Load Balancer 
Account Service 
Load Balancer 
ELB
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Account 
Service 1 
Recommendation 
Service 1 
Customer Service 
Service 1 
API Gateway 
Account 
Service N 
Recommendation 
Service N 
Customer Service 
Service N 
Account Service 
LB 
Recommendation 
Service LB 
Customer Service 
Service LB 
ELB
http://github.com/netflix/ribbon
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Service Dependency Visualization
Your Service 
XY Farm
How many dependencies does my service have? 
What is the Call Volume on my Service? 
Are any Dependency Services running Hot? 
What are the Top N Slowest “Business Transactions”? 
What are the sample HTTP Requests/Responses that had a 
500 Error Code in the last 30 minutes?
You 
Your Service Dependency 
Graph
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
• Netflix – background and evolution 
• Monolithic Apps 
• Microservices 
– Challenges and Solutions 
– Best Practices
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
three
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Fault Injection Testing (FIT) 
Device ELB Service B 
Service C 
Internet Zuul 
Edge 
Device or Account Override 
Service A 
Request-level simulations 
Refer Re:Invent Talk “Embracing Failure: Fault Injection and 
Service Reliability” – PFC305
https://github.com/Netflix/SimianArmy
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
• Netflix – background and evolution 
• Monolithic Apps 
• Microservices 
– Challenges and Solutions 
– Best Practices 
• InterProcess Communication
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Netflix IPC Stack (1.0) 
A 
p 
a 
c 
h 
e 
H 
T 
T 
P 
C 
l 
i 
e 
n 
t 
Server (Karyon) 
HTTP Admin Console 
Eureka (Service 
Registry) 
Apache 
Tomcat 
Client 
H 
y 
s 
t 
r 
i 
x 
E 
V 
C 
a 
c 
h 
e 
Ribbon 
Load 
Balancing 
Metrics 
(Servo) 
Eureka 
Integration 
Bootstrapping (Governator) 
Metrics (Servo) 
Eureka Integration 
Registration 
Fetch Registry 
A Blocking Architecture
Netflix IPC Stack (2.0) 
Client (Ribbon 2.0) 
Server (Karyon) 
Admin Console 
Eureka (Service 
Registry) 
Ribbon Transport 
Load 
Balancing 
Metrics 
(Servo) 
Eureka 
Integration 
Bootstrapping (Governator) 
Metrics (Servo) 
HTTP 
Eureka Integration 
Registration 
Fetch Registry 
Ribbon 
Hystrix 
EVCache 
R 
x 
N 
e 
t 
t 
y 
RxNetty 
UDP 
TCP 
WebSockets 
SSE 
A Completely Reactive Architecture
Details: http://www.meetup.com/Netflix-Open-Source- 
Platform/events/184153592/
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
interface 
@Http(method = HttpMethod.GET, uriTemplate="/users/{userId}/recommendations") 
@Hystrix(fallbackHandler = RecommendationFallbackHandler.class) 
@EvCache(name = "movie-rec", appName = "movieService", cacheKeyTemplate = 
"{userId}") 
recommendationsByUserId @Var "userId" 
MovieService movieService = Ribbon.from(MovieService.class); 
Observable<Recommendations> result = 
movieService.recommendationsByUserId(“user1”) 
.toObservable();
NetflixOSS
NetflixOSS 
http://netflix.github.co
NetflixOSS 
• Eureka 
• Karyon 
• Ribbon 
• Hystrix 
• Archaius 
• Servo 
• EVCache 
• Curator/Exhibitor
Talk Time Title 
PFC-305 Wednesday, 1:15pm Embracing Failure: Fault Injection and Service Reliability 
BDT-403 Wednesday, 2:15pm Next Generation Big Data Platform at Netflix 
PFC-306 Wednesday, 3:30pm Performance Tuning EC2 
DEV-309 Wednesday, 3:30pm From Asgard to Zuul, How Netflix’s proven Open Source 
Tools can accelerate and scale your services 
ARC-317 Wednesday, 4:30pm Maintaining a Resilient Front-Door at Massive Scale 
PFC-304 Wednesday, 4:30pm Effective Inter-process Communications in the Cloud: The 
Pros and Cons of Micro Services Architectures 
ENT-209 Wednesday, 4:30pm Cloud Migration, Dev-Ops and Distributed Systems 
APP-310 Friday, 9:00am Scheduling using Apache Mesos in the Cloud
• Netflix – background and evolution 
• Monolithic Apps 
• Microservices 
– Challenges and Solutions 
– Best Practices 
• InterProcess Communication 
• Takeaways
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
Pros and Cons of a MicroServices Architecture talk at AWS ReInvent
http://techblog.netflix.com 
http://netflix.github.io 
http://martinfowler.com/articles/microservices.html 
http://microservices.io/
Please give us your feedback on this 
presentation 
Netflix Booth

More Related Content

What's hot (20)

PDF
VictoriaMetrics 15/12 Meet Up: 2022 Features Highlights
VictoriaMetrics
 
PDF
Kong Summit 2018 - Microservices: decomposing applications for testability an...
Chris Richardson
 
PDF
Why Microservice
Kelvin Yeung
 
PDF
Event driven autoscaling with KEDA
Nilesh Gule
 
PPTX
Kafka + Uber- The World’s Realtime Transit Infrastructure, Aaron Schildkrout
confluent
 
PPTX
Zuul @ Netflix SpringOne Platform
Mikey Cohen - Hiring Amazing Engineers
 
PDF
Spring Cloud Gateway
VMware Tanzu
 
PPTX
Kibana overview
Rinat Tainov
 
PDF
Service Mesh with Apache Kafka, Kubernetes, Envoy, Istio and Linkerd
Kai Wähner
 
PDF
Microservices Architectures: Become a Unicorn like Netflix, Twitter and Hailo
gjuljo
 
PDF
Scaling Twitter
Blaine
 
PPSX
Event Sourcing & CQRS, Kafka, Rabbit MQ
Araf Karsh Hamid
 
PDF
Microservices with Java, Spring Boot and Spring Cloud
Eberhard Wolff
 
PPTX
Microservices With Istio Service Mesh
Natanael Fonseca
 
PPTX
Rest API
Rohana K Amarakoon
 
PPTX
Microservice intro
ramesh_sharma
 
PPTX
ELK Stack
Phuc Nguyen
 
PDF
Microservice Architecture | Microservices Tutorial for Beginners | Microservi...
Edureka!
 
PPTX
Microservices
SmartBear
 
PPTX
Introducing MlFlow: An Open Source Platform for the Machine Learning Lifecycl...
DataWorks Summit
 
VictoriaMetrics 15/12 Meet Up: 2022 Features Highlights
VictoriaMetrics
 
Kong Summit 2018 - Microservices: decomposing applications for testability an...
Chris Richardson
 
Why Microservice
Kelvin Yeung
 
Event driven autoscaling with KEDA
Nilesh Gule
 
Kafka + Uber- The World’s Realtime Transit Infrastructure, Aaron Schildkrout
confluent
 
Zuul @ Netflix SpringOne Platform
Mikey Cohen - Hiring Amazing Engineers
 
Spring Cloud Gateway
VMware Tanzu
 
Kibana overview
Rinat Tainov
 
Service Mesh with Apache Kafka, Kubernetes, Envoy, Istio and Linkerd
Kai Wähner
 
Microservices Architectures: Become a Unicorn like Netflix, Twitter and Hailo
gjuljo
 
Scaling Twitter
Blaine
 
Event Sourcing & CQRS, Kafka, Rabbit MQ
Araf Karsh Hamid
 
Microservices with Java, Spring Boot and Spring Cloud
Eberhard Wolff
 
Microservices With Istio Service Mesh
Natanael Fonseca
 
Microservice intro
ramesh_sharma
 
ELK Stack
Phuc Nguyen
 
Microservice Architecture | Microservices Tutorial for Beginners | Microservi...
Edureka!
 
Microservices
SmartBear
 
Introducing MlFlow: An Open Source Platform for the Machine Learning Lifecycl...
DataWorks Summit
 

Viewers also liked (20)

PDF
MicroServices: Advantages ans Disadvantages
Dimitar Danailov
 
PPTX
Microservices pros and cons dark
Andrew Siemer
 
PDF
ML and Data Science at Uber - GITPro talk 2017
Sudhir Tonse
 
PPTX
Mastering Chaos - A Netflix Guide to Microservices
Josh Evans
 
PPTX
MicroServices at Netflix - challenges of scale
Sudhir Tonse
 
PPTX
Monoliths and Microservices
Bozhidar Bozhanov
 
PDF
Machine Learning for Q&A Sites: The Quora Example
Xavier Amatriain
 
PPTX
Culture
Reed Hastings
 
PDF
Scalable Microservices at Netflix. Challenges and Tools of the Trade
C4Media
 
PDF
20120223keystone
Jeff Hammerbacher
 
PDF
Micro-services Battle Scars
Richard Rodger
 
PDF
Design Patterns in Micro-services architectures & Gilmour
Piyush Verma
 
PDF
Serverless presentation
jasonsich
 
PPTX
Big Data Pipeline and Analytics Platform
Sudhir Tonse
 
DOCX
Part II - Summary of service oriented architecture (SOA) concepts, technology...
Mohammed Omar
 
PPTX
Big Data Pipeline and Analytics Platform Using NetflixOSS and Other Open Sour...
Sudhir Tonse
 
PDF
Software Architecture explained with Real Life Analogies
Antal Attila
 
PDF
Agile India 2012 Opening Talk
Naresh Jain
 
PPTX
Lecture 10 - Message Exchange Patterns
phanleson
 
PDF
How to Adopt Docker Within Your Enterprise Using IBM UrbanCode Deploy (Interc...
Michael Elder
 
MicroServices: Advantages ans Disadvantages
Dimitar Danailov
 
Microservices pros and cons dark
Andrew Siemer
 
ML and Data Science at Uber - GITPro talk 2017
Sudhir Tonse
 
Mastering Chaos - A Netflix Guide to Microservices
Josh Evans
 
MicroServices at Netflix - challenges of scale
Sudhir Tonse
 
Monoliths and Microservices
Bozhidar Bozhanov
 
Machine Learning for Q&A Sites: The Quora Example
Xavier Amatriain
 
Culture
Reed Hastings
 
Scalable Microservices at Netflix. Challenges and Tools of the Trade
C4Media
 
20120223keystone
Jeff Hammerbacher
 
Micro-services Battle Scars
Richard Rodger
 
Design Patterns in Micro-services architectures & Gilmour
Piyush Verma
 
Serverless presentation
jasonsich
 
Big Data Pipeline and Analytics Platform
Sudhir Tonse
 
Part II - Summary of service oriented architecture (SOA) concepts, technology...
Mohammed Omar
 
Big Data Pipeline and Analytics Platform Using NetflixOSS and Other Open Sour...
Sudhir Tonse
 
Software Architecture explained with Real Life Analogies
Antal Attila
 
Agile India 2012 Opening Talk
Naresh Jain
 
Lecture 10 - Message Exchange Patterns
phanleson
 
How to Adopt Docker Within Your Enterprise Using IBM UrbanCode Deploy (Interc...
Michael Elder
 
Ad

Similar to Pros and Cons of a MicroServices Architecture talk at AWS ReInvent (20)

PPTX
QConSF-MicroServices-IPC-Netflix-Sudhir-2014.pptx
VimalKumar143058
 
PPTX
MicroService Architecture
Md. Hasan Basri (Angel)
 
PPTX
Microservices on - Monolithic Application
vigij32826
 
PDF
Microservices - Hitchhiker's guide to cloud native applications
Stijn Van Den Enden
 
PDF
Микросервисы со Spring Boot & Spring Cloud
Vitebsk DSC
 
PDF
Building ‘Bootiful’ microservices cloud
Idan Fridman
 
PDF
Dev309 from asgard to zuul - netflix oss-final
Ruslan Meshenberg
 
PPTX
Micro Services Architecture
Ranjan Baisak
 
PDF
Spring Cloud Netflix OSS
Steve Hall
 
PDF
Microservices reativos usando a stack do Netflix na AWS
Diego Pacheco
 
PDF
Spring Cloud: Why? How? What?
Orkhan Gasimov
 
PPTX
Microservices in Action
Bhagwat Kumar
 
PPTX
Microservices with Spring
Carlos Cavero Barca
 
PPTX
Springboot Microservices
NexThoughts Technologies
 
PPTX
Microservices forscale
Deepak Singhvi
 
PDF
NetflixOSS Open House Lightning talks
Ruslan Meshenberg
 
PDF
Triangle Devops Meetup 10/2015
aspyker
 
PPTX
Microservice creation using spring cloud, zipkin, ribbon, zull, eureka
Binit Pathak
 
PPTX
AWS Re:Invent - Optimizing Costs with AWS
Coburn Watson
 
PPTX
.Net Microservices with Event Sourcing, CQRS, Docker and... Windows Server 20...
Javier García Magna
 
QConSF-MicroServices-IPC-Netflix-Sudhir-2014.pptx
VimalKumar143058
 
MicroService Architecture
Md. Hasan Basri (Angel)
 
Microservices on - Monolithic Application
vigij32826
 
Microservices - Hitchhiker's guide to cloud native applications
Stijn Van Den Enden
 
Микросервисы со Spring Boot & Spring Cloud
Vitebsk DSC
 
Building ‘Bootiful’ microservices cloud
Idan Fridman
 
Dev309 from asgard to zuul - netflix oss-final
Ruslan Meshenberg
 
Micro Services Architecture
Ranjan Baisak
 
Spring Cloud Netflix OSS
Steve Hall
 
Microservices reativos usando a stack do Netflix na AWS
Diego Pacheco
 
Spring Cloud: Why? How? What?
Orkhan Gasimov
 
Microservices in Action
Bhagwat Kumar
 
Microservices with Spring
Carlos Cavero Barca
 
Springboot Microservices
NexThoughts Technologies
 
Microservices forscale
Deepak Singhvi
 
NetflixOSS Open House Lightning talks
Ruslan Meshenberg
 
Triangle Devops Meetup 10/2015
aspyker
 
Microservice creation using spring cloud, zipkin, ribbon, zull, eureka
Binit Pathak
 
AWS Re:Invent - Optimizing Costs with AWS
Coburn Watson
 
.Net Microservices with Event Sourcing, CQRS, Docker and... Windows Server 20...
Javier García Magna
 
Ad

Recently uploaded (20)

PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 

Pros and Cons of a MicroServices Architecture talk at AWS ReInvent

Editor's Notes

  • #92: Startup dependencies hurt us on scale up event Degrading without knowing is bad