- 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.
- C++ Builder 6.0下OpenGL編程技術
- Clojure for Domain:specific Languages
- OpenNI Cookbook
- Django Design Patterns and Best Practices
- 假如C語言是我發明的:講給孩子聽的大師編程課
- Mastering Swift 2
- Unity Game Development Scripting
- C/C++程序員面試指南
- Laravel Application Development Blueprints
- scikit-learn Cookbook(Second Edition)
- Mastering SciPy
- Mastering PowerCLI
- Microsoft Exchange Server 2016 PowerShell Cookbook(Fourth Edition)
- 從零開始學Python大數據與量化交易
- C語言程序設計教程