Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 3.23 KB

README.md

File metadata and controls

60 lines (46 loc) · 3.23 KB

Microservice

Sam Newman: Microservices are not something you should aim for. They are a means to an end. Focus on what's important - building useful software.

Microservice-Ecosystem

microservice-ecosystem source: Get Small To Get Big Through Microservices

Docker

microservice-docker

Deployment Strategy

  • Multiple Service Instances per Host Pattern
  • Multiple Service Instances

The Scale Cube

  • X-axis. horizontal duplication, scale by cloning.
  • Y-axis. functional decomposition, scale by splitting different this.
  • Z-axis. data partitioning, scale by splitting similar things.

Readings