Skip to main content

Asset metadata

Assets feature prominently in the Dagster UI. Attaching information to assets allows you to understand where they're stored, what they contain, and how they should be organized.

Using metadata in Dagster, you can:

  • Attach ownership information
  • Organize assets with tags
  • Attach rich, complex information such as a Markdown description, a table schema, or a time series
  • Link assets with their source code

Adding owners to assets

In a large organization, it's important to know which individuals and teams are responsible for a given data asset.

import dagster as dg


# You can attach owners via the `owners` argument on the `@asset` decorator.
@dg.asset(owners=["richard.hendricks@hooli.com", "team:data-eng"])
def my_asset(): ...


# You can also use `owners` with `AssetSpec`
my_external_asset = dg.AssetSpec(
"my_external_asset", owners=["bighead@hooli.com", "team:roof", "team:corpdev"]
)
note

owners must either be an email address or a team name prefixed by team: (e.g. team:data-eng).

tip

With Dagster+ Pro, you can create asset-based alerts that automatically notify an asset's owners when triggered. Refer to the Dagster+ alert documentation for more information.

Organizing assets with tags

Tags are the primary way to organize assets in Dagster. You can attach several tags to an asset when it's defined, and they will appear in the UI. You can also use tags to search and filter for assets in the Asset catalog. They're structured as key-value pairs of strings.

Here's an example of some tags you might apply to an asset:

{"domain": "marketing", "pii": "true"}

As with owners, you can pass a dictionary of tags to the tags argument when defining an asset:

import dagster as dg


# You can attach tags via the `tags` argument on the `@asset` decorator.
@dg.asset(tags={"domain": "marketing", "pii": "true"})
def my_asset(): ...


# You can also use `tags` with `AssetSpec`
my_external_asset = dg.AssetSpec(
"my_external_asset", tags={"domain": "legal", "sensitive": ""}
)

Keep in mind that tags must contain only strings as keys and values. Additionally, the Dagster UI will render tags with the empty string as a "label" rather than a key-value pair.

Attaching metadata to assets

Metadata allows you to attach rich information to the asset, like a Markdown description, a table schema, or a time series. Metadata is more flexible than tags, as it can store more complex information.

Metadata can be attached to an asset at definition time, when the code is first imported, or at runtime when an asset is materialized.

At definition time

Using definition metadata to describe assets can make it easy to provide context for you and your team. This metadata could be descriptions of the assets, the types of assets, or links to relevant documentation.

import dagster as dg


# You can attach metadata via the `metadata` argument on the `@asset` decorator.
@dg.asset(
metadata={
"link_to_docs": dg.MetadataValue.url("https://..."),
"snippet": dg.MetadataValue.md("# Embedded markdown\n..."),
}
)
def my_asset(): ...


# You can also use `metadata` with `AssetSpec`
my_external_asset = dg.AssetSpec(
"my_external_asset",
metadata={
"link_to_docs": dg.MetadataValue.url("https://..."),
"snippet": dg.MetadataValue.md("# Embedded markdown\n..."),
},
)

To learn more about the different types of metadata you can attach, see the [MetadataValue](/api/python-api/metadata#class dagster.MetadataValue) API docs.

Some metadata keys will be given special treatment in the Dagster UI. See the Standard metadata types section for more information.

At runtime

With runtime metadata, you can surface information about an asset's materialization, such as how many records were processed or when the materialization occurred. This allows you to update an asset's information when it changes and track historical metadata as a time series.

To attach materialization metadata to an asset, returning a MaterializeResult object containing a metadata parameter. This parameter accepts a dictionary of key/value pairs, where keys must be a string.

When specifying values, use the MetadataValue utility class to wrap the data to ensure it displays correctly in the UI. Values can also be primitive Python types, which Dagster will convert to the appropriate MetadataValue.

import dagster as dg


@dg.asset
def my_asset():
# Asset logic goes here
return dg.MaterializeResult(
metadata={
# file_size_kb will be rendered as a time series
"file_size_kb": dg.MetadataValue.int(...)
}
)
note

Numerical metadata is treated as a time series in the Dagster UI.

Standard metadata types

The following metadata keys are given special treatment in the Dagster UI.

KeyDescription
dagster/uriType: str

The URI for the asset, for example: "s3://my_bucket/my_object"
dagster/column_schemaType: TableSchema

For an asset that's a table, the schema of the columns in the table. Refer to the Table and column metadata section for details.
dagster/column_lineageType: TableColumnLineage

For an asset that's a table, the lineage of column inputs to column outputs for the table. Refer to the Table and column metadata section for details.
dagster/row_countType: int

For an asset that's a table, the number of rows in the table. Refer to the Table metadata documentation for details.
dagster/partition_row_countType: int

For a partition of an asset that's a table, the number of rows in the partition.
dagster/table_nameType: str

A unique identifier for the table/view, typically fully qualified. For example, my_database.my_schema.my_table
dagster/code_referencesType: CodeReferencesMetadataValue

A list of code references for the asset, such as file locations or references to GitHub URLs. Should only be provided in definition-level metadata, not materialization metadata.

Table and column metadata

Two of the most powerful metadata types are TableSchema and TableColumnLineage. These metadata types allow stakeholders to view the schema of a table right within Dagster, and, in Dagster+, navigate to the Asset catalog with the column lineage.

Table schema metadata

The following example attaches table and column schema metadata at both definition time and runtime:

import dagster as dg


# Definition-time metadata
# Here, we know the schema of the asset, so we can attach it to the asset decorator
@dg.asset(
deps=["source_bar", "source_baz"],
metadata={
"dagster/column_schema": dg.TableSchema(
columns=[
dg.TableColumn(
"name",
"string",
description="The name of the person",
),
dg.TableColumn(
"age",
"int",
description="The age of the person",
),
]
)
},
)
def my_asset(): ...


# Runtime metadata
# Here, the schema isn't known until the asset is materialized
@dg.asset(deps=["source_bar", "source_baz"])
def my_other_asset():
column_names = ...
column_types = ...

columns = [
dg.TableColumn(name, column_type)
for name, column_type in zip(column_names, column_types)
]

return dg.MaterializeResult(
metadata={"dagster/column_schema": dg.TableSchema(columns=columns)}
)

There are several data types and constraints available on TableColumn objects. For more information, see the API documentation.

Column lineage metadata

tip

Many integrations such as dbt automatically attach column lineage metadata out-of-the-box.

Column lineage metadata is a powerful way to track how columns in a table are derived from other columns:

Table column lineage metadata
import dagster as dg


@dg.asset(deps=["source_bar", "source_baz"])
def my_asset():
# The following TableColumnLineage models 3 tables:
# source_bar, source_baz, and my_asset
# With the following column dependencies:
# - my_asset.new_column_foo depends on:
# - source_bar.column_bar
# - source_baz.column_baz
# - my_asset.new_column_qux depends on:
# - source_bar.column_quuz
return dg.MaterializeResult(
metadata={
"dagster/column_lineage": dg.TableColumnLineage(
deps_by_column={
"new_column_foo": [
dg.TableColumnDep(
asset_key=dg.AssetKey("source_bar"),
column_name="column_bar",
),
dg.TableColumnDep(
asset_key=dg.AssetKey("source_baz"),
column_name="column_baz",
),
],
"new_column_qux": [
dg.TableColumnDep(
asset_key=dg.AssetKey("source_bar"),
column_name="column_quuz",
),
],
}
)
}
)
tip

Dagster+ provides rich visualization and navigation of column lineage in the Asset catalog. Refer to the Dagster+ documentation for more information.

Linking assets with source code

warning

This feature is considered experimental and is under active development.

To link assets with their source code, you can attach a code reference. Code references are a type of metadata that allow you to easily view those assets' source code from the Dagster UI, both in local development and in production.

tip

Many integrations, such as dbt, support this capability.

Attaching Python code references for local development

Dagster can automatically attach code references to assets during local development:

import dagster as dg


@dg.asset
def my_asset(): ...


@dg.asset
def another_asset(): ...


defs = dg.Definitions(
# with_source_code_references() automatically attaches the proper metadata
assets=dg.with_source_code_references([my_asset, another_asset])
)

Customizing code references

If you want to customize how code references are attached - such as when you are building domain-specific languages with asset factories - you can manually add the dagster/code_references metadata to asset definitions:

import dagster as dg


@dg.asset(
metadata={
"dagster/code_references": dg.CodeReferencesMetadataValue(
code_references=[
dg.LocalFileCodeReference(
file_path="/path/to/source.yaml",
# Label and line number are optional
line_number=1,
label="Model YAML",
)
]
)
}
)
def my_asset_modeled_in_yaml(): ...


defs = dg.Definitions(assets=dg.with_source_code_references([my_asset_modeled_in_yaml]))

Attaching code references in production

Dagster+ can automatically annotate assets with code references to source control, such as GitHub or GitLab.

from dagster_cloud.metadata.source_code import link_code_references_to_git_if_cloud

import dagster as dg


@dg.asset
def my_asset(): ...


@dg.asset
def another_asset(): ...


defs = dg.Definitions(
assets=link_code_references_to_git_if_cloud(
assets_defs=dg.with_source_code_references([my_asset, another_asset]),
# This function also supports customizable path mapping, but usually
# the defaults are fine.
)
)