负载均衡

负载均衡分类。

按照:用处

  1. http
  2. tcp
  3. rpc
  4. 传输层之下
    对于RPC级别的负载均衡来说,即service mesh,比如:lstio,linkerd中都有loadbalancing组件。

按照:算法

  1. RR
  2. WRR
  3. P2C (按照负载来judge)
  4. EWMA
  5. HASH
  6. Least Load Queue
  7. EDF

头疼,想找个能够WRR又能够按照load来计算的动态WRR算法,真难。。。

reference:

  1. https://linkerd.io/1/features/load-balancing/
  2. https://link.springer.com/chapter/10.1007/978-981-10-3229-5_7
  3. http://www.voidcn.com/article/p-rypdacxm-k.html

你可能感兴趣的:(分布式,负载均衡,设计模式)