SlideShare a Scribd company logo
Powering Microservices
with Docker, Kubernetes
& Kafka
Andrew Morgan
MongoDB Product Marketing
@andrewmorgan
#MDBW16
Agenda
What, Why, How?
Microservices
01 Kubernetes, Mesos,…
Orchestration
03Docker
Kafka
Containers
02
Why, How?
MongoDB
04 Who, Why?
Use Cases
06When to Use
05
Microservices
#MDBW16
Why Use Microservices? (tl;dr WebScale)
Team =
Components
No committees
Empower
Build MVP quickly
Speed
Simple components
Isolated impact
Maintain
Rapid iterations
React to market
Change
Product
Team
Scale
#MDBW16
1990s & Earlier
Monolithic
Cross-Team
Tight Coupling
Small
Change
Huge
Impact
System
Retests
#MDBW16
2000s
SOA
Coordination
Looser Coupling
System Retests
#MDBW16
2010s
Microservices
Decoupled
Independent Dev
Isolated Impact
#MDBW16
Microservices Example
Twitter
Ingest
Google
+
Ingest
Snapch
at
Ingest
Feed
merge
Facebo
ok
Ingest
#MDBW16
Microservices Example
Twitter
Ingest
Snapch
at
Ingest
Feed
merge
Facebo
ok
Ingest
#MDBW16
Microservices Example
Twitter
Ingest
Snapch
at
Ingest
Feed
merge
Facebo
ok
Ingest
#MDBW16
Microservices Example
Twitter
Ingest
Snapch
at
Ingest
Feed
merge
Facebo
ok
Ingest
Whatsa
pp
Ingest
#MDBW16
Microservices Example
Twitter
Ingest
Snapch
at
Ingest
Feed
merge
Facebo
ok
Ingest
Whatsa
pp
Ingest
Snapch
at
Ingest
Snapch
at
Ingest
#MDBW16
Alternate Microservices Example
• Much larger Microservices
1. User Account
2. Product Catalog
3. Inventory
4. Orders
• Best practice is each
microservice has its own
database
Conway’s Law
1967
Any organization that designs a system will
inevitably produce a design whose structure
is a copy of the organization's
communication structure.”
#MDBW16
Development Teams
Containers
#MDBW16
Containers – Powering Microservices
Real world shipping containers
• Road, rail & sea
• Contents untouched
• Ubiquitous & standardized
• Simple
• Contents protected
• Constraints
#MDBW16
Containers – Powering Microservices
Software containers
• 1 image -> Many containers
• Laptop, DC, cloud
• Dev, QA, production, support
• Simple, efficient
• Isolation
• Constraints
#MDBW16
VMs vs. Containers
VM VMVM
Bare Metal
Host Operating System
Hypervisor
Guest OS
Libraries
Apps
Service
Guest OS
Libraries
Apps
Service
Guest OS
Libraries
Apps
Service
Container ContainerContainer
Bare Metal
Host Operating System
Docker Engine
Libraries
Libraries
Apps
Libraries
Apps
Service ServiceService
#MDBW16
VMs vs. Containers
VM VMVM
Bare Metal
Host Operating System
Hypervisor
Guest OS
Libraries
Apps
Service
Guest OS
Libraries
Apps
Service
Guest OS
Libraries
Apps
Service
Container ContainerContainer
Bare Metal
Host Operating System
Docker Engine
Libraries
Libraries
Apps
Libraries
Apps
Service ServiceService
#MDBW16
VMs vs. Containers
VM VMVM
Bare Metal
Host Operating System
Hypervisor
Guest OS
Libraries
Apps
Service
Guest OS
Libraries
Apps
Service
Guest OS
Libraries
Apps
Service
Container ContainerContainer
Bare Metal
Host Operating System
Docker Engine
Libraries
Libraries
Apps
Libraries
Apps
Service ServiceService
#MDBW16
Docker
• Simple to use
• 100K+ images on Docker Hub
• Build images from images
• Platforms
• Linux, OS X, Windows
• Laptop, VM, Cloud,…
• Cloud services
#MDBW16
Run MongoDB
docker run -d
mongo
#MDBW16
Security
Opportunities
• Isolation
• Constrain resources
• Narrow roles
• Keep images/containers
current
• root: so restrict access
#MDBW16
Title only
#MDBW16
Title only
#MDBW16
Microservice Architectures Built on Containers
Many small, focused containers -
> sophisticated services
• Well defined APIs
• Independent languages &
libraries
• Modular: easy maintenance +
reuse
• Fault tolerant
• Scalable
#MDBW16
Connecting the Microservices – Apache Kafka
Producer
9
8
7
123...
Topic A
Consumer
#MDBW16
Connecting the Microservices – Apache Kafka
Producer
9
8
7
123...
Topic A
Consumer
Producer Consumer
#MDBW16
Connecting the Microservices – Apache Kafka
Producer
9
8
7
123...
Partition 0
Topic A
Consumer
Producer Consumer
4
3
5
123...
Partition 1
#MDBW16
Connecting the Microservices – Apache Kafka
Producer
LEADER
Topic A / Partition 0
Broker 1
FOLLOWER
Topic A / Partition 1
FOLLOWER
Topic A / Partition 0
Broker 2
LEADER
Topic A / Partition 1
#MDBW16
Connecting the Microservices – Apache Kafka
Producer
Producer
Producer
9
8
7
123
...
Partition 0
4
3
5
123
...
Partition 1
7
3
2
123
...
Partition N
Topic A
Topic B
7
6
5
123
...
Partition 0
New  Old
Consumer
Consumer
Orchestration
#MDBW16
Orchestration
Automated deployment,
connecting, and maintenance of
multiple containers
• Provision hosts
• Containers
• Instantiate
• Reschedule
• Link
• Scale Out/In
• Expose services
#MDBW16
Kubernetes
Created by Google, feature-rich and
widely adopted
• Deployment and ‘replication’
• On-line scale out/in
• Rolling upgrades
• High Availability
• Persistence
• Ports
• Load balancing
• Google Compute Engine
#MDBW16
Apache Mesos
10,000s of physical servers;
used by Twitter, Airbnb & Apple
• Code (“frameworks) vs.
declarative
• Less feature rich than
Kubernetes
• Kubernetes as a Mesos
framework
• Foundation for distributed
#MDBW16
Choosing an Orchestration Framework
• What you have:
• Skills?
• DevOps frameworks?
• Number of hosts?
• Bare metal, VMs, or cloud?
• Lifecycle
• Features
• Automated High Availability?
• Grouping and load balancing?
• As a service??
MongoDB
#MDBW16
Why MongoDB is a Good Fit For
Microservices
Scalability
Monitoring
&
Automation
Redundancy
Flexible
Data
Model
Simplicity
#MDBW16
Orchestrating MongoDB Using Kubernetes
Distributed, stateful application
• Persistent volumes
• External IP addresses for internal
comms
• Init MongoDB replica set
• Monitor
• Backup
Volume
name:
mongo-persistent-storage1
pdName: mongodb-disk1
mongodb
-disk1
Container
name: mongo-node1
image: mongo
command: mongod –replSet my_replica_set
containerPort: 27017
volumeMounts:
name: mongo-persistent-storage1
mountPath: /data/db
Docker Hub Registry
Pod
labels: [name: mongo-node1; instance: rod]
ReplicationController
name: mongo-rc1
labels: [name: mongo-rc]
replicas: 1
selector: [name: mongo -node1]
Service: LoadBalancer
name: mongo-svc-a
labels: [name: mongo-svc-a]
ports: [port: 27017, targetPort: 27017]]
selector: [name: mongo-node, instance: rod]
ExternalIP
Address
104.1.1.1
App
104.1.1.1:27017
ReplicationControler
name: mongo-rc-europe
labels: [name: mongo-europe]
replicas: 1
selector: [name: mongo -node]
Volume
name:
mongo-persistent-storage
pdName: mongodb-disk-europe
mongodb-
disk-europe
Container
name: mongo-node
image: mongo
command: mongod –replSet my_replica_set
containerPort: 27017
volumeMounts:
name: mongo-persistent-storage
mountPath: /data/db
Pod
labels: [name: mongo-node]
Service: LoadBalancer
name: mongo-svc-europe
labels: [name: mongo-svc-europe]
ports: [port: 27017, targetPort: 27017]]
selector: [name: mongo-node]
ReplicationControler
name: mongo-rc-asia
labels: [name: mongo-asia]
replicas: 1
selector: [name: mongo -node]
Volume
name:
mongo-persistent-storage
pdName: mongodb-disk-asia
mongodb-
disk-asia
Container
name: mongo-node
image: mongo
command: mongod –replSet my_replica_set
containerPort: 27017
volumeMounts:
name: mongo-persistent-storage
mountPath: /data/db
Pod
labels: [name: mongo-node]
Service: LoadBalancer
name: mongo-svc-asia
labels: [name: mongo-svc-asia]
ports: [port: 27017, targetPort: 27017]]
selector: [name: mongo-node]
ReplicationControler
name: mongo-rc-us
labels: [name: mongo-us]
replicas: 1
selector: [name: mongo -node]
Volume
name:
mongo-persistent-storage
pdName: mongodb-disk-us
mongodb-
disk-us
Container
name: mongo-node
image: mongo
command: mongod –replSet my_replica_set
containerPort: 27017
volumeMounts:
name: mongo-persistent-storage
mountPath: /data/db
Pod
labels: [name: mongo-node]
Service: LoadBalancer
name: mongo-svc-us
labels: [name: mongo-svc-us]
ports: [port: 27017, targetPort: 27017]]
selector: [name: mongo-node]
When to use Microservices
#MDBW16
When to use Microservices
Use Cases
#MDBW16
MongoDB & Microservices in the Wild
#MDBW16
References
• Enabling Microservices – Containers & Orchestration Explained
https://www.mongodb.com/collateral/microservices-containers-and-
orchestration-explained
• Microservices: The Evolution of Building Modern Applications
https://www.mongodb.com/collateral/microservices-the-evolution-of-building-
modern-applications
• Data Streaming with Apache Kafka & MongoDB
https://www.mongodb.com/collateral/data-streaming-with-apache-kafka-and-
mongodb
Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Europe 2016

More Related Content

What's hot (20)

PPTX
An Introduction to MongoDB Ops Manager
MongoDB
 
PDF
MongoDB Europe 2016 - Star in a Reasonably Priced Car - Which Driver is Best?
MongoDB
 
PDF
MongoDB Launchpad 2016: Moving Cybersecurity to the Cloud
MongoDB
 
PPTX
Microservices in the Apache Kafka Ecosystem
confluent
 
PDF
Containerizing MongoDB with kubernetes
Brian McNamara
 
PDF
MongoDB Europe 2016 - Ops Manager and Cloud Manager
MongoDB
 
PDF
How We Fixed Our MongoDB Problems
MongoDB
 
PPTX
Webinar: Simplifying the Database Experience with MongoDB Atlas
MongoDB
 
PDF
Cloud Data Strategy event London
MongoDB
 
PPTX
Power Real Estate Property Analytics with MongoDB + Spark
MongoDB
 
PPTX
Powering Microservices with Docker, Kubernetes, Kafka, and MongoDB
MongoDB
 
PPTX
Bridging Your Business Across the Enterprise and Cloud with MongoDB and NetApp
MongoDB
 
PDF
MongoDB .local Toronto 2019: MongoDB Atlas Jumpstart
MongoDB
 
PDF
Case Study Volkswagen AG Prime-Force meets MongoDB
MongoDB
 
PPSX
Big Data Redis Mongodb Dynamodb Sharding
Araf Karsh Hamid
 
PDF
MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB
 
PPTX
Introducing MongoDB Atlas
MongoDB
 
PDF
MongoDB .local Chicago 2019: Modern Data Backup and Recovery from On-premises...
MongoDB
 
PDF
MongoDB Europe 2016 - Deploying MongoDB on NetApp storage
MongoDB
 
PDF
MongoDB Ops Manager + Kubernetes
MongoDB
 
An Introduction to MongoDB Ops Manager
MongoDB
 
MongoDB Europe 2016 - Star in a Reasonably Priced Car - Which Driver is Best?
MongoDB
 
MongoDB Launchpad 2016: Moving Cybersecurity to the Cloud
MongoDB
 
Microservices in the Apache Kafka Ecosystem
confluent
 
Containerizing MongoDB with kubernetes
Brian McNamara
 
MongoDB Europe 2016 - Ops Manager and Cloud Manager
MongoDB
 
How We Fixed Our MongoDB Problems
MongoDB
 
Webinar: Simplifying the Database Experience with MongoDB Atlas
MongoDB
 
Cloud Data Strategy event London
MongoDB
 
Power Real Estate Property Analytics with MongoDB + Spark
MongoDB
 
Powering Microservices with Docker, Kubernetes, Kafka, and MongoDB
MongoDB
 
Bridging Your Business Across the Enterprise and Cloud with MongoDB and NetApp
MongoDB
 
MongoDB .local Toronto 2019: MongoDB Atlas Jumpstart
MongoDB
 
Case Study Volkswagen AG Prime-Force meets MongoDB
MongoDB
 
Big Data Redis Mongodb Dynamodb Sharding
Araf Karsh Hamid
 
MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB
 
Introducing MongoDB Atlas
MongoDB
 
MongoDB .local Chicago 2019: Modern Data Backup and Recovery from On-premises...
MongoDB
 
MongoDB Europe 2016 - Deploying MongoDB on NetApp storage
MongoDB
 
MongoDB Ops Manager + Kubernetes
MongoDB
 

Similar to Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Europe 2016 (20)

PPTX
SH 1 - SES 4 - Microservices - Andrew Morgan TLV.pptx
MongoDB
 
PPTX
Powering Microservices with Docker, Kubernetes, Kafka, & MongoDB
MongoDB
 
PPTX
Powering Microservices with Docker, Kubernetes, Kafka, & MongoDB
MongoDB
 
PPTX
Powering Microservices with Docker, Kubernetes, Kafka, and MongoDB
MongoDB
 
PPTX
Creating Highly-Available MongoDB Microservices with Docker Containers and Ku...
MongoDB
 
PPTX
Microservices: Living Large in Your Castle Made of Sand
MongoDB
 
PDF
MongoDB World 2016: Scaling MongoDB with Docker and cGroups
MongoDB
 
PDF
Scaling MongoDB with Docker and cgroups
marcoita
 
PPTX
Jumpstart: Your Introduction To MongoDB
MongoDB
 
PPTX
Jumpstart: Your Introduction to MongoDB
MongoDB
 
PDF
Making your Life Easier with MongoDB and Kafka (Robert Walters, MongoDB) Kafk...
HostedbyConfluent
 
PPTX
Microservices at ibotta pitfalls and learnings
Matthew Reynolds
 
PPTX
A New Transactional Model - Keith Bostic
MongoDB
 
PPTX
MongoDB Evening Austin, TX 2017
MongoDB
 
PDF
Cloud-native .NET Microservices mit Kubernetes
QAware GmbH
 
PPTX
Faster, Simpler, Better - MongoDB to the rescue
MongoDB
 
PDF
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB
 
PDF
MongoDB-as-a-Service on Pivotal Cloud Foundry
VMware Tanzu
 
PDF
Microservices , Docker , CI/CD , Kubernetes Seminar - Sri Lanka
Mario Ishara Fernando
 
PDF
Microservices Runtimes
Frank Munz
 
SH 1 - SES 4 - Microservices - Andrew Morgan TLV.pptx
MongoDB
 
Powering Microservices with Docker, Kubernetes, Kafka, & MongoDB
MongoDB
 
Powering Microservices with Docker, Kubernetes, Kafka, & MongoDB
MongoDB
 
Powering Microservices with Docker, Kubernetes, Kafka, and MongoDB
MongoDB
 
Creating Highly-Available MongoDB Microservices with Docker Containers and Ku...
MongoDB
 
Microservices: Living Large in Your Castle Made of Sand
MongoDB
 
MongoDB World 2016: Scaling MongoDB with Docker and cGroups
MongoDB
 
Scaling MongoDB with Docker and cgroups
marcoita
 
Jumpstart: Your Introduction To MongoDB
MongoDB
 
Jumpstart: Your Introduction to MongoDB
MongoDB
 
Making your Life Easier with MongoDB and Kafka (Robert Walters, MongoDB) Kafk...
HostedbyConfluent
 
Microservices at ibotta pitfalls and learnings
Matthew Reynolds
 
A New Transactional Model - Keith Bostic
MongoDB
 
MongoDB Evening Austin, TX 2017
MongoDB
 
Cloud-native .NET Microservices mit Kubernetes
QAware GmbH
 
Faster, Simpler, Better - MongoDB to the rescue
MongoDB
 
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB
 
MongoDB-as-a-Service on Pivotal Cloud Foundry
VMware Tanzu
 
Microservices , Docker , CI/CD , Kubernetes Seminar - Sri Lanka
Mario Ishara Fernando
 
Microservices Runtimes
Frank Munz
 
Ad

More from Andrew Morgan (14)

PPTX
PistonHead's use of MongoDB for Analytics
Andrew Morgan
 
PPTX
Joins and Other MongoDB 3.2 Aggregation Enhancements
Andrew Morgan
 
PPTX
Document validation in MongoDB 3.2
Andrew Morgan
 
PPTX
What's new in MySQL Cluster 7.4 webinar charts
Andrew Morgan
 
PPTX
MySQL High Availability Solutions - Feb 2015 webinar
Andrew Morgan
 
PDF
FOSDEM 2015 - NoSQL and SQL the best of both worlds
Andrew Morgan
 
PDF
MySQL Replication: What’s New in MySQL 5.7 and Beyond
Andrew Morgan
 
PDF
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
Andrew Morgan
 
PPTX
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
Andrew Morgan
 
PPTX
OUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
Andrew Morgan
 
PDF
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
Andrew Morgan
 
PDF
NoSQL and SQL - blending the best of both worlds
Andrew Morgan
 
PDF
Mysql cluster introduction
Andrew Morgan
 
PDF
Developing high-throughput services with no sql ap-is to innodb and mysql clu...
Andrew Morgan
 
PistonHead's use of MongoDB for Analytics
Andrew Morgan
 
Joins and Other MongoDB 3.2 Aggregation Enhancements
Andrew Morgan
 
Document validation in MongoDB 3.2
Andrew Morgan
 
What's new in MySQL Cluster 7.4 webinar charts
Andrew Morgan
 
MySQL High Availability Solutions - Feb 2015 webinar
Andrew Morgan
 
FOSDEM 2015 - NoSQL and SQL the best of both worlds
Andrew Morgan
 
MySQL Replication: What’s New in MySQL 5.7 and Beyond
Andrew Morgan
 
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
Andrew Morgan
 
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
Andrew Morgan
 
OUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
Andrew Morgan
 
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
Andrew Morgan
 
NoSQL and SQL - blending the best of both worlds
Andrew Morgan
 
Mysql cluster introduction
Andrew Morgan
 
Developing high-throughput services with no sql ap-is to innodb and mysql clu...
Andrew Morgan
 
Ad

Recently uploaded (20)

PDF
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
PPTX
MailsDaddy Outlook OST to PST converter.pptx
abhishekdutt366
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
PPTX
Platform for Enterprise Solution - Java EE5
abhishekoza1981
 
PPTX
MiniTool Power Data Recovery Full Crack Latest 2025
muhammadgurbazkhan
 
PPTX
Human Resources Information System (HRIS)
Amity University, Patna
 
PPTX
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 
PDF
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
PPTX
Perfecting XM Cloud for Multisite Setup.pptx
Ahmed Okour
 
PDF
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PDF
Streamline Contractor Lifecycle- TECH EHS Solution
TECH EHS Solution
 
PPTX
The Role of a PHP Development Company in Modern Web Development
SEO Company for School in Delhi NCR
 
PDF
Salesforce CRM Services.VALiNTRY360
VALiNTRY360
 
PPTX
How Apagen Empowered an EPC Company with Engineering ERP Software
SatishKumar2651
 
PPTX
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
PDF
Continouous failure - Why do we make our lives hard?
Papp Krisztián
 
PPT
MergeSortfbsjbjsfk sdfik k
RafishaikIT02044
 
PPTX
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
MailsDaddy Outlook OST to PST converter.pptx
abhishekdutt366
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Platform for Enterprise Solution - Java EE5
abhishekoza1981
 
MiniTool Power Data Recovery Full Crack Latest 2025
muhammadgurbazkhan
 
Human Resources Information System (HRIS)
Amity University, Patna
 
An Introduction to ZAP by Checkmarx - Official Version
Simon Bennetts
 
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
Perfecting XM Cloud for Multisite Setup.pptx
Ahmed Okour
 
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
Tally software_Introduction_Presentation
AditiBansal54083
 
Streamline Contractor Lifecycle- TECH EHS Solution
TECH EHS Solution
 
The Role of a PHP Development Company in Modern Web Development
SEO Company for School in Delhi NCR
 
Salesforce CRM Services.VALiNTRY360
VALiNTRY360
 
How Apagen Empowered an EPC Company with Engineering ERP Software
SatishKumar2651
 
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
Continouous failure - Why do we make our lives hard?
Papp Krisztián
 
MergeSortfbsjbjsfk sdfik k
RafishaikIT02044
 
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 

Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Europe 2016

Editor's Notes

  • #4: 1 + 10 Microservice architectures implement applications as a series of small, self-contained, loosely coupled software components. Each has a specific and well understood role.
  • #5: Web & Mobile Apps => Enterprise Micro Web Services Microservices were pioneered in the web and then mobile App worlds; at one time called micro-web-services. Now other enterprises are looking for the same benefits. Microservice architectures implement applications as a series of small, self-contained, loosely coupled software components. Each has a specific and well understood role. Benefits of microservices: - Development Speed - Rapid Iteration Evolve quickly, continuous deployment Isolate impact of changes to existing functions or just add a new one Reactive development Maintainable Independent, empowered work teams
  • #6: Spaghetti Code Reverse engineer? No one understands entire code base Change one line of code, impacts scores of other, unexpected places Monolith is like Spaghetti Changing anything impacts everything else. <= 1990s Pre-SOA (monolithic) Tight coupling For a monolith to change, all must agree on each change. Each change has unanticipated effects requiring careful testing beforehand
  • #7: Easier to remove or change a piece but still need to make sure that it fits back together properly SOA was billed as a way of delivering code re-use but people ended up designing for efficiency instead. Service Oriented Architecture is like a Pie Easier to remove or change a piece but still need to make sure that it fits back together properly 2000s Traditional SOA Looser coupling Elements in SOA are developed more autonomously but must be coordinated with others to fit into the overall design SOA was billed as a way of delivering code re-use but people ended up designing for efficiency instead.
  • #8: Add a new flavor independently. Chef making chocolate knows that well but need not know the others Blueberry goes out of fashion, remove them Need more green cakes, add them Improved pink frosting, throw out the old ones and the new ones. Microservices are like Cupcakes Can add new ones with different flavors, remove ones that you no longer need, add more pink ones if there’s greater demand Developers can create and activate new microservices without prior coordination with others. Their adherence to MSA principles makes continuous delivery of new or modified services possible Greater modularity, looser coupling. Started in the web and mobile app world, moving to Enterprise. Big in media and startups Plan for flexibility rather than reuse
  • #9: Each of the ovals represents a microservice. Each source of social media feeds has its own microservice which is specialised in interfacing with the relevant API. Each of those microservices passes messages to the ‘feed merge’ microservice which can then make them available for further microservices to work with. Communication between the microservices is over the network – they can be local to the same machine or distributed. Best practice is for each microservice to be stateless and to have its own database or schema
  • #10: Individual microservices can be updated in isolation or even removed if their role is no longer needed
  • #11: When a new role (or even a change to an existing one) appears, best practice is to implement a new microservice rather than extending an existing one.
  • #12: When a new role (or even a change to an existing one) appears, best practice is to implement a new microservice rather than extending an existing one.
  • #13: Microservices allow scale-out. Each type of microservice can be scaled independently – add extra instances just for the functions that are being overworked. Multiple instances of each service can provide High Availability
  • #14: An alternate view is that each microservice is much larger The size will depend on your app and org. What do you need to scale? How is your org aligned? – in this case User Account, Product Catalog, Inventory & Order. The key is to do what makes sense for your enterprise: which pieces need scaling independently, which would you like to upgrade independently, how does it fit into your organisation? Functions are decoupled into four separate services (separate WAR files) and organized by business boundaries Web pages, Classes, Config files to a service are grouped together Services can evolve and iterate independently as each team can develop, test, and deploy code separately Best practice is for each microservice to have its own database.
  • #15: Melvin Edward Conway is a computer scientist, computer programmer, and hacker who coined what's now known as Conway's Law in 1967. If the parts of the organization do not closely reflect the essential parts of the product, or if the relationship between organizations do not reflect relationship between product parts, than the project will be in trouble -Organizations design systems which copy the organization -If the parts of the organization do not closely reflect the essential parts of the product, or if the relationship between organizations do not reflect relationship between product parts, than the project will be in trouble -Make sure the organization is compatible with the product architecture
  • #16: Size. Ownership Netflix Cloud Native approach => grow org Best practice is for each microservice to be small enough that a single developer should be able to understand its entire codebase (think in hundreds rather than 10,000s of lines of code). The code for a microservice should be owned by the organization responsible for that function; for example the marketing development team should own the microservice responsible for sending nurture track emails. Netflix was one of the pioneers of Microservices with their ”Cloud Native” approach – it was really all about being able to scale their development organisation.
  • #17: 10+10
  • #18: Real world shipping containers Same container efficiently transports goods by road, rail, and sea Contents remain untouched through all those environments; no repacking needed Ubiquitous and standardized Simple to use – open, fill, close Contents of each container safe from the others Know how much space the container consumes
  • #19: Software containers Build an image containing the full application stack only once Spin up many containers from the same image in multiple environments Laptop, data center, cloud Development, QA, production, support Simple to use & efficient Contents of each container isolated from the others Storage, memory, namespace Constrain resources available to each container Storage, memory, CPU, IO
  • #23: The most popular container technology Simple to use and has a rich ecosystem 100,000+ images available from Docker Hub Including mongo hub.docker.com/_/mongo/ Syncs with GitHub projects Define new images built upon base images Define interfaces between containers LINUX, (and now) Windows, and OS X Runs on bare metal, VMs, and cloud. Cloud providers supply the Docker infrastructure (e.g. Google Container Engine)
  • #25: Normal rules still apply Containers provide opportunities to improve security Containers provide isolation; resources can only be accessed from outside through explicitly provided APIs Resources can be rationed A container’s role can be very narrow – remove anything not required Images and containers should be kept current; rolling upgrades with Kubernetes or Aurora Typically log into container as root so restrict access
  • #26: A single container can be interesting and useful. O2 Arena
  • #28: Microservices built by combining multiple containers Build sophisticated services from many small, focused processes (containers) Well defined APIs between components Each component can use different libraries, middleware & programming languages Modular, decoupled architecture simplifies maintenance and enables reuse Fault tolerant Scalable
  • #29: To do useful work, microservices need a way of communicating – Apache Kafka Kafka provides a flexible, scalable, and reliable method to distribute streams of event data from one or more **producers** to one or more **consumers**. Examples of **events** (or **messages**) include: A periodic sensor reading such as the current temperature A user adding an item to the shopping cart in an online store A Tweet being sent with a specific hashtag A log entry generated for each click in a web application Streams of Kafka events are organized into **topics**. A producer chooses a topic to send a given event to and consumers select which topics they pull events from. For example, a financial application could pull NYSE stock trades from one topic, and company financial announcements from another in order to look for trading opportunities. Kafka actually stores all of the messages that it passes around – this makes it ideal for production microservice deployments A microservice can be upgraded and then catch up on everything it missed Or even apply its updated business logic to the full history of events A new microservice can be added and it can be brought up to speed with everything that’s gone before If one service is generating more work than another can keep up with then Kafka operates as a buffer
  • #30: To do useful work, microservices need a way of communicating – Apache Kafka Kafka provides a flexible, scalable, and reliable method to distribute streams of event data from one or more **producers** to one or more **consumers**. Examples of **events** (or **messages**) include: A periodic sensor reading such as the current temperature A user adding an item to the shopping cart in an online store A Tweet being sent with a specific hashtag A log entry generated for each click in a web application Streams of Kafka events are organized into **topics**. A producer chooses a topic to send a given event to and consumers select which topics they pull events from. For example, a financial application could pull NYSE stock trades from one topic, and company financial announcements from another in order to look for trading opportunities. Kafka actually stores all of the messages that it passes around – this makes it ideal for production microservice deployments A microservice can be upgraded and then catch up on everything it missed Or even apply its updated business logic to the full history of events A new microservice can be added and it can be brought up to speed with everything that’s gone before If one service is generating more work than another can keep up with then Kafka operates as a buffer
  • #31: To do useful work, microservices need a way of communicating – Apache Kafka Kafka provides a flexible, scalable, and reliable method to distribute streams of event data from one or more **producers** to one or more **consumers**. Examples of **events** (or **messages**) include: A periodic sensor reading such as the current temperature A user adding an item to the shopping cart in an online store A Tweet being sent with a specific hashtag A log entry generated for each click in a web application Streams of Kafka events are organized into **topics**. A producer chooses a topic to send a given event to and consumers select which topics they pull events from. For example, a financial application could pull NYSE stock trades from one topic, and company financial announcements from another in order to look for trading opportunities. Kafka actually stores all of the messages that it passes around – this makes it ideal for production microservice deployments A microservice can be upgraded and then catch up on everything it missed Or even apply its updated business logic to the full history of events A new microservice can be added and it can be brought up to speed with everything that’s gone before If one service is generating more work than another can keep up with then Kafka operates as a buffer
  • #32: To do useful work, microservices need a way of communicating – Apache Kafka Kafka provides a flexible, scalable, and reliable method to distribute streams of event data from one or more **producers** to one or more **consumers**. Examples of **events** (or **messages**) include: A periodic sensor reading such as the current temperature A user adding an item to the shopping cart in an online store A Tweet being sent with a specific hashtag A log entry generated for each click in a web application Streams of Kafka events are organized into **topics**. A producer chooses a topic to send a given event to and consumers select which topics they pull events from. For example, a financial application could pull NYSE stock trades from one topic, and company financial announcements from another in order to look for trading opportunities. Kafka actually stores all of the messages that it passes around – this makes it ideal for production microservice deployments A microservice can be upgraded and then catch up on everything it missed Or even apply its updated business logic to the full history of events A new microservice can be added and it can be brought up to speed with everything that’s gone before If one service is generating more work than another can keep up with then Kafka operates as a buffer
  • #33: To do useful work, microservices need a way of communicating – Apache Kafka Kafka provides a flexible, scalable, and reliable method to distribute streams of event data from one or more **producers** to one or more **consumers**. Examples of **events** (or **messages**) include: A periodic sensor reading such as the current temperature A user adding an item to the shopping cart in an online store A Tweet being sent with a specific hashtag A log entry generated for each click in a web application Streams of Kafka events are organized into **topics**. A producer chooses a topic to send a given event to and consumers select which topics they pull events from. For example, a financial application could pull NYSE stock trades from one topic, and company financial announcements from another in order to look for trading opportunities. Kafka actually stores all of the messages that it passes around – this makes it ideal for production microservice deployments A microservice can be upgraded and then catch up on everything it missed Or even apply its updated business logic to the full history of events A new microservice can be added and it can be brought up to speed with everything that’s gone before If one service is generating more work than another can keep up with then Kafka operates as a buffer
  • #34: 20+5
  • #35: Automated deployment, connecting, and maintenance of multiple containers Provision hosts Instantiate containers Reschedule failed containers Link containers through defined interfaces Expose services to the outside world Scale out and back in
  • #36: Created by Google, feature-rich and widely adopted Automated container deployment and ‘replication’ On-line scale out/in Rolling upgrades HA – automatic rescheduling of failed containers Exposure of network ports to external apps Load balancing over groups of containers providing a service Provided as a service by Google Compute Engine
  • #37: Designed to scale to 10,000s of physical servers; used by Twitter, Airbnb & Apple Developer writes code to turn application into a framework to run on Mesos Less feature rich than Kubernetes; considers many functions such as load balancing, rescheduling, and scaling to be a higher level function Project exists to run Kubernetes as a Mesos framework Foundation for distributed systems Apache Aurora, Chronos, Marathon
  • #38: Don’t forget Docker Compose Factors to consider… Integration with existing DevOps frameworks? Number of hosts? Bare metal, VMs, or cloud deployment? Automated High Availability? Grouping and load balancing? Existing skills? Install your own orchestration framework or use as a service?
  • #39: 25+7
  • #40: Moving parts; Orchestration doesn’t monitor Agility DB per microservice Monitoring & automation You have lots of moving parts in a microservice architecture – need to monitor and automate as much as possible Flexible data model Fits in with the need to be agile Redundancy MongoDB replica sets -> can perform online upgrades and easily cope with rescheduling Scalability MongoDB sharding lets your database scale just as easily as your stateless microservices Remember web-scale? Best practice for each service to have its own schema or database; MongoDB’s simplicity helps
  • #41: Kubernetes not designed for stateful services 3 choices: MongoDB outside of container (Atlas?) Kubernetes manages MongoDB Kubernetes manages Ops Manager agent; Ops/Cloud Manager manage MongoDB Orchestrating MongoDB containers requires special treatment as it’s a distributed, stateful application… State should survive rescheduling; use Kubernetes’ persistent volumes abstraction Replica Set members must communicate with each other; expose external IP addresses/ports which survive rescheduling Replica Set must be initialized from exactly one member MongoDB must still be monitored and backed up – MongoDB Cloud Manager
  • #42: Kubernetes. Single Pod/comtainer/mongod in a ReplicationController. Use external IP addresses (other IP addresses & hostnames are local to Kubernetes cluster and they change) Refer to white paper for details
  • #44: 32+3
  • #45: Fast > Elegant Sagrada Familia –1882-2026 (144 years). Frequent, localised changes Localised scaling Upgrades Only if: Scaling team Designing for change Fast is more important than elegant. Change in the application’s functionality and usage is frequent. Change occurs at different rates within the application, so functional isolation and simple integration are more important than module cohesiveness. Functionality is easily separated into simple, isolatable components. When you have the developer/DevOps skillsets. Where development org boundaries match service boundaries. Don’t forget that you’re building a distributed system -> complexity but there are precedents to read up on. One argument is that you shouldn’t bother with microservices unless you need either: - Scale your team - Design for change Sagrada Familia – designed by Gaudi; construction started on March 19, 1882. Expected to be finished in 2026.
  • #46: 35+5
  • #47: Gap (flexibility): Monolith -> microservice (75 days). New types of PO took just days FuboTV (scalability). Single cluster for dev, QA + production. Cope with 100x bursts. Run MongoDB on Kubernetes Otto (arch == org). Fast, iterative delivery Backcountry (> distributed dev team): Schema changes were taking 20% of dev time. Flexible schema Compare The Market (Use Docker, Kafka, MongoDB & Ops Manager). GAP moved their purchase order system from a monolith architecture to microservices. Due to MongoDB’s flexible schema, it took just 75 days to build the new system. When requirements changed and they had to add new types of purchase orders, it took days instead of months. FuboTV is a North American soccer streaming service. Using Microservices with Kubernetes, Docker & MongoDB. Isolation means that they can use a single cluster of machines (in Google Cloud) for dev, QA & production. Very birsty application – scalability lets them handle 100x increases in traffic. Otto – the key was to have an architecture that fits with their organization. Microservices empower loosely couple development teams (business, project management, IT). This is all enabling Fast test & deployment + Iterative, Continuous Delivery Backcountry.com is an online specialty retailer that sells outdoor clothing and gear. The driver to Microservices for them was a growing, distributed development team. As more and more developers joined and made contributions to the code, the schemas became convoluted and harder to maintain; contributing to 20% of the Scrum backlog. Taking advantage of MongoDB’s flexible data model, Backcountry was able to iterate faster, reduce development time, and mitigate technical debt. Compare The Market: In the cloud, each microservice, or logical grouping of related microservices, is provisioned with its own MongoDB replica set running in Encrypted storage engine to further reduce our security-related surface area. Use Docker, Kafka & MongoDB.