- Microservices with Azure
- Namit Tanasseri Rahul Rai
- 133字
- 2021-07-02 22:18:24
Shared data
Microservices should not share the same data store. Sharing data representation can make altering the database very difficult, and even if done, such a change always runs the risk of causing failure to services that are still using the old data representation. Such challenges ultimately lead to a bloated and complex database and accumulation of lots of dead data over time.
Data replication is a possible solution to sharing data across Microservices. However, data should not be blindly replicated across Microservices as the same problems that are present with shared databases would still remain. A custom transformation process should convert data available from the database to the schema used by the data store of the Microservice. The replication process can be triggered in batches or on certain events in the system.
- Data Visualization with D3 4.x Cookbook(Second Edition)
- Getting started with Google Guava
- Java面向對象軟件開發
- Vue.js 3.x從入門到精通(視頻教學版)
- Getting Started with PowerShell
- 從0到1:HTML+CSS快速上手
- 高級C/C++編譯技術(典藏版)
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- QGIS By Example
- Learning PHP 7
- Beginning C++ Game Programming
- Getting Started with Nano Server
- iOS開發項目化入門教程
- Web開發的平民英雄:PHP+MySQL
- Building Microservices with Go