- Implementing DevOps with Ansible 2
- Jonathan McAllister
- 201字
- 2021-07-02 19:02:54
Microservices
Microservices architectures cropped up around the same time as containerization and portable virtualization. The general concept behind a microservice architecture is to architect a software system in such a way that large development groups have a simplistic way to update software through repeatable deployments, and upgrade only the parts that have changed. In some ways, microservices provide a basic constraint and solution to development sprawl to ensure that software components don't become monolithic. The general practice of upgrading only the parts that have changed might be to think of this as replacing the tires on a car instead of replacing the entire car every time the tires become worn.
A microservice development paradigm requires discipline from development personnel to ensure the structure and content of the microservice don't grow beyond its initially defined scope. As such, the basic components of a microservice are listed here:
- Each microservice should have an API or externally facing mode of communication
- Each microservice, where applicable, should have a unique database component
- Each microservice should only be accessible through its API or externally facing mode of communication
So from what we've learned, microservices vs monolithic architectures could be summed up in the following basic diagram:

- Moodle Administration Essentials
- Azure IoT Development Cookbook
- SQL Server 2012數據庫技術及應用(微課版·第5版)
- MySQL 8 DBA基礎教程
- JavaScript 程序設計案例教程
- Scala編程實戰(原書第2版)
- 微信小程序開發與實戰(微課版)
- C++從入門到精通(第6版)
- 交互式程序設計(第2版)
- Application Development with Parse using iOS SDK
- Java EE 程序設計
- 精通Rust(第2版)
- Arduino Robotic Projects
- HTML5從入門到精通(第3版)
- 零基礎學Python(升級版)