Skip to main content

experiment_run_tags

Creates, updates, deletes, gets or lists an experiment_run_tags resource.

Overview

Nameexperiment_run_tags
TypeResource
Iddatabricks_workspace.machinelearning.experiment_run_tags

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
settagreplacedeployment_nameSets a tag on a run. Tags are run metadata that can be updated during a run and after a run completes.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)

REPLACE examples

Sets a tag on a run. Tags are run metadata that can be updated during a run and after a run completes.

REPLACE databricks_workspace.machinelearning.experiment_run_tags
SET
data__run_id = '{{ run_id }}',
data__run_uuid = '{{ run_uuid }}',
data__key = '{{ key }}',
data__value = '{{ value }}'
WHERE
deployment_name = '{{ deployment_name }}' --required;