2019-08-22 09:20:27 +08:00
|
|
|
|
# 高可用架构
|
2019-11-19 08:41:35 +08:00
|
|
|
|
- [Hystrix 介绍](./hystrix-introduction.md)
|
|
|
|
|
- [电商网站详情页系统架构](./e-commerce-website-detail-page-architecture.md)
|
|
|
|
|
- [Hystrix 线程池技术实现资源隔离](./hystrix-thread-pool-isolation.md)
|
|
|
|
|
- [Hystrix 信号量机制实现资源隔离](./hystrix-semphore-isolation.md)
|
|
|
|
|
- [Hystrix 隔离策略细粒度控制](./hystrix-execution-isolation.md)
|
|
|
|
|
- [深入 Hystrix 执行时内部原理](./hystrix-process.md)
|
|
|
|
|
- [基于 request cache 请求缓存技术优化批量商品数据查询接口](./hystrix-request-cache.md)
|
|
|
|
|
- [基于本地缓存的 fallback 降级机制](./hystrix-fallback.md)
|
|
|
|
|
- [深入 Hystrix 断路器执行原理](./hystrix-circuit-breaker.md)
|
|
|
|
|
- [深入 Hystrix 线程池隔离与接口限流](./hystrix-thread-pool-current-limiting.md)
|
|
|
|
|
- [基于 timeout 机制为服务接口调用超时提供安全保护](./hystrix-timeout.md)
|
2019-08-22 09:20:27 +08:00
|
|
|
|
|
|
|
|
|
## 高可用系统
|
|
|
|
|
- 如何设计一个高可用系统?
|
|
|
|
|
|
|
|
|
|
## 限流
|
|
|
|
|
- 如何限流?在工作中是怎么做的?说一下具体的实现?
|
|
|
|
|
|
|
|
|
|
## 熔断
|
|
|
|
|
- 如何进行熔断?
|
|
|
|
|
- 熔断框架都有哪些?具体实现原理知道吗?
|
|
|
|
|
- [熔断框架如何做技术选型?选用 Sentinel 还是 Hystrix?](/docs/high-availability/sentinel-vs-hystrix.md)
|
|
|
|
|
|
|
|
|
|
## 降级
|
|
|
|
|
- 如何进行降级?
|