ribbon其他负载均衡算法说明,和算法切换
1、ribbon负载均衡算法的种类
ribbon的负载均衡算法,主要是实现这个com.netflix.loadbalancer.IRule.class这个接口;具体算法如下:
- BestAvailableRule:表示请求数最少策略;
- PredicateBaseRule:表示过滤掉一些一直连接失败的服务,或者并发高的服务;先过滤再轮询的策略
- RandomRule:表示随机策略;
- RetryRule:当前请求超时,那么就再次轮询调用下一个请求,直到成功;
- RoundRobinRule:轮询策略;轮询策略下有个加权策略:WeightedResponseTimeRule;另外一个(ResponseTimeWeightedRule)不建议使用了,名字跟WeightedResponseTimeRule差不多,只是单次排列不一样;
2、ribbon切换默认的负载均衡算法
@Configuration
public class RestConfig {
//Spring Cloud Ribbon是基于Netflix Ribbon实现的一套客户端 负载均衡的工具
@Bean
@LoadBalanced
public RestTemplate getRestTemplate() {
return new RestTemplate();
@Bean
public IRule myRule() {
//达到的目的,用我们重新选择的随机算法替代默认的轮询
// return new RoundRobinRule();
return new RandomRule();
// return new RetryRule();
}
}
向spring容器中,注入一个IRule的实例就可以了。