|
15 | 15 | </a> |
16 | 16 |
|
17 | 17 | <a href="https://github.com/dunwu/db-tutorial/commits/master"> |
18 | | - <img alt="commit" class="no-zoom" src="https://img.shields.io/github/workflow/status/dunwu/db-tutorial/CI?style=for-the-badge"> |
| 18 | + <img alt="build" class="no-zoom" src="https://img.shields.io/github/actions/workflow/status/dunwu/db-tutorial/deploy.yml?style=for-the-badge"> |
19 | 19 | </a> |
20 | 20 |
|
21 | 21 | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh"> |
|
35 | 35 |
|
36 | 36 | ### 分布式综合 |
37 | 37 |
|
38 | | -- [分布式面试总结](https://dunwu.github.io/waterdrop/pages/f9209d/) |
| 38 | +- [分布式面试总结](https://dunwu.github.io/blog/pages/f9209d/) |
39 | 39 |
|
40 | 40 | ### 分布式理论 |
41 | 41 |
|
42 | | -- [分布式理论](https://dunwu.github.io/waterdrop/pages/286bb3/) - 关键词:`拜占庭将军`、`CAP`、`BASE`、`错误的分布式假设` |
43 | | -- [共识性算法 Paxos](https://dunwu.github.io/waterdrop/pages/0276bb/) - 关键词:`共识性算法` |
44 | | -- [共识性算法 Raft](https://dunwu.github.io/waterdrop/pages/4907dc/) - 关键词:`共识性算法` |
45 | | -- [分布式算法 Gossip](https://dunwu.github.io/waterdrop/pages/71539a/) - 关键词:`数据传播` |
| 42 | +- [分布式理论](https://dunwu.github.io/blog/pages/286bb3/) - 关键词:`拜占庭将军`、`CAP`、`BASE`、`错误的分布式假设` |
| 43 | +- [共识性算法 Paxos](https://dunwu.github.io/blog/pages/0276bb/) - 关键词:`共识性算法` |
| 44 | +- [共识性算法 Raft](https://dunwu.github.io/blog/pages/4907dc/) - 关键词:`共识性算法` |
| 45 | +- [分布式算法 Gossip](https://dunwu.github.io/blog/pages/71539a/) - 关键词:`数据传播` |
46 | 46 |
|
47 | 47 | ### 分布式关键技术 |
48 | 48 |
|
|
53 | 53 |
|
54 | 54 | #### 流量调度 |
55 | 55 |
|
56 | | -- [流量控制](https://dunwu.github.io/waterdrop/pages/60bb6d/) - 关键词:`限流`、`熔断`、`降级`、`计数器法`、`时间窗口法`、`令牌桶法`、`漏桶法` |
57 | | -- [负载均衡](https://dunwu.github.io/waterdrop/pages/98a1c1/) - 关键词:`轮询`、`随机`、`最少连接`、`源地址哈希`、`一致性哈希`、`虚拟 hash 槽` |
58 | | -- [服务路由](https://dunwu.github.io/waterdrop/pages/3915e8/) - 关键词:`路由`、`条件路由`、`脚本路由`、`标签路由` |
| 56 | +- [流量控制](https://dunwu.github.io/blog/pages/60bb6d/) - 关键词:`限流`、`熔断`、`降级`、`计数器法`、`时间窗口法`、`令牌桶法`、`漏桶法` |
| 57 | +- [负载均衡](https://dunwu.github.io/blog/pages/98a1c1/) - 关键词:`轮询`、`随机`、`最少连接`、`源地址哈希`、`一致性哈希`、`虚拟 hash 槽` |
| 58 | +- [服务路由](https://dunwu.github.io/blog/pages/3915e8/) - 关键词:`路由`、`条件路由`、`脚本路由`、`标签路由` |
59 | 59 | - 服务网关 |
60 | | -- [分布式会话](https://dunwu.github.io/waterdrop/pages/95e45f/) - 关键词:`粘性 Session`、`Session 复制共享`、`基于缓存的 session 共享` |
| 60 | +- [分布式会话](https://dunwu.github.io/blog/pages/95e45f/) - 关键词:`粘性 Session`、`Session 复制共享`、`基于缓存的 session 共享` |
61 | 61 |
|
62 | 62 | #### 数据调度 |
63 | 63 |
|
64 | | -- [数据缓存](https://dunwu.github.io/waterdrop/pages/fd0aaa/) - 关键词:`进程内缓存`、`分布式缓存`、`缓存雪崩`、`缓存穿透`、`缓存击穿`、`缓存更新`、`缓存预热`、`缓存降级` |
65 | | -- [读写分离](https://dunwu.github.io/waterdrop/pages/3faf18/) |
66 | | -- [分库分表](https://dunwu.github.io/waterdrop/pages/e1046e/) - 关键词:`分片`、`路由`、`迁移`、`扩容`、`双写`、`聚合` |
67 | | -- [分布式 ID](https://dunwu.github.io/waterdrop/pages/3ae455/) - 关键词:`UUID`、`自增序列`、`雪花算法`、`Leaf` |
68 | | -- [分布式事务](https://dunwu.github.io/waterdrop/pages/e1881c/) - 关键词:`2PC`、`3PC`、`TCC`、`本地消息表`、`MQ 消息`、`SAGA` |
69 | | -- [分布式锁](https://dunwu.github.io/waterdrop/pages/40ac64/) - 关键词:`数据库`、`Redis`、`ZooKeeper`、`互斥`、`可重入`、`死锁`、`容错`、`自旋尝试` |
| 64 | +- [数据缓存](https://dunwu.github.io/blog/pages/fd0aaa/) - 关键词:`进程内缓存`、`分布式缓存`、`缓存雪崩`、`缓存穿透`、`缓存击穿`、`缓存更新`、`缓存预热`、`缓存降级` |
| 65 | +- [读写分离](https://dunwu.github.io/blog/pages/3faf18/) |
| 66 | +- [分库分表](https://dunwu.github.io/blog/pages/e1046e/) - 关键词:`分片`、`路由`、`迁移`、`扩容`、`双写`、`聚合` |
| 67 | +- [分布式 ID](https://dunwu.github.io/blog/pages/3ae455/) - 关键词:`UUID`、`自增序列`、`雪花算法`、`Leaf` |
| 68 | +- [分布式事务](https://dunwu.github.io/blog/pages/e1881c/) - 关键词:`2PC`、`3PC`、`TCC`、`本地消息表`、`MQ 消息`、`SAGA` |
| 69 | +- [分布式锁](https://dunwu.github.io/blog/pages/40ac64/) - 关键词:`数据库`、`Redis`、`ZooKeeper`、`互斥`、`可重入`、`死锁`、`容错`、`自旋尝试` |
70 | 70 |
|
71 | 71 | #### 资源调度 |
72 | 72 |
|
73 | 73 | - 弹性伸缩 |
74 | 74 |
|
75 | 75 | #### 服务治理 |
76 | 76 |
|
77 | | -- [服务注册和发现](https://dunwu.github.io/waterdrop/pages/1a90aa/) |
78 | | -- [服务容错](https://dunwu.github.io/waterdrop/pages/e32c7e/) |
| 77 | +- [服务注册和发现](https://dunwu.github.io/blog/pages/1a90aa/) |
| 78 | +- [服务容错](https://dunwu.github.io/blog/pages/e32c7e/) |
79 | 79 | - 服务编排 |
80 | 80 | - 服务版本管理 |
81 | 81 |
|
|
0 commit comments