- Hands-On Microservices with Kotlin
- Juan Antonio Medina Iglesias
- 264字
- 2021-06-30 19:10:40
Loosely couple
No microservice exists on its own, as any system needs to interact with others, including other microservices, but we need to do it as loosely coupled as we can. Let's say that we are designing a microservice that returns the available offers for a giving customer, we may need a relation to our customer, for example, a customer ID, and that should be the maximum coupling that we may accept.
Imagine a scenario that for a component that uses our offers, the microservice needs to display the customer name when it displays those offers. We could modify our implementation to use the customer microservice to add that information to our response, but in doing so, we are coupling with the customer microservice. In that case, if the customer name field changes, for example, to become not just a name but is separated into surname and forename, we need to change the output of our microservice. That type of coupling needs to be avoided; our microservices should just return what information that is really under their domain.
We need to take care of how we are coupling, not only between microservices, but with everything in our architecture, including external systems. That is one of the reasons why every microservice should own its own data, this including even a database where the data is persisted.
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- 演進式架構(原書第2版)
- Learning C# by Developing Games with Unity 2020
- Learning Bayesian Models with R
- 深入RabbitMQ
- Java程序設計
- 批調度與網絡問題的組合算法
- ASP.NET Core 2 Fundamentals
- HTML5從入門到精通(第4版)
- HTML5開發精要與實例詳解
- 青少年學Python(第2冊)
- Web編程基礎:HTML5、CSS3、JavaScript(第2版)
- 原型設計:打造成功產品的實用方法及實踐
- C語言編程魔法書:基于C11標準
- 程序員的英語