Skip to content

featurebyte.FeatureStore.info

info(
verbose: bool=False
) -> Dict[str, Any]

Description

Returns a dictionary that summarizes the essential information of the feature store represented by the FeatureStore object. The dictionary contains the following keys:

  • name: The name of the feature store.
  • created_at: The timestamp indicating when the feature store owas created.
  • updated_at: The timestamp indicating when the FeatureStore object was last updated.
  • source: The type of the feature store (Spark, Snowflake, DataBricks,...).
  • database_details: details of the database used by the feature store.

Parameters

  • verbose: bool
    default: False
    The parameter "verbose" in the current state of the code does not have any impact on the output.

Returns

  • Dict[str, Any]
    Key-value mapping of properties of the object.

Examples

>>> feature_store = fb.FeatureStore.get(<feature_store_name>)
>>> feature_store.info()