Difference between revisions of "Principles of Microservices"
From Logic Wiki
(Created page with "Category:Microservices Category:Design test") |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
[[Category:Design]] | [[Category:Design]] | ||
| − | + | == Principles == | |
| + | * Modelled Around Business Domain | ||
| + | * Culture of Automation (CI/CD) | ||
| + | * Hide Implementation details (not sharing DB) | ||
| + | * Decentralise all the things | ||
| + | * Deploy Independently | ||
| + | * Consumer First | ||
| + | * Isolate Failure | ||
| + | * Highly Observible | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | == Videos == | ||
| + | [https://www.youtube.com/watch?v=PFQnNFe27kU Principles Of Microservices by Sam Newman] | ||
| + | |||
| + | == Resources == | ||
| + | * [https://github.com/dotnet-architecture/eShopOnContainers eShopOnContainers] | ||
| + | * [https://docs.microsoft.com/en-us/dotnet/standard/microservices-architecture/ .NET Microservices: Architecture for Containerized .NET Applications] | ||
Latest revision as of 00:24, 12 February 2019
Principles
- Modelled Around Business Domain
- Culture of Automation (CI/CD)
- Hide Implementation details (not sharing DB)
- Decentralise all the things
- Deploy Independently
- Consumer First
- Isolate Failure
- Highly Observible
Videos
Principles Of Microservices by Sam Newman