溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Ribbon Loadbalance核心接口是什么

發(fā)布時(shí)間:2021-10-21 13:44:28 來(lái)源:億速云 閱讀:137 作者:柒染 欄目:大數(shù)據(jù)

Ribbon Loadbalance核心接口是什么,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

Ribbon Loadbalance核心接口

接口列表

  • IRule

  • ILoadBalancer

  • ServerList

  • ServerListFilter

  • IPing

功能介紹

配置入口:RibbonClientConfiguration

合適的方式選擇合適的節(jié)點(diǎn)

ILoadBalancer

接口定義:com.netflix.loadbalancer.ILoadBalancer

核心方法:

	/**
	 * 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);
/**
 * @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();

核心作用:維護(hù)全量服務(wù)列表及可用列表,依賴IPing接口標(biāo)記失效節(jié)點(diǎn),標(biāo)識(shí)失效依賴IPing實(shí)現(xiàn)

默認(rèn)實(shí)現(xiàn):ZoneAwareLoadBalancer

IRule

接口定義:com.netflix.loadbalancer.IRule

核心方法:

/*
 * choose one alive server from lb.allServers or
 * lb.upServers according to key
 * 
 * @return choosen Server object. NULL is returned if none
 *  server is available 
 */

public Server choose(Object key);

核心作用:從loadbalance里面選取一個(gè)server;提供多種選擇策略

默認(rèn)實(shí)現(xiàn):ZoneAvoidanceRule

ServerList

接口定義:com.netflix.loadbalancer.ServerList

核心方法:

/**
 * Return updated list of servers. This is called say every 30 secs
 * (configurable) by the Loadbalancer's Ping cycle
 * 
 */
public List<T> getUpdatedListOfServers();

核心作用:獲取更新服務(wù)列表

默認(rèn)實(shí)現(xiàn):ConfigurationBasedServerList

ServerListFilter

接口定義:com.netflix.loadbalancer.ServerListFilter

核心方法:

public List<T> getFilteredListOfServers(List<T> servers);

核心作用:

默認(rèn)實(shí)現(xiàn):ZonePreferenceServerListFilter

IPing

接口定義:com.netflix.loadbalancer.IPing

核心方法:

/**
 * Checks whether the given <code>Server</code> is "alive" i.e. should be
 * considered a candidate while loadbalancing
 * 
 */
public boolean isAlive(Server server);

核心作用:檢測(cè)特定服務(wù)是否活著,在ILoadBalance中做失效服務(wù)檢測(cè)作用

默認(rèn)實(shí)現(xiàn):DummyPing

擴(kuò)展思考

Ribbon最大的有點(diǎn)就是允許用戶定制化各種規(guī)則,很好的管理了節(jié)點(diǎn)狀態(tài)及訪問(wèn)規(guī)則,基于規(guī)則擴(kuò)展做一些好用的產(chǎn)品,比如灰度管理、目標(biāo)節(jié)點(diǎn)能力不對(duì)等下的權(quán)重控制

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI