Microservices: Difference between revisions
From Devguid
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== About == | == About == | ||
* Autonomous | |||
* Single responsibility principle | * Single responsibility principle | ||
** Do one thing and do it well | ** Do one thing and do it well | ||
* Should be able to deploy on it's own | * Should be able to deploy on it's own | ||
* Public interface should be defined clearly | * Public interface should be defined clearly | ||
Line 10: | Line 10: | ||
* Secure | * Secure | ||
=== Size of a microservice === | |||
== Resilience == | |||
== Securing == | |||
== Deploy == | |||
[[Category:Architecture]] [[Category:Designpatterns]] | [[Category:Architecture]] [[Category:Designpatterns]] |
Revision as of 12:37, 25 April 2023
About
- Autonomous
- Single responsibility principle
- Do one thing and do it well
- Should be able to deploy on it's own
- Public interface should be defined clearly
- Perform well
- Resilience to error
- Secure