I'm getting this message with the following code:
from databricks import feature_store
fs = feature_store.FeatureStoreClient()
fs.create_table(
name='feature_store.user_login',
primary_keys=['user_id'],
df=df_x,
description='user login features'
)
and I couldn't figure out why from the warning message below:
INFO databricks.feature_store._compute_client._compute_client: Created feature table 'hive_metastore.feature_store.user_login'.
/databricks/.python_edge_libs/databricks/feature_store/entities/_feature_store_object.py:8: FutureWarning: ``databricks.feature_store.entities.feature_table.FeatureTable.keys`` is deprecated since v0.3.6. This method will be removed in a future release. Use ``FeatureTable.primary_keys`` instead.
yield prop, self.__getattribute__(prop)
Out[3]: <FeatureTable: keys=['user_id'], tags={}>
My runtime is 11.3 LTS ML (includes Apache Spark 3.3.0, Scala 2.12)