go.temporal.io/server/client/matching/loadbalancer.go
230 LOC · 119 covered · 111 uncovered · 23 ranges · 72 concepts · 10 introducers · 17 tests
File neighbourhood
The centred file is linked to every concept that introduces one of its ranges, every test that runs code from the file, and the gray connector concepts standing between those tests and the file's own introducer concepts. Undirected links join concepts to every file where they introduce source and concepts to the tests they introduce; arrows show specialization between the displayed concepts and bridge only concepts omitted from this view. Concept colors match the source ranges below; connector concepts have no source color and are shown in gray.
Focused file, its introducer and connector concepts, their introduced files, and tests that run code from the file
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the related-file, concept, and source links on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the related-file, concept, and source links on this page while the interactive map is unavailable.
package matching
import (
"math/rand"
"sync"
"go.temporal.io/server/common/dynamicconfig"
"go.temporal.io/server/common/namespace"
"go.temporal.io/server/common/testing/testhooks"
"go.temporal.io/server/common/tqid"
)
type (
// LoadBalancer is the interface for implementers of
// component that distributes add/poll api calls across
// available task queue partitions when possible
LoadBalancer interface {
// PickWritePartition returns the task queue partition for adding
// an activity or workflow task. The input is the name of the
// original task queue (with no partition info). When forwardedFrom
// is non-empty, this call is forwardedFrom from a child partition
// to a parent partition in which case, no load balancing should be
// performed
PickWritePartition(
taskQueue *tqid.TaskQueue,
pc PartitionCounts,
) *tqid.NormalPartition
// PickReadPartition returns the task queue partition to send a poller to.
// Input is name of the original task queue as specified by caller. When
// forwardedFrom is non-empty, no load balancing should be done.
PickReadPartition(
taskQueue *tqid.TaskQueue,
pc PartitionCounts,
) *pollToken
}
defaultLoadBalancer struct {
namespaceIDToName func(id namespace.ID) (namespace.Name, error)
nReadPartitions dynamicconfig.IntPropertyFnWithTaskQueueFilter
nWritePartitions dynamicconfig.IntPropertyFnWithTaskQueueFilter
testHooks testhooks.TestHooks
lock sync.RWMutex
taskQueueLBs map[tqid.TaskQueue]*tqLoadBalancer
}
// Keeps track of polls per partition. Sends a poll to the partition with the fewest polls
tqLoadBalancer struct {
taskQueue *tqid.TaskQueue
pollerCounts []int // keep track of poller count of each partition
lock sync.Mutex
}
pollToken struct {
TQPartition *tqid.NormalPartition
balancer *tqLoadBalancer
}
)
// NewLoadBalancer returns an instance of matching load balancer that
// can help distribute api calls across task queue partitions
func NewLoadBalancer(
namespaceIDToName func(id namespace.ID) (namespace.Name, error),
dc *dynamicconfig.Collection,
testHooks testhooks.TestHooks,
lb := &defaultLoadBalancer{
namespaceIDToName: namespaceIDToName,
nReadPartitions: dynamicconfig.MatchingNumTaskqueueReadPartitions.Get(dc),
nWritePartitions: dynamicconfig.MatchingNumTaskqueueWritePartitions.Get(dc),
testHooks: testHooks,
taskQueueLBs: make(map[tqid.TaskQueue]*tqLoadBalancer),
}
return lb
}
func (lb *defaultLoadBalancer) PickWritePartition(
taskQueue *tqid.TaskQueue,
pc PartitionCounts,
if n, ok := testhooks.Get(lb.testHooks, testhooks.MatchingLBForceWritePartition, namespace.ID(taskQueue.NamespaceId())); ok {
return taskQueue.NormalPartition(n)
}
if err != nil {
return taskQueue.RootPartition()
}
if pc.Write > 0 {
partitionCount = int(pc.Write)
partitionCount = max(1, lb.nWritePartitions(nsName.String(), taskQueue.Name(), taskQueue.TaskType()))
}
}
// PickReadPartition picks a partition for poller to poll task from, and keeps load balanced between partitions.
// Caller is responsible to call pollToken.Release() after complete the poll.
func (lb *defaultLoadBalancer) PickReadPartition(
taskQueue *tqid.TaskQueue,
pc PartitionCounts,
tqlb := lb.getTaskQueueLoadBalancer(taskQueue)
// For read path it's safer to return global default partition count instead of root partition, when we fail to
// map namespace ID to name.
var partitionCount = dynamicconfig.GlobalDefaultNumTaskQueuePartitions
if pc.Read > 0 {
partitionCount = int(pc.Read)
namespaceName, err := lb.namespaceIDToName(namespace.ID(taskQueue.NamespaceId()))
if err == nil {
partitionCount = lb.nReadPartitions(string(namespaceName), taskQueue.Name(), taskQueue.TaskType())
}
}
if n, ok := testhooks.Get(lb.testHooks, testhooks.MatchingLBForceReadPartition, namespace.ID(taskQueue.NamespaceId())); ok {
service_grpc.pb.go ×20
return tqlb.forceReadPartition(partitionCount, n)
}
}
func (lb *defaultLoadBalancer) getTaskQueueLoadBalancer(tq *tqid.TaskQueue) *tqLoadBalancer {
loadbalancer.go ×2
lb.lock.RLock()
tqlb, ok := lb.taskQueueLBs[*tq]
lb.lock.RUnlock()
if ok {
return tqlb
}
tqlb, ok = lb.taskQueueLBs[*tq]
if !ok {
tqlb = newTaskQueueLoadBalancer(tq)
lb.taskQueueLBs[*tq] = tqlb
}
lb.lock.Unlock()
return tqlb
}
return &tqLoadBalancer{
taskQueue: tq,
}
}
func (b *tqLoadBalancer) pickReadPartition(partitionCount int) *pollToken {
loadbalancer.go ×5
b.lock.Lock()
defer b.lock.Unlock()
b.ensurePartitionCountLocked(partitionCount)
partitionID := b.pickReadPartitionWithFewestPolls(partitionCount)
b.pollerCounts[partitionID]++
return &pollToken{
TQPartition: b.taskQueue.NormalPartition(partitionID),
balancer: b,
}
}
func (b *tqLoadBalancer) forceReadPartition(partitionCount, partitionID int) *pollToken {
loadbalancer.go ×1
b.lock.Lock()
defer b.lock.Unlock()
b.ensurePartitionCountLocked(max(partitionCount, partitionID+1))
b.pollerCounts[partitionID]++
return &pollToken{
TQPartition: b.taskQueue.NormalPartition(partitionID),
balancer: b,
}
}
// caller to ensure that lock is obtained before call this function
func (b *tqLoadBalancer) pickReadPartitionWithFewestPolls(partitionCount int) int {
loadbalancer.go ×5
// pick a random partition to start with
startPartitionID := rand.Intn(partitionCount)
pickedPartitionID := startPartitionID
minPollerCount := b.pollerCounts[pickedPartitionID]
for i := 1; i < partitionCount && minPollerCount > 0; i++ {
if b.pollerCounts[currPartitionID] < minPollerCount {
pickedPartitionID = currPartitionID
minPollerCount = b.pollerCounts[currPartitionID]
}
}
}
// caller to ensure that lock is obtained before call this function
if len(b.pollerCounts) == partitionCount {
return
}
// add more partition entries
for i := len(b.pollerCounts); i < partitionCount; i++ {
b.pollerCounts = append(b.pollerCounts, 0)
}
// truncate existing partition entries
b.pollerCounts = b.pollerCounts[:partitionCount]
}
}
b.lock.Lock()
defer b.lock.Unlock()
// partitionID could be out of range if dynamic config reduce taskQueue partition count
if len(b.pollerCounts) > partitionID && b.pollerCounts[partitionID] > 0 {
b.pollerCounts[partitionID]--
}
}
if t.balancer != nil {
// t.balancer == nil is valid for example sticky task queue.
t.balancer.Release(t.TQPartition.PartitionId())
}
}