SlideShare une entreprise Scribd logo
1  sur  41
Télécharger pour lire hors ligne
Microservices in Scala 
workshop by Iterators 
by Jacek Głodek, Łukasz Sowa and Andrzej Michałowski
Questions we try to answer today: 
• What are microservices? 
• What's the difference between them vs monolithic 
architectures? 
• What are the different flavours of microservices? 
• How to use Spray.io, Play and Akka to do 
microservices?
Agenda 
• Short introduction to microservices 
• Spec of our system 
• "MS backbone - simple microservices with spray.io" talk 
• Auth and url collection microservices 
• "Asynchronous views and web services with Play and Akka" talk 
• Image fetching — reactive deffered job — Play with websockets 
• "Eventsourcing - total data immutability with akka persistence" talk 
• Voting made with event sourcing 
• Ops, testing and monitoring 
• Summary
Architectures and practices 
What architectures are we talking about?! 
Don't think MVC, think MVC web-app run on multiple 
nodes with load-balancing, memcached cache and 
Postgres db. 
What practices are we talking about?! 
Think TDD, BDD, SOLID, etc.
Code and code-base 
architecture and practices 
• programming paradigms 
• TDD, SOLID, BDD, etc. 
• Folder structure 
• Object naming conventions 
• Separation of concerns 
• Sharing data in threads
Distributed system 
architecture 
• Interfaces, protocols and 
contracts between modules 
• System modules 
• APIs 
• Deployment strategy 
• Non-functional guarantees
“Microservices” 
is a vague term 
• multiple small apps with REST/HTTP interface, 
• multiple small apps with deferred message 
processing 
• multiple single-file apps with less than 100 lines of 
code 
• multiple small apps possibly written in different 
languages communicating with each other
Microservices 
• small single-purpose apps with bounded domain 
enabling polyglot programming 
+ add your favourite ingredients 
+ differences from monolithic architecture 
© Marivlada | Dreamstime Stock 
Photos & Stock Free Images
Microservices vs Monolithic architecture 
Deployment units 
Monolith Microservices
Microservices vs Monolithic architecture 
Deployment strategy 
Monolith Microservices
Microservices vs Monolithic architecture 
Coupling 
Monolith Microservices 
• global variables 
• messages 
• function calls 
• data structures 
• shared memory 
• multiple levels of indirection 
managed with 
• SOLID, encapsulation and other practices 
• dependency injection, etc. 
• different protocols 
• shared DB’s 
• shared message queues 
managed with 
• contracts
Microservices vs Monolithic architecture 
Interfaces vs Contracts 
Monolith Microservices 
• written with code and shared interfaces 
within code packages and libraries 
• checked by tests or compilers (?) 
• type validations 
• api calls defined by the language 
• encapsulation, single-responsibility 
rule, etc. 
Problems: 
• meta-programming, monkey-patching, 
global state and workarounds. 
• spoken / unspoken 
• should be defined on “paper” 
• defined by protocols, and technologies 
used, like: 
• http, websockets, RPC, rabbitMQ, 
shared MongoDB or Redis, etc. ) 
Problems: 
• changing contract or having no contract 
requires changing multiple services. 
• multiple API versions without easy 
solution for validating consistency
Programming microservices
Small single purpose code 
• Low complexity 
• No code-level coupling 
with other modules 
• “this big” or one 
hundred lines of code 
• Easy to rewrite 
• Rewrite instead of 
refactor 
• Easy to spot inputs and 
outputs 
• Still requires readable 
logic
Relevant metrics 
• Measuring business 
performance using relevant 
metrics 
• Visualisation 
• Ex. Kamon, custom charts 
Ex: 
• forms processed, 
• mails sent, 
• PDF invoices generated 
• performance metrics: 
• response times 
• queue sizes 
• ex. New Relic, etc.
Continuous deployment with hot 
swapping 
Having all the metrics: 
• You can deploy continuously 
• You can test the service by deploying new and old 
versions concurrently. 
• Given enough fail-safety contracts, you can test in 
production 
• One service down shouldn’t break whole architecture
Polyglot programming
Problems and dilemmas
Problems and Dilemmas 
• synchronous and asynchronous processing 
• guarantees and SLAs 
• shared and private databases 
• making layers of micro services 
• bare-metal vs platforms 
• data-driven systems, eventsourcing and real-time 
messaging
Synchronous vs 
Asynchronous processing 
Synchronous processing 
• immediate responses 
• fast and hard failure 
• “asking” 
• request timeouts 
• problematic to debug series of request 
Ex. chain of HTTP request and getting 200 
Success response 
Asynchronous processing 
• posting jobs to be processed 
• tell don’t ask 
• fire and forget 
• need of pooling or waiting for response 
• longer jobs 
• failures can be recovered from! 
Ex. uploading a video file to be processed 
and getting “Video uploaded successfuly” 
response.
Guarantees and SLA’s 
Is clicking like button same as performing bank transfer? Do we really need full 
ACID DB for holding chat messages? Will it perform fast enough to serve 
thousand of clients concurrently without building whole cluster of DB’s? 
100% consistency and synchronicity is not possible to achieve in distributed 
system without introducing system wide locks. 
System-wide locks affect performance a lot, while we try to achieve reactive and 
scalable system. 
In microservices we can keep different parts of system with different guarantees 
and different approaches
Shared vs private databases 
Shared database 
• pretty strong contract 
• convenient for simple domain problems 
• easier to maintain 
• problems: 
• coupling too many services, too deeply. 
• can become performance bottle-neck 
Private databases 
• useful for decoupling and reuse 
• useful for performance 
• useful for embedding in microservices that abstract 
complicated domain models 
• difficult to maintain, although can many databases can 
work on single db cluster/instance. 
• useful for giving microservice authority over some data 
• problems: 
• data sharding
Layers of micro services 
frontend, public facing micro services, 
background workers and services
Layers of micro services 
frontend issues 
• CORS (Cross Origin Resource Sharing) 
• Rendering of HTML: server-side or in javascript 
• Moving caches to CDN 
• Keeping modularity and reusability also on the frontend side 
• One backend microservice failure shouldn’t break whole frontend.
Layers of micro services 
user facing services issues 
• CORS 
• Versioning of API 
• Authentication 
• Caching 
• Loadbalancing 
• Security
Layers of micro services 
internal services 
• Security 
• Scalability 
• Monitoring for failures 
• Keeping the data consistent 
• Garbage-in garbage-out
Platform abstraction level 
bare-metal servers vs platforms 
Higher level framework = more difficult polyglot 
programming + easier maintenance + possible code 
sharing + more tight coupling opportunities
Stateful databases vs 
eventsourcing 
Stateful databases 
• State stored in the database 
• Ex. “John has $3122 
USD on his account” 
• Transactions and locks that 
enable us to mutate the 
state 
Eventsourcing 
• No state just events. 
• Ex. “John got spent $12 USD” 
• State is inferred from the past 
events… 
• Every situation can be replayed! 
• Events are immutable = no 
problem with locking, etc. 
We can also not care about keeping the data at all.
… and other dilemmas. 
But…
Why not mix all the approaches?
Can sole database 
be a microservice?
Must microservice be 
based on 
REST interfaces?
How would you 
model microservices 
for the last system 
you developed?
That’s it for the intro 
Thanks! 
jacek@theiterators.com
Summary 
Microservices come in different flavours:! 
sync, async, rest, mq, databases, events, hard 
and easy guarantees, with private and shared 
databases, based on bare-metal machines and 
high level platforms. 
© Marivlada | Dreamstime Stock 
Photos & Stock Free Images
Summary 
Spray is great foundation: 
for simple HTTP services 
for connecting with awesome Akka processing framework 
with great directives for strictly defining what requests get 
processed 
with great marshalling and serialisation 
who make simple easy and abstractable
Summary 
Play is has some useful elements: 
! 
nice routing DSL, 
nice controller with Action composing 
nice Websockets with Akka actors 
lots of libraries to integrate to 
big boilerplate
Summary 
Akka is great for messaging, makes concurrent 
programming easy! 
! Actors are not threads 
Messages and Questions with timeouts 
Scheduling 
Watch not to make bloated — keep it single 
purpose
Summary 
Eventsourcing ! 
! Don’t store mutable state 
Store immutable events 
Rebuild state by processing the past events 
Akka persistance stores the events for you in a 
journal of choice (Mongo, Redis, Postgres, Maria, 
Mysql)
What haven’t we talked about 
! 
JVM microframeworks — Finagle, etc. 
Frontend — how to keep modularity, where to generate HTML, 
how to handle caching. 
Monitoring — health checks and metrics (spray directives?) and 
monitoring front end 
DevOps — How to configure loadbalancers, CORS, handling 
configuration and discovery of microservices, prepare auto-scaling, 
and handling situations when services fail, or how to make 
hot swap deployments.
Thanks! 
Łukasz Sowa @luksow 
lukasz@theiterators.com 
Jacek Głodek @jacekglodek 
jacek@theiterators.com

Contenu connexe

Tendances

Tendances (20)

Microservices with Spring
Microservices with SpringMicroservices with Spring
Microservices with Spring
 
Come for the traffic management, stay for the security
Come for the traffic management, stay for the securityCome for the traffic management, stay for the security
Come for the traffic management, stay for the security
 
Microservices Antipatterns
Microservices AntipatternsMicroservices Antipatterns
Microservices Antipatterns
 
Tokyo Azure Meetup #6 - Azure Monthly Update - June
Tokyo Azure Meetup #6 - Azure Monthly Update - JuneTokyo Azure Meetup #6 - Azure Monthly Update - June
Tokyo Azure Meetup #6 - Azure Monthly Update - June
 
REST vs. Messaging For Microservices
REST vs. Messaging For MicroservicesREST vs. Messaging For Microservices
REST vs. Messaging For Microservices
 
Microservices Journey Fall 2017
Microservices Journey Fall 2017Microservices Journey Fall 2017
Microservices Journey Fall 2017
 
Microservices with Spring Boot
Microservices with Spring BootMicroservices with Spring Boot
Microservices with Spring Boot
 
Tokyo Azure Meetup #4 - Build 2016 Overview
Tokyo Azure Meetup #4 -  Build 2016 OverviewTokyo Azure Meetup #4 -  Build 2016 Overview
Tokyo Azure Meetup #4 - Build 2016 Overview
 
Microservices and Integration: what's next with Istio service mesh
Microservices and Integration: what's next with Istio service meshMicroservices and Integration: what's next with Istio service mesh
Microservices and Integration: what's next with Istio service mesh
 
Tech Talks Microservices
Tech Talks MicroservicesTech Talks Microservices
Tech Talks Microservices
 
Istio: solving challenges of hybrid cloud
Istio: solving challenges of hybrid cloudIstio: solving challenges of hybrid cloud
Istio: solving challenges of hybrid cloud
 
Global Azure Bootcamp: Azure service fabric
Global Azure Bootcamp: Azure service fabric Global Azure Bootcamp: Azure service fabric
Global Azure Bootcamp: Azure service fabric
 
Lowering the risk of monolith to microservices
Lowering the risk of monolith to microservicesLowering the risk of monolith to microservices
Lowering the risk of monolith to microservices
 
Tokyo Azure Meetup #5 - Microservices and Azure Service Fabric
Tokyo Azure Meetup #5 - Microservices and Azure Service FabricTokyo Azure Meetup #5 - Microservices and Azure Service Fabric
Tokyo Azure Meetup #5 - Microservices and Azure Service Fabric
 
Atlanta Microservices Day: Istio Service Mesh
Atlanta Microservices Day: Istio Service MeshAtlanta Microservices Day: Istio Service Mesh
Atlanta Microservices Day: Istio Service Mesh
 
KrakenD API Gateway
KrakenD API GatewayKrakenD API Gateway
KrakenD API Gateway
 
Continuous delivery by sergey seletsky
Continuous delivery by sergey seletskyContinuous delivery by sergey seletsky
Continuous delivery by sergey seletsky
 
THEFT-PROOF JAVA EE - SECURING YOUR JAVA EE APPLICATIONS
 THEFT-PROOF JAVA EE - SECURING YOUR JAVA EE APPLICATIONS THEFT-PROOF JAVA EE - SECURING YOUR JAVA EE APPLICATIONS
THEFT-PROOF JAVA EE - SECURING YOUR JAVA EE APPLICATIONS
 
Blockchain on AWS
Blockchain on AWSBlockchain on AWS
Blockchain on AWS
 
20160317 lagom sf scala
20160317 lagom sf scala20160317 lagom sf scala
20160317 lagom sf scala
 

En vedette

Git Workshop : Getting Started
Git Workshop : Getting StartedGit Workshop : Getting Started
Git Workshop : Getting Started
Wildan Maulana
 
component based softwrae engineering Cbse
component based softwrae engineering Cbsecomponent based softwrae engineering Cbse
component based softwrae engineering Cbse
Sravs Dals
 

En vedette (20)

Modern Software Architecture - Cloud Scale Computing
Modern Software Architecture - Cloud Scale ComputingModern Software Architecture - Cloud Scale Computing
Modern Software Architecture - Cloud Scale Computing
 
Microservices in Scala: Play Framework
Microservices in Scala: Play FrameworkMicroservices in Scala: Play Framework
Microservices in Scala: Play Framework
 
Software Architecture for Cloud Infrastructure
Software Architecture for Cloud InfrastructureSoftware Architecture for Cloud Infrastructure
Software Architecture for Cloud Infrastructure
 
Microservices in Scala: Spray
Microservices in Scala: SprayMicroservices in Scala: Spray
Microservices in Scala: Spray
 
Microservices 101: opportunities, dilemmas and problems
Microservices 101: opportunities, dilemmas and problemsMicroservices 101: opportunities, dilemmas and problems
Microservices 101: opportunities, dilemmas and problems
 
Truly agile company
Truly agile companyTruly agile company
Truly agile company
 
Cognos vs Hyperion vs SSAS Comparison
Cognos vs Hyperion vs SSAS ComparisonCognos vs Hyperion vs SSAS Comparison
Cognos vs Hyperion vs SSAS Comparison
 
Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)
Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)
Developing Event-driven Microservices with Event Sourcing & CQRS (gotoams)
 
Synchronous Communication
Synchronous CommunicationSynchronous Communication
Synchronous Communication
 
Microservices approach for Websphere commerce
Microservices approach for Websphere commerceMicroservices approach for Websphere commerce
Microservices approach for Websphere commerce
 
8051 microcontroller notes continuous
8051 microcontroller notes continuous 8051 microcontroller notes continuous
8051 microcontroller notes continuous
 
Duplicating data or replicating data in Micro Services
Duplicating data or replicating data in Micro ServicesDuplicating data or replicating data in Micro Services
Duplicating data or replicating data in Micro Services
 
Practical Akka HTTP - introduction
Practical Akka HTTP - introductionPractical Akka HTTP - introduction
Practical Akka HTTP - introduction
 
Building and deploying microservices with event sourcing, CQRS and Docker (Be...
Building and deploying microservices with event sourcing, CQRS and Docker (Be...Building and deploying microservices with event sourcing, CQRS and Docker (Be...
Building and deploying microservices with event sourcing, CQRS and Docker (Be...
 
Asynchronous and synchronous
Asynchronous and synchronousAsynchronous and synchronous
Asynchronous and synchronous
 
Php development with Docker
Php development with DockerPhp development with Docker
Php development with Docker
 
Git Workshop : Getting Started
Git Workshop : Getting StartedGit Workshop : Getting Started
Git Workshop : Getting Started
 
Information Design Web Planning Mockup
Information Design Web Planning MockupInformation Design Web Planning Mockup
Information Design Web Planning Mockup
 
component based softwrae engineering Cbse
component based softwrae engineering Cbsecomponent based softwrae engineering Cbse
component based softwrae engineering Cbse
 
MockupBuilder
MockupBuilderMockupBuilder
MockupBuilder
 

Similaire à Microservices - opportunities, dilemmas and problems

Similaire à Microservices - opportunities, dilemmas and problems (20)

Introduction to Microservices
Introduction to MicroservicesIntroduction to Microservices
Introduction to Microservices
 
Pros & Cons of Microservices Architecture
Pros & Cons of Microservices ArchitecturePros & Cons of Microservices Architecture
Pros & Cons of Microservices Architecture
 
Building FoundationDB
Building FoundationDBBuilding FoundationDB
Building FoundationDB
 
Accelerate DevOps/Microservices and Kubernetes
Accelerate DevOps/Microservices and KubernetesAccelerate DevOps/Microservices and Kubernetes
Accelerate DevOps/Microservices and Kubernetes
 
Data Engineer, Patterns & Architecture The future: Deep-dive into Microservic...
Data Engineer, Patterns & Architecture The future: Deep-dive into Microservic...Data Engineer, Patterns & Architecture The future: Deep-dive into Microservic...
Data Engineer, Patterns & Architecture The future: Deep-dive into Microservic...
 
DCEU 18: From Monolith to Microservices
DCEU 18: From Monolith to MicroservicesDCEU 18: From Monolith to Microservices
DCEU 18: From Monolith to Microservices
 
Understanding Microservices
Understanding Microservices Understanding Microservices
Understanding Microservices
 
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
 
Cloud-native Data: Every Microservice Needs a Cache
Cloud-native Data: Every Microservice Needs a CacheCloud-native Data: Every Microservice Needs a Cache
Cloud-native Data: Every Microservice Needs a Cache
 
Iot cloud service v2.0
Iot cloud service v2.0Iot cloud service v2.0
Iot cloud service v2.0
 
Microservices Patterns with GoldenGate
Microservices Patterns with GoldenGateMicroservices Patterns with GoldenGate
Microservices Patterns with GoldenGate
 
AWS Serverless Community Day Keynote and Vendia Launch 6-26-2020
AWS Serverless Community Day Keynote and Vendia Launch 6-26-2020AWS Serverless Community Day Keynote and Vendia Launch 6-26-2020
AWS Serverless Community Day Keynote and Vendia Launch 6-26-2020
 
Introduction to microservices
Introduction to microservicesIntroduction to microservices
Introduction to microservices
 
Scaling Systems: Architectures that grow
Scaling Systems: Architectures that growScaling Systems: Architectures that grow
Scaling Systems: Architectures that grow
 
Concurrency at Scale: Evolution to Micro-Services
Concurrency at Scale:  Evolution to Micro-ServicesConcurrency at Scale:  Evolution to Micro-Services
Concurrency at Scale: Evolution to Micro-Services
 
Software Architecture and Architectors: useless VS valuable
Software Architecture and Architectors: useless VS valuableSoftware Architecture and Architectors: useless VS valuable
Software Architecture and Architectors: useless VS valuable
 
.Net Microservices with Event Sourcing, CQRS, Docker and... Windows Server 20...
.Net Microservices with Event Sourcing, CQRS, Docker and... Windows Server 20....Net Microservices with Event Sourcing, CQRS, Docker and... Windows Server 20...
.Net Microservices with Event Sourcing, CQRS, Docker and... Windows Server 20...
 
How to grow your own Microservice?
How to grow your own Microservice?How to grow your own Microservice?
How to grow your own Microservice?
 
SpringPeople - Introduction to Cloud Computing
SpringPeople - Introduction to Cloud ComputingSpringPeople - Introduction to Cloud Computing
SpringPeople - Introduction to Cloud Computing
 
Microservice intro
Microservice introMicroservice intro
Microservice intro
 

Dernier

%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 

Dernier (20)

Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 

Microservices - opportunities, dilemmas and problems

  • 1. Microservices in Scala workshop by Iterators by Jacek Głodek, Łukasz Sowa and Andrzej Michałowski
  • 2. Questions we try to answer today: • What are microservices? • What's the difference between them vs monolithic architectures? • What are the different flavours of microservices? • How to use Spray.io, Play and Akka to do microservices?
  • 3. Agenda • Short introduction to microservices • Spec of our system • "MS backbone - simple microservices with spray.io" talk • Auth and url collection microservices • "Asynchronous views and web services with Play and Akka" talk • Image fetching — reactive deffered job — Play with websockets • "Eventsourcing - total data immutability with akka persistence" talk • Voting made with event sourcing • Ops, testing and monitoring • Summary
  • 4. Architectures and practices What architectures are we talking about?! Don't think MVC, think MVC web-app run on multiple nodes with load-balancing, memcached cache and Postgres db. What practices are we talking about?! Think TDD, BDD, SOLID, etc.
  • 5. Code and code-base architecture and practices • programming paradigms • TDD, SOLID, BDD, etc. • Folder structure • Object naming conventions • Separation of concerns • Sharing data in threads
  • 6. Distributed system architecture • Interfaces, protocols and contracts between modules • System modules • APIs • Deployment strategy • Non-functional guarantees
  • 7. “Microservices” is a vague term • multiple small apps with REST/HTTP interface, • multiple small apps with deferred message processing • multiple single-file apps with less than 100 lines of code • multiple small apps possibly written in different languages communicating with each other
  • 8. Microservices • small single-purpose apps with bounded domain enabling polyglot programming + add your favourite ingredients + differences from monolithic architecture © Marivlada | Dreamstime Stock Photos & Stock Free Images
  • 9. Microservices vs Monolithic architecture Deployment units Monolith Microservices
  • 10. Microservices vs Monolithic architecture Deployment strategy Monolith Microservices
  • 11. Microservices vs Monolithic architecture Coupling Monolith Microservices • global variables • messages • function calls • data structures • shared memory • multiple levels of indirection managed with • SOLID, encapsulation and other practices • dependency injection, etc. • different protocols • shared DB’s • shared message queues managed with • contracts
  • 12. Microservices vs Monolithic architecture Interfaces vs Contracts Monolith Microservices • written with code and shared interfaces within code packages and libraries • checked by tests or compilers (?) • type validations • api calls defined by the language • encapsulation, single-responsibility rule, etc. Problems: • meta-programming, monkey-patching, global state and workarounds. • spoken / unspoken • should be defined on “paper” • defined by protocols, and technologies used, like: • http, websockets, RPC, rabbitMQ, shared MongoDB or Redis, etc. ) Problems: • changing contract or having no contract requires changing multiple services. • multiple API versions without easy solution for validating consistency
  • 14. Small single purpose code • Low complexity • No code-level coupling with other modules • “this big” or one hundred lines of code • Easy to rewrite • Rewrite instead of refactor • Easy to spot inputs and outputs • Still requires readable logic
  • 15. Relevant metrics • Measuring business performance using relevant metrics • Visualisation • Ex. Kamon, custom charts Ex: • forms processed, • mails sent, • PDF invoices generated • performance metrics: • response times • queue sizes • ex. New Relic, etc.
  • 16. Continuous deployment with hot swapping Having all the metrics: • You can deploy continuously • You can test the service by deploying new and old versions concurrently. • Given enough fail-safety contracts, you can test in production • One service down shouldn’t break whole architecture
  • 19. Problems and Dilemmas • synchronous and asynchronous processing • guarantees and SLAs • shared and private databases • making layers of micro services • bare-metal vs platforms • data-driven systems, eventsourcing and real-time messaging
  • 20. Synchronous vs Asynchronous processing Synchronous processing • immediate responses • fast and hard failure • “asking” • request timeouts • problematic to debug series of request Ex. chain of HTTP request and getting 200 Success response Asynchronous processing • posting jobs to be processed • tell don’t ask • fire and forget • need of pooling or waiting for response • longer jobs • failures can be recovered from! Ex. uploading a video file to be processed and getting “Video uploaded successfuly” response.
  • 21. Guarantees and SLA’s Is clicking like button same as performing bank transfer? Do we really need full ACID DB for holding chat messages? Will it perform fast enough to serve thousand of clients concurrently without building whole cluster of DB’s? 100% consistency and synchronicity is not possible to achieve in distributed system without introducing system wide locks. System-wide locks affect performance a lot, while we try to achieve reactive and scalable system. In microservices we can keep different parts of system with different guarantees and different approaches
  • 22. Shared vs private databases Shared database • pretty strong contract • convenient for simple domain problems • easier to maintain • problems: • coupling too many services, too deeply. • can become performance bottle-neck Private databases • useful for decoupling and reuse • useful for performance • useful for embedding in microservices that abstract complicated domain models • difficult to maintain, although can many databases can work on single db cluster/instance. • useful for giving microservice authority over some data • problems: • data sharding
  • 23. Layers of micro services frontend, public facing micro services, background workers and services
  • 24. Layers of micro services frontend issues • CORS (Cross Origin Resource Sharing) • Rendering of HTML: server-side or in javascript • Moving caches to CDN • Keeping modularity and reusability also on the frontend side • One backend microservice failure shouldn’t break whole frontend.
  • 25. Layers of micro services user facing services issues • CORS • Versioning of API • Authentication • Caching • Loadbalancing • Security
  • 26. Layers of micro services internal services • Security • Scalability • Monitoring for failures • Keeping the data consistent • Garbage-in garbage-out
  • 27. Platform abstraction level bare-metal servers vs platforms Higher level framework = more difficult polyglot programming + easier maintenance + possible code sharing + more tight coupling opportunities
  • 28. Stateful databases vs eventsourcing Stateful databases • State stored in the database • Ex. “John has $3122 USD on his account” • Transactions and locks that enable us to mutate the state Eventsourcing • No state just events. • Ex. “John got spent $12 USD” • State is inferred from the past events… • Every situation can be replayed! • Events are immutable = no problem with locking, etc. We can also not care about keeping the data at all.
  • 29. … and other dilemmas. But…
  • 30. Why not mix all the approaches?
  • 31. Can sole database be a microservice?
  • 32. Must microservice be based on REST interfaces?
  • 33. How would you model microservices for the last system you developed?
  • 34. That’s it for the intro Thanks! jacek@theiterators.com
  • 35. Summary Microservices come in different flavours:! sync, async, rest, mq, databases, events, hard and easy guarantees, with private and shared databases, based on bare-metal machines and high level platforms. © Marivlada | Dreamstime Stock Photos & Stock Free Images
  • 36. Summary Spray is great foundation: for simple HTTP services for connecting with awesome Akka processing framework with great directives for strictly defining what requests get processed with great marshalling and serialisation who make simple easy and abstractable
  • 37. Summary Play is has some useful elements: ! nice routing DSL, nice controller with Action composing nice Websockets with Akka actors lots of libraries to integrate to big boilerplate
  • 38. Summary Akka is great for messaging, makes concurrent programming easy! ! Actors are not threads Messages and Questions with timeouts Scheduling Watch not to make bloated — keep it single purpose
  • 39. Summary Eventsourcing ! ! Don’t store mutable state Store immutable events Rebuild state by processing the past events Akka persistance stores the events for you in a journal of choice (Mongo, Redis, Postgres, Maria, Mysql)
  • 40. What haven’t we talked about ! JVM microframeworks — Finagle, etc. Frontend — how to keep modularity, where to generate HTML, how to handle caching. Monitoring — health checks and metrics (spray directives?) and monitoring front end DevOps — How to configure loadbalancers, CORS, handling configuration and discovery of microservices, prepare auto-scaling, and handling situations when services fail, or how to make hot swap deployments.
  • 41. Thanks! Łukasz Sowa @luksow lukasz@theiterators.com Jacek Głodek @jacekglodek jacek@theiterators.com