亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

dubbo-go中roundRobinLoadBalance的作用是什么

發布時間:2021-06-22 15:38:02 來源:億速云 閱讀:203 作者:Leah 欄目:大數據

這篇文章將為大家詳細講解有關dubbo-go中roundRobinLoadBalance的作用是什么,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

roundRobinLoadBalance

dubbo-go-v1.4.2/cluster/loadbalance/round_robin.go

const (
	// RoundRobin ...
	RoundRobin = "roundrobin"

	// COMPLETE ...
	COMPLETE = 0
	// UPDATING ...
	UPDATING = 1
)

var (
	methodWeightMap sync.Map          // [string]invokers
	state           = int32(COMPLETE) // update lock acquired ?
	recyclePeriod   = 60 * time.Second.Nanoseconds()
)

func init() {
	extension.SetLoadbalance(RoundRobin, NewRoundRobinLoadBalance)
}

type roundRobinLoadBalance struct{}

// NewRoundRobinLoadBalance ...
func NewRoundRobinLoadBalance() cluster.LoadBalance {
	return &roundRobinLoadBalance{}
}
  • roundRobinLoadBalance的NewRoundRobinLoadBalance方法創建了roundRobinLoadBalance

Select

dubbo-go-v1.4.2/cluster/loadbalance/round_robin.go

func (lb *roundRobinLoadBalance) Select(invokers []protocol.Invoker, invocation protocol.Invocation) protocol.Invoker {
	count := len(invokers)
	if count == 0 {
		return nil
	}
	if count == 1 {
		return invokers[0]
	}

	key := invokers[0].GetUrl().Path + "." + invocation.MethodName()
	cache, _ := methodWeightMap.LoadOrStore(key, &cachedInvokers{})
	cachedInvokers := cache.(*cachedInvokers)

	var (
		clean               = false
		totalWeight         = int64(0)
		maxCurrentWeight    = int64(math.MinInt64)
		now                 = time.Now()
		selectedInvoker     protocol.Invoker
		selectedWeightRobin *weightedRoundRobin
	)

	for _, invoker := range invokers {
		var weight = GetWeight(invoker, invocation)
		if weight < 0 {
			weight = 0
		}

		identifier := invoker.GetUrl().Key()
		loaded, found := cachedInvokers.LoadOrStore(identifier, &weightedRoundRobin{weight: weight})
		weightRobin := loaded.(*weightedRoundRobin)
		if !found {
			clean = true
		}

		if weightRobin.Weight() != weight {
			weightRobin.setWeight(weight)
		}

		currentWeight := weightRobin.increaseCurrent()
		weightRobin.lastUpdate = &now

		if currentWeight > maxCurrentWeight {
			maxCurrentWeight = currentWeight
			selectedInvoker = invoker
			selectedWeightRobin = weightRobin
		}
		totalWeight += weight
	}

	cleanIfRequired(clean, cachedInvokers, &now)

	if selectedWeightRobin != nil {
		selectedWeightRobin.Current(totalWeight)
		return selectedInvoker
	}

	// should never happen
	return invokers[0]
}
  • Select方法遍歷invokers,通過weightRobin.increaseCurrent()作為currentWeight,若currentWeight大于maxCurrentWeight則更新maxCurrentWeight,設置selectedInvoker為當前invoker,設置selectedWeightRobin為當前weightRobin;之后對于selectedWeightRobin不為nil的執行selectedWeightRobin.Current(totalWeight),返回selectedInvoker

小結

roundRobinLoadBalance的NewRoundRobinLoadBalance方法創建了roundRobinLoadBalance;其Select方法遍歷invokers,通過weightRobin.increaseCurrent()作為currentWeight,若currentWeight大于maxCurrentWeight則更新maxCurrentWeight,設置selectedInvoker為當前invoker,設置selectedWeightRobin為當前weightRobin

關于dubbo-go中roundRobinLoadBalance的作用是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

彝良县| 黑河市| 岳阳市| 乌恰县| 炉霍县| 南木林县| 永州市| 固镇县| 山东| 民县| 宜川县| 新巴尔虎左旗| 林西县| 惠水县| 梨树县| 二连浩特市| 巴青县| 河北省| 天全县| 姚安县| 房山区| 三都| 乌拉特后旗| 罗江县| 库伦旗| 汉阴县| 延吉市| 湘阴县| 东乌珠穆沁旗| 堆龙德庆县| 桐柏县| 乡宁县| 衡山县| 南部县| 内丘县| 涞源县| 三门峡市| 新巴尔虎左旗| 盘山县| 大竹县| 黄骅市|