当前位置:网站首页>How to understand distributed architecture and micro service architecture
How to understand distributed architecture and micro service architecture
2022-07-07 08:26:00 【Code two brother】
How to introduce distributed architecture and micro service architecture to others ?
Let's first introduce the distributed system
A distributed system is a group of computer nodes that communicate through the network and complete common computing tasks
The design concept of distributed system ?
In fact, it comes from the bottleneck of computing power and the increase of cost of minicomputers or mainframes
In the centralized system
We want to improve the processing performance of the program
Can only continue to improve CPU And increase memory
But the improvement of hardware itself has bottlenecks
therefore , When enterprises have higher and higher requirements for computing power
The cluster architecture can no longer meet the requirements
So in this background
Will produce distributed computing
That is to say, a computing task is assigned to multiple computer nodes to run ,
But this kind of computing method is imperceptible to users and clients
It's like accessing a single computer
What it sees is still a whole
In the distributed system ?
The software architecture also needs to be adjusted accordingly
in other words
The original single application needs to be split and deployed to multiple computer nodes for Distributed Computing
so what , Each service uses remote communication protocol to realize the data exchange of calculation results
Finally, summarize the results and return them to the client
An application architecture for such a distributed deployment is called SOA
Also known as a service-oriented architecture
secondly , Explain the microservice architecture again
Actually , The microservice architecture itself is a distributed architecture
Just to say that microservice architecture emphasizes more on the granularity control of application services deployed on various computer nodes
Its core idea is very simple
in other words ,SOA The service node split in the architecture is further granular decoupling
The update granularity service of each split processing is called microservice
And each micro service that is separated independently is served by a small team
The advantage of this split is that it can make our program more scalable
The iterative efficiency of development will also be higher. For some large-scale Internet projects
Microservice architecture can easily realize the innovation and iteration of product functions without affecting the use of users
边栏推荐
- Pvtv2--pyramid vision transformer V2 learning notes
- Interview questions (CAS)
- Using helm to install rainbow in various kubernetes
- SSM 整合
- 国标GB28181协议视频平台EasyGBS新增拉流超时配置
- 拓维信息使用 Rainbond 的云原生落地实践
- opencv学习笔记三——图像平滑/去噪处理
- Vulnerability recurrence easy_ tornado
- [go ~ 0 to 1] obtain timestamp, time comparison, time format conversion, sleep and timer on the seventh day
- DeiT学习笔记
猜你喜欢
Opencv learning note 5 - gradient calculation / edge detection
Excel import function of jeesite form page
Tuowei information uses the cloud native landing practice of rainbow
Fluentd is easy to use. Combined with the rainbow plug-in market, log collection is faster
Opencv learning note 4 - expansion / corrosion / open operation / close operation
opencv学习笔记二——图像基本操作
Lua programming learning notes
Rainbow 5.7.1 supports docking with multiple public clouds and clusters for abnormal alarms
GFS分布式文件系统
藏书馆App基于Rainbond实现云原生DevOps的实践
随机推荐
数据中台落地实施之法
Battery and motor technology have received great attention, but electric control technology is rarely mentioned?
XCiT学习笔记
Bisenet features
Interactive book delivery - signed version of Oracle DBA work notes
Pvtv2--pyramid vision transformer V2 learning notes
Myabtis_ Plus
归并排序和非比较排序
The use of generics and vararg variable parameters in kotlin
[IELTS speaking] Anna's oral learning records Part3
Splunk查询csv lookup table数据动态查询
[untitled]
Open3d ISS key points
Golang 编译约束/条件编译 ( // +build <tags> )
opencv学习笔记四——膨胀/腐蚀/开运算/闭运算
Register of assembly language by Wang Shuang
Zcmu--1492: problem d (C language)
【Go ~ 0到1 】 第七天 获取时间戳,时间比较,时间格式转换,Sleep与定时器
单元测试报告成功率低
如何理解分布式架构和微服务架构呢