Skip to contents

List runs in descending order by start time.

Usage

list_job_runs(
  client,
  active_only = NULL,
  completed_only = NULL,
  expand_tasks = NULL,
  job_id = NULL,
  limit = NULL,
  offset = NULL,
  page_token = NULL,
  run_type = NULL,
  start_time_from = NULL,
  start_time_to = NULL
)

jobsListRuns(
  client,
  active_only = NULL,
  completed_only = NULL,
  expand_tasks = NULL,
  job_id = NULL,
  limit = NULL,
  offset = NULL,
  page_token = NULL,
  run_type = NULL,
  start_time_from = NULL,
  start_time_to = NULL
)

Arguments

client

Required. Instance of DatabricksClient()

active_only

If active_only is true, only active runs are included in the results; otherwise, lists both active and completed runs.

completed_only

If completed_only is true, only completed runs are included in the results; otherwise, lists both active and completed runs.

expand_tasks

Whether to include task and cluster details in the response.

job_id

The job for which to list runs.

limit

The number of runs to return.

offset

The offset of the first run to return, relative to the most recent run.

page_token

Use next_page_token or prev_page_token returned from the previous request to list the next or previous page of runs respectively.

run_type

The type of runs to return.

start_time_from

Show runs that started at or after this value.

start_time_to

Show runs that started at or before this value.

Value

data.frame with all of the response pages.