- Spring 5.0 Microservices(Second Edition)
- Rajesh R V
- 144字
- 2021-07-02 19:44:57
Disposability, with minimal overhead
The disposability with minimal overhead principle advocates to build applications with minimal startup and shutdown times, and with a graceful shutdown support. In an automated deployment environment, we should be able to bring up or bring down instances as quickly as possible. If the application's startup or shutdown takes considerable time, it will have an adverse effect on automation. The startup time is proportionally related to the size of the application. In a cloud environment targeting auto scaling, we should be able to spin up a new instance quickly. This is also applicable when promoting new versions of services.
In the microservices context, in order to achieve full automation, it is extremely important to keep the size of the application as thin as possible, with minimal startup and shutdown times. Microservices should also consider lazy loading of objects and data.
- Mastering Kotlin
- Mastering Scientific Computing with R
- Practical Windows Forensics
- iOS編程基礎:Swift、Xcode和Cocoa入門指南
- Expert Data Visualization
- Mastering Apache Maven 3
- Python算法詳解
- 深入剖析Java虛擬機:源碼剖析與實例詳解(基礎卷)
- Visual Studio Code 權威指南
- Python青少年趣味編程
- Mastering PowerCLI
- Instant GLEW
- 零基礎學SQL(升級版)
- 從零開始學算法:基于Python
- 循序漸進Vue.js 3前端開發實戰