Skip to contents

Mirrors batch.list_jobs.

Usage

db_batch_list_jobs(
  states = c("queued", "processing", "done"),
  since = NULL,
  short = NULL
)

Arguments

states

Job states to include, as a character vector or a single comma-separated string: "queued", "processing", "done", "expired".

since

Optional lower bound on the job's received timestamp.

short

Ask the server for only id, state and ts_received, which is the cheap way to poll.

Value

A tibble with one row per job.

Examples

if (FALSE) { # \dontrun{
db_batch_list_jobs(states = "done")
} # }