Load balancer

https://blog.csdn.net/lihao21/article/details/54695471
关于load balancer, 上面这篇文章讲的非常好,建议阅读。
下面我一下我的一点总结
用来分配请求给不同的服务器
最简单的策略是round robin, 就是大家轮流来
高级一点的是weighted round robin, 根据服务器的性能加权平均
再高级一点的是least connection,最小连接数
还有随机
还有hashing, 简单的hashing的话增加机器减少机器不好改
可以用consistent hashing。不过我觉得consistent hashing用在这上面有点鸡用牛刀了。

Load balancer 可以加在很多地方。

你可能感兴趣的:(Load balancer)