Sharan Foga
Sharan Foga

Reputation: 135

Is there a way to get the latency for how long it takes for a Cadence activity worker to pick up a new task?

Is there any way to get the latency for how long it takes for a worker to pick up a new task or how long it takes for an activity to be picked up by a worker?

Upvotes: 1

Views: 196

Answers (1)

Long Quanzheng
Long Quanzheng

Reputation: 2401

There are two metrics reported on client side for this:

The similar metrics on server is “sync match latency” and “async match latency “.

Sync match means when the task is scheduled, a worker is actively polling. So usually sync match latency can be used to measure how much load a task list is under

Upvotes: 1

Related Questions