Returns the task id that each worker is working on, if any.
Arguments
- worker_ids
Optional vector of worker ids. If
NULL
then all active workers are used.- controller
The controller to use. If not given (or
NULL
) we'll use the controller registered withrrq_default_controller_set()
.
Value
A character vector, NA
where nothing is being worked on,
otherwise corresponding to a task id.
Examples
obj <- rrq_controller("rrq:example")
rrq_worker_list(controller = obj)
#> [1] "exhaustible_umbrette" "unlegislative_borzoi_1"
# This example might be a bit racy: we need to run a task that
# sleeps, and then sleep a little bit for the task to be picked up
# by a worker. Typically this happens very quickly but there are
# no guarantees.
t <- rrq_task_create_expr(Sys.sleep(1), controller = obj)
Sys.sleep(.2)
rrq_worker_task_id(controller = obj)
#> exhaustible_umbrette
#> "f8e99a35afd020ac00d98dae13b10c75"
# You can always find out which worker did work on a task though:
rrq_task_info(t, controller = obj)$worker
#> [1] "exhaustible_umbrette"