- 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:

- Monkey Game Development:Beginner's Guide
- Python入門很簡單
- Mastering Concurrency in Go
- jQuery EasyUI網站開發實戰
- Web Development with Django Cookbook
- 精通Scrapy網絡爬蟲
- 用Flutter極速構建原生應用
- Instant RubyMotion App Development
- Learning Network Forensics
- SharePoint Development with the SharePoint Framework
- Internet of Things with ESP8266
- JavaScript動態網頁編程
- Clojure High Performance Programming(Second Edition)
- C# 7.1 and .NET Core 2.0:Modern Cross-Platform Development(Third Edition)
- Python GUI Programming Cookbook(Second Edition)