DataBricks (10.2) - 特征存储中缺少数据源名称 Table 创建后的描述
DataBricks (10.2) - Data Source Name Missing from Feature Store Table Description After Create
在我使用描述的语法创建特征存储后 table:
fs.create_table(
name="FeatureStore.TableName",
primary_keys=["feaKey1", "feaKey2"],
schema=sttSchemaName
df=DataFrameName_df,
description="Table Description."
)
table 出现在 Feature Store GUI 中,但原始数据源名称为空。我在 DataBricks FAQs/help 或此处的 SO 上没有提到这一点。我错过了什么?
截至撰写本文时,这是 DataBricks Feature Store 中的一个 un-addressed 问题 - 该问题与将模式和数据帧都传递给调用有关。尽管此语法应该有效,但它无法将输入数据源名称注册到特征存储。解决方案是在没有架构的情况下调用创建(如有必要,可能会在事后更改架构)。
在我使用描述的语法创建特征存储后 table:
fs.create_table(
name="FeatureStore.TableName",
primary_keys=["feaKey1", "feaKey2"],
schema=sttSchemaName
df=DataFrameName_df,
description="Table Description."
)
table 出现在 Feature Store GUI 中,但原始数据源名称为空。我在 DataBricks FAQs/help 或此处的 SO 上没有提到这一点。我错过了什么?
截至撰写本文时,这是 DataBricks Feature Store 中的一个 un-addressed 问题 - 该问题与将模式和数据帧都传递给调用有关。尽管此语法应该有效,但它无法将输入数据源名称注册到特征存储。解决方案是在没有架构的情况下调用创建(如有必要,可能会在事后更改架构)。