Skip to content

Commit 058bd67

Browse files
committed
[core-api][experimental] Table metadata
1 parent 2945f86 commit 058bd67

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

python_modules/dagster/dagster/_core/definitions/metadata/metadata_value.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import dagster._check as check
99
import dagster._seven as seven
10-
from dagster._annotations import PublicAttr, experimental, public
10+
from dagster._annotations import PublicAttr, beta, public
1111
from dagster._core.definitions.asset_key import AssetKey
1212
from dagster._core.definitions.metadata.table import (
1313
TableColumn as TableColumn,
@@ -401,7 +401,7 @@ def emit_metadata(context, df):
401401

402402
@public
403403
@staticmethod
404-
@experimental
404+
@beta
405405
def table(
406406
records: Sequence[TableRecord], schema: Optional[TableSchema] = None
407407
) -> "TableMetadataValue":
@@ -894,7 +894,7 @@ def value(self) -> AssetKey:
894894

895895

896896
# This should be deprecated or fixed so that `value` does not return itself.
897-
@experimental
897+
@beta
898898
@whitelist_for_serdes(storage_name="TableMetadataEntryData")
899899
class TableMetadataValue(
900900
NamedTuple(

python_modules/dagster/dagster/_core/definitions/metadata/table.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Mapping, NamedTuple, Optional, Sequence, Union
22

33
import dagster._check as check
4-
from dagster._annotations import PublicAttr, experimental, public
4+
from dagster._annotations import PublicAttr, beta, public
55
from dagster._core.definitions.asset_key import AssetKey
66
from dagster._serdes.serdes import whitelist_for_serdes
77

@@ -10,7 +10,7 @@
1010
# ########################
1111

1212

13-
@experimental
13+
@beta
1414
@whitelist_for_serdes
1515
class TableRecord(
1616
NamedTuple(
@@ -267,7 +267,7 @@ def from_name_type_dict(name_type_dict: Mapping[str, str]):
267267
# ###########################
268268

269269

270-
@experimental(emit_runtime_warning=False)
270+
@beta(emit_runtime_warning=False)
271271
@whitelist_for_serdes
272272
class TableColumnDep(
273273
NamedTuple(
@@ -292,7 +292,7 @@ def __new__(
292292
)
293293

294294

295-
@experimental
295+
@beta
296296
@whitelist_for_serdes
297297
class TableColumnLineage(
298298
NamedTuple(

0 commit comments

Comments
 (0)