Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 1.03 KB

monoliths_vs_microservices.md

File metadata and controls

20 lines (12 loc) · 1.03 KB

< Back

A word on Microservices vs Monoliths

Microservices are popular as (in theory) they force a number of the above principals onto teams by splitting up services into small domain concerns with clear interfaces. They provide other advantages such as (but not limited to):

  • Scalability improvements
  • Improved fault isolation
  • Program language and technology agnostic
  • Reusability across different areas of business

However they also have a management overhead and if designed poorly can be unintentionally tightly coupled (e.g a distributed monolith) which can become a nightmare to maintain.

We believe a team should understand how to create a loosely coupled Monolith before embarking on Microservices so recommend the video below.

Creating a Loosely Coupled Monolith

Modular Monoliths • Simon Brown (Warning! Challenging! Pay close attention to minute 38 onwards)

< Back