Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Skipping Based on Worker Availability


By default when a Task is processing through a Workflow, a Task will wait in a routing step until it is matched to a Worker or until a timeout moves it to the next routing step. If there are initially no matching Workers, it may be preferable to skip to the next routing step immediately. To do this, use the Skip Timeout expression:


_10
skip_if: workers.available == 0


Options

options page anchor

The following special variables can be used to evaluate against the Activity of Workers. These variables are scoped to the Workers in the TaskQueue associated with the currently processing routing step.

ValueMeaning
workers.availableThe number of workers in queue that are in an Available activity state
workers.unavailableThe number of workers in queue that are in an Unavailable activity state
workers.WAxxThe number of workers in queue that are in the activity state corresponding to WAxx, where WAxx is a valid ActivitySid

Skip Timeout will only be evaluated if a Task cannot be assigned to a Worker immediately. Also, Skip Timeout is only successful if the expression evaluates to true. Therefore, TaskRouter will only skip a routing step in a Workflow if:

  • No Reservations are immediately created when a Task enters the routing step
  • The Skip Timeout expression evaluates to true
(information)

Info

If a Task skips a filter, it will be evaluated as if the Task didn't match the filter expression. This is important when considering your default_filter behavior because, even though they match one of the filter expressions, Tasks that skip a named filter still qualify for the default_filter.

You can read more about the behavior of the default filter in the Workflow Overview.


Skipping Based on Capacity

skipping-based-on-capacity page anchor

The variables mentioned above only relate to the Activity of Workers. In a multitasking Workspace, Tasks are only assigned to Workers if they:

  • match the rules of the routing step (i.e., are part of the selected TaskQueue and match the Workers expression)
  • are in an Available Activity
  • have capacity on the Task's channel

The expression 1==1 is useful here. Because 1==1 will always evaluate to true, it can be used to skip the routing step if no Workers are available that match the above criteria.


Example Skip Timeout expressions:

  • 1==1
  • workers.available == 0
  • workers.WAxx < 2
  • workers.WAxx < 2 OR workers.WAyy < 2

Skip Timeout expressions must evaluate to true or false, support equality and comparison, and can be compounded with AND/OR logical operators.


_23
{
_23
"task_routing":{
_23
"filters":[
_23
{
_23
"filter_friendly_name":"Sales filter",
_23
"expression":"type == 'Sales'",
_23
"targets":[
_23
{
_23
"queue":"WQ3935a4f744a241c1356c09310c2398e6",
_23
"expression":"task.subSection == worker.specializedSubField",
_23
"order_by":"worker.english_level ASC",
_23
"priority":"1",
_23
"skip_if": "workers.available == 0"
_23
},
_23
{
_23
"priority":"1",
_23
"queue":"WQ787b271950e0f7687ec432221e672ffa"
_23
}
_23
]
_23
}
_23
]
_23
}
_23
}


Rate this page: