91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ribbon之ILoadBalancer

發布時間:2020-07-29 14:49:12 來源:網絡 閱讀:682 作者:乾坤刀 欄目:軟件技術

Ribbon 負載均衡的連軸方法,它聚合來IPing,IRule, ServerList, ServerListUpdater, ServerListFilter。

  • 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<Server> 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<Server> getServerList(boolean availableOnly);

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

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

public abstract class AbstractLoadBalancer implements ILoadBalancer {
    
    public enum ServerGroup{
        ALL,
        STATUS_UP,
        STATUS_NOT_UP        
    }
        
    /**
     * delegate to {@link #chooseServer(Object)} with parameter null.
     */
    public Server chooseServer() {
       return chooseServer(null);
    }

    
    /**
     * List of servers that this Loadbalancer knows about
     * 
     * @param serverGroup Servers grouped by status, e.g., {@link ServerGroup#STATUS_UP}
     */
    public abstract List<Server> getServerList(ServerGroup serverGroup);
    
    /**
     * Obtain LoadBalancer related Statistics
     */
    public abstract LoadBalancerStats getLoadBalancerStats();    
}
  • BaseLoadBalancer

基本實現了ILoadBalancer所使用的接口。

  • DynamicServerListLoadBalancer

在BaseLoadBalancer上,增加額外特性。這里主要是實現動態的服務列表特性。

  • ZoneAwareLoadBalancer

DynamicServerListLoadBalancer之上,增加了額外的特性。分zone的形式來配置多個loadBalancer.



















向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禹州市| 登封市| 专栏| 绥江县| 达州市| 溆浦县| 孝昌县| 玉田县| 岗巴县| 溧水县| 拜城县| 福建省| 越西县| 砀山县| 新郑市| 松滋市| 刚察县| 新河县| 武宁县| 汤阴县| 龙门县| 静海县| 阿巴嘎旗| 南雄市| 诸城市| 和硕县| 东乌| 玉溪市| 长汀县| 阜宁县| 务川| 高州市| 达拉特旗| 石景山区| 奈曼旗| 洛川县| 射阳县| 永年县| 彭泽县| 渭南市| 灌南县|