springcloud源码 ribbon(三)

ribbon 服务列表动态处理

入口

在分析具体源码前,先思考一个问题;从上一编我们可知道,服务列表是从LoadBalancer是获取的,同时联想一下之前分析的eureka client是怎么获取服务列表的;有了上面的思路后那么就不难分析ribbon是如何动态处理服务列表的了;先看一下 ILoadBalancer 源码,非常简单一个接口类;

public interface ILoadBalancer {

	/**
	 * Initial list of servers.
	 * This API also serves to add additional ones at a later time
	 * The same logical server (host:port) could essentially be added multiple times
	 * (helpful in cases where you want to give more "weightage" perhaps ..)
	 * 
	 * @param newServers new servers to add
	 */
	public void addServers(List newServers);
	
	/**
	 * Choose a server from load balancer.
	 * 
	 * @param key An object that the load balancer may use to determine which server to return. null if 
	 *         the load balancer does not use this parameter.
	 * @return server chosen
	 */
	public Server chooseServer(Object key);
	
	/**
	 * To be called by the clients of the load balancer to notify that a Server is down
	 * else, the LB will think its still Alive until the next Ping cycle - potentially
	 * (assuming that the LB Impl does a ping)
	 * 
	 * @param server Server to mark as down
	 */
	public void markServerDown(Server server);
	
	/**
	 * @deprecated 2016-01-20 This method is deprecated in favor of the
	 * cleaner {@link #getReachableServers} (equivalent to availableOnly=true)
	 * and {@link #getAllServers} API (equivalent to availableOnly=false).
	 *
	 * Get the current list of servers.
	 *
	 * @param availableOnly if true, only live and available servers should be returned
	 */
	@Deprecated
	public List getServerList(boolean availableOnly);

	/**
	 * @return Only the servers that are up and reachable.
     */
    public List getReachableServers();

    /**
     * @return All known servers, both reachable and unreachable.
     */
	public List getAllServers();
}

ILoadBalancer 的所有实现
springcloud源码 ribbon(三)_第1张图片

从上面的截图实现名称,可以看同服务列表的动态处理就在DynamicServerListLoadBalancer 类上;粗略地看了一下其基类实现是比较简单的,只要是一些初始化实现;

你可能感兴趣的:(spring-cloud,源码分析)