- Spring 5.0 Microservices(Second Edition)
- Rajesh R V
- 287字
- 2021-07-02 19:44:53
Enables to build organic systems
Microservices help us build systems that are organic in nature. This is significantly important when migrating monolithic systems gradually to microservices.
Organic systems are systems that grow laterally over a period of time by adding more and more functions to it. In practice, applications grow unimaginably large in its lifespan, and, in most cases, the manageability of the application reduces dramatically over that same period of time.
Microservices are all about independently manageable services. This enables us to keep adding more and more services as the need arises, with minimal impact on the existing services. Building such systems do not need huge capital investment. Hence, businesses can keep building as part of their operational expenditure.
A loyalty system in an airline was built years ago, targeting individual passengers. Everything was fine until the airline started offering loyalty benefits to their corporate customers. Corporate customers are individuals grouped under corporations. Since the current system's core data model is flat, targeting individuals, the corporate requirement needs a fundamental change in the core data model, and hence, a huge rework to incorporate this requirement.
As shown in the following diagram, in a microservices-based architecture, customer information would be managed by the Customer microservices, and loyalty by the Loyalty microservice:

In this situation, it is easy to add a new Corporate Customer microservice to manage corporate customers. When a corporation is registered, individual members will be pushed to the Customer microservices to manage them as usual. The Corporate Customer microservice provides a corporate view by aggregating data from the Customer microservice. It will also provide services to support corporate-specific business rules. With this approach, adding new services will have only a minimal impact on existing services.
- GAE編程指南
- C#編程入門指南(上下冊)
- Vue.js 2 and Bootstrap 4 Web Development
- Unity 2020 Mobile Game Development
- aelf區塊鏈應用架構指南
- EPLAN實戰設計
- Visual C#.NET程序設計
- OpenStack Orchestration
- Spring Boot實戰
- IPython Interactive Computing and Visualization Cookbook
- UML基礎與Rose建模實用教程(第三版)
- Drupal Search Engine Optimization
- Python機器學習開發實戰
- Groovy 2 Cookbook
- DevOps 精要:業務視角