1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-07-28 12:22:17 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Guide
132a1d5115
Merge pull request #1665 from chenzeshenga/patch-1
Update high-availability-system-design.md
2022-04-04 20:41:54 +08:00
chenzeshenga
999a6b247a
Update high-availability-system-design.md 2022-04-04 17:09:06 +08:00

View File

@ -42,7 +42,7 @@
### 3.限流
流量控制flow control其原理是监控应用流量的 QPS 或并发线程数等指标,当达到指定的阈值时对流量进行控制,以避免被瞬时的流量高峰冲垮,从而保障应用的高可用性。——来自 alibaba-[Sentinel](https://github.com/alibaba/Sentinel "Sentinel") 的 wiki。
流量控制flow control其原理是监控应用流量的 QPS 或并发线程数等指标,当达到指定的阈值时对流量进行控制,以避免被瞬时的流量高峰冲垮,从而保障应用的高可用性。——来自 [alibaba-Sentinel](https://github.com/alibaba/Sentinel "Sentinel") 的 wiki。
### 4.超时和重试机制设置