Documentation ¶
Index ¶
- Constants
- func NewClient(timeout time.Duration, longPollTimeout time.Duration, ...) matchingservice.MatchingServiceClient
- func NewMetricClient(client matchingservice.MatchingServiceClient, metricsClient metrics.Client) matchingservice.MatchingServiceClient
- func NewRetryableClient(client matchingservice.MatchingServiceClient, policy backoff.RetryPolicy, ...) matchingservice.MatchingServiceClient
- type LoadBalancer
Constants ¶
View Source
const ( // DefaultTimeout is the default timeout used to make calls DefaultTimeout = time.Minute // DefaultLongPollTimeout is the long poll default timeout used to make calls DefaultLongPollTimeout = time.Minute * 2 )
Variables ¶
This section is empty.
Functions ¶
func NewClient ¶
func NewClient( timeout time.Duration, longPollTimeout time.Duration, clients common.ClientCache, lb LoadBalancer, ) matchingservice.MatchingServiceClient
NewClient creates a new history service TChannel client
func NewMetricClient ¶
func NewMetricClient(client matchingservice.MatchingServiceClient, metricsClient metrics.Client) matchingservice.MatchingServiceClient
NewMetricClient creates a new instance of matchingservice.MatchingServiceClient that emits metrics
func NewRetryableClient ¶ added in v0.3.14
func NewRetryableClient(client matchingservice.MatchingServiceClient, policy backoff.RetryPolicy, isRetryable backoff.IsRetryable) matchingservice.MatchingServiceClient
NewRetryableClient creates a new instance of matchingservice.MatchingServiceClient with retry policy
Types ¶
type LoadBalancer ¶ added in v0.7.0
type 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( namespaceID namespace.ID, taskQueue taskqueuepb.TaskQueue, taskQueueType enumspb.TaskQueueType, forwardedFrom string, ) string // 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( namespaceID namespace.ID, taskQueue taskqueuepb.TaskQueue, taskQueueType enumspb.TaskQueueType, forwardedFrom string, ) string }
LoadBalancer is the interface for implementers of component that distributes add/poll api calls across available task queue partitions when possible
func NewLoadBalancer ¶ added in v0.7.0
func NewLoadBalancer( namespaceIDToName func(id namespace.ID) (namespace.Name, error), dc *dynamicconfig.Collection, ) LoadBalancer
NewLoadBalancer returns an instance of matching load balancer that can help distribute api calls across task queue partitions
Click to show internal directories.
Click to hide internal directories.