Source code for dagster._core.definitions.asset_check_spec
from enum import Enum
from typing import TYPE_CHECKING, Any, Mapping, NamedTuple, Optional, Union
import dagster._check as check
from dagster._annotations import PublicAttr, experimental
from dagster._core.definitions.events import AssetKey, CoercibleToAssetKey
from dagster._serdes.serdes import whitelist_for_serdes
if TYPE_CHECKING:
from dagster._core.definitions.assets import AssetsDefinition
from dagster._core.definitions.source_asset import SourceAsset
[docs]@experimental
@whitelist_for_serdes
class AssetCheckSeverity(Enum):
"""Severity level for an asset check.
Severities:
- WARN: If the check fails, don't fail the step.
- ERROR: If the check fails, fail the step and, within the run, skip materialization of any
assets that are downstream of the asset being checked.
"""
WARN = "WARN"
ERROR = "ERROR"
[docs]@experimental
@whitelist_for_serdes(old_storage_names={"AssetCheckHandle"})
class AssetCheckKey(NamedTuple):
"""Check names are expected to be unique per-asset. Thus, this combination of asset key and
check name uniquely identifies an asset check within a deployment.
"""
asset_key: PublicAttr[AssetKey]
name: PublicAttr[str]
@staticmethod
def from_graphql_input(graphql_input: Mapping[str, Any]) -> "AssetCheckKey":
return AssetCheckKey(
asset_key=AssetKey.from_graphql_input(graphql_input["assetKey"]),
name=graphql_input["name"],
)
[docs]@experimental
class AssetCheckSpec(
NamedTuple(
"_AssetCheckSpec",
[
("name", PublicAttr[str]),
("asset_key", PublicAttr[AssetKey]),
("description", PublicAttr[Optional[str]]),
],
)
):
"""Defines information about an asset check, except how to execute it.
AssetCheckSpec is often used as an argument to decorators that decorator a function that can
execute multiple checks - e.g. `@asset`, and `@multi_asset`. It defines one of the checks that
will be executed inside that function.
Args:
name (str): Name of the check.
asset (Union[AssetKey, Sequence[str], str, AssetsDefinition, SourceAsset]): The asset that
the check applies to.
description (Optional[str]): Description for the check.
"""
def __new__(
cls,
name: str,
*,
asset: Union[CoercibleToAssetKey, "AssetsDefinition", "SourceAsset"],
description: Optional[str] = None,
):
return super().__new__(
cls,
name=check.str_param(name, "name"),
asset_key=AssetKey.from_coercible_or_definition(asset),
description=check.opt_str_param(description, "description"),
)
def get_python_identifier(self) -> str:
"""Returns a string uniquely identifying the asset check, that uses only the characters
allowed in a Python identifier.
"""
return f"{self.asset_key.to_python_identifier()}_{self.name}"
@property
def key(self) -> AssetCheckKey:
return AssetCheckKey(self.asset_key, self.name)