Skip to main content

pipeline_updates

Operations on a pipeline_updates resource.

Overview

Namepipeline_updates
TypeResource
Iddatabricks_workspace.deltalivetables.pipeline_updates

Fields

NameDatatype
causestring
cluster_idstring
configobject
creation_timeinteger
full_refreshboolean
full_refresh_selectionarray
pipeline_idstring
refresh_selectionarray
statestring
update_idstring
validate_onlyboolean

Methods

NameAccessible byRequired ParamsDescription
getupdateSELECTpipeline_id, update_id, deployment_nameGets an update from an active pipeline.
listupdatesSELECTpipeline_id, deployment_nameList updates for an active pipeline.
startupdateEXECpipeline_id, deployment_nameStarts a new update for the pipeline. If there is already an active update for the pipeline, the request will fail and the active update will remain running.

SELECT examples

SELECT
cause,
cluster_id,
config,
creation_time,
full_refresh,
full_refresh_selection,
pipeline_id,
refresh_selection,
state,
update_id,
validate_only
FROM databricks_workspace.deltalivetables.pipeline_updates
WHERE pipeline_id = '{{ pipeline_id }}' AND
deployment_name = '{{ deployment_name }}';