- Building Microservices with .NET Core 2.0(Second Edition)
- Gaurav Aroraa
- 322字
- 2021-07-02 20:12:54
Deployment challenges
The current application also has deployment challenges. It is designed as a monolithic application, and any change in the order module would require the entire application to be deployed again. This is time-consuming and the whole cycle will have to be repeated with every change. This means this could be a frequent cycle. Scaling could only be a distant dream in such a scenario.
As discussed about scaling regarding current applications having deployment challenges that require us to deploy the entire assembly, the modules are interdependent, and it is a single assembly application of .NET. The deployment of the entire application in one go also makes it mandatory to test the entire functionality of our application. The impact of such an exercise would be huge:
- High-risk deployment: Deploying an entire solution or application in one go poses a high risk as all modules are going to be deployed even for a single change in one of the modules.
- Higher testing time: As we have to deploy the complete application, we will have to test the functionality of the entire application. We can't go live without testing. Due to higher interdependency, the change might cause a problem in some other module.
- Unplanned downtime: Complete production deployment needs code to be fully tested and hence we need to schedule our production deployment. This is a time-consuming task that results in high downtime. Although planned downtime, during this time, both business and customers will be affected due to the unavailability of the system; this could cause revenue loss to the business.
- Production bugs: A bug-free deployment would be the dream of any project manager. However, this is far from reality and every team dreads this possibility. Monolithic applications are no different from this scenario and the resolution of production bugs is easier said than done. The situation can only become more complex with some previous bug remaining unresolved.
- CMDB分步構建指南
- 深入淺出Windows API程序設計:編程基礎篇
- 大學計算機基礎(第2版)(微課版)
- Building a Quadcopter with Arduino
- 區塊鏈技術與應用
- 智能手機APP UI設計與應用任務教程
- JSP程序設計實例教程(第2版)
- C++ Application Development with Code:Blocks
- Python一行流:像專家一樣寫代碼
- Angular Design Patterns
- Mastering OAuth 2.0
- Learning ECMAScript 6
- Design Patterns and Best Practices in Java
- 信息學奧林匹克競賽初賽精講精練
- Unity 3D UI Essentials