|
|
|
|
|
by ex-aws-now-goog
2806 days ago
|
|
What is different about breaking an application into services is that because services run as different processes:
* you have an immediate natural failure domain (the process) as well as resource isolation between services,
* services can be updated independently (something that is done many thousands of times every day at companies like Amazon or Google),
* a corollary of independent updates is that services can be tested independently and new code can be "canaried" by initially deploying only a single instance of a service. The statement that service orientation "... just replaces internal calls between services of your monolith with flaky and slower network calls" is correct in that network calls are flaky and slower but incorrect in its assessment that you gain nothing from using services. |
|
The vast majority of people aren't working at Amazon or Google's scale despite developers seeming to think that they need to work the same way.