Skip to main content

task_runs

Operations on a task_runs resource.

Overview

Nametask_runs
TypeResource
Iddatabricks_workspace.cleanrooms.task_runs

Fields

NameDatatype
collaborator_job_run_infoobject
notebook_job_run_stateobject
notebook_namestring
output_schema_expiration_timeinteger
output_schema_namestring
run_durationinteger
start_timeinteger

Methods

NameAccessible byRequired ParamsDescription
listSELECTclean_room_name, deployment_nameList all the historical notebook task runs in a clean room.

SELECT examples

SELECT
collaborator_job_run_info,
notebook_job_run_state,
notebook_name,
output_schema_expiration_time,
output_schema_name,
run_duration,
start_time
FROM databricks_workspace.cleanrooms.task_runs
WHERE clean_room_name = '{{ clean_room_name }}' AND
deployment_name = '{{ deployment_name }}';