MCPcopy
hub / github.com/feast-dev/feast / ingest_df

Method ingest_df

sdk/python/feast/infra/provider.py:175–189  ·  view source on GitHub ↗

Persists a dataframe to the online store. Args: feature_view: The feature view to which the dataframe corresponds. df: The dataframe to be persisted. field_mapping: A dictionary mapping dataframe column names to feature names.

(
        self,
        feature_view: Union[BaseFeatureView, FeatureView, OnDemandFeatureView],
        df: pd.DataFrame,
        field_mapping: Optional[Dict] = None,
    )

Source from the content-addressed store, hash-verified

173 pass
174
175 def ingest_df(
176 self,
177 feature_view: Union[BaseFeatureView, FeatureView, OnDemandFeatureView],
178 df: pd.DataFrame,
179 field_mapping: Optional[Dict] = None,
180 ):
181 """
182 Persists a dataframe to the online store.
183
184 Args:
185 feature_view: The feature view to which the dataframe corresponds.
186 df: The dataframe to be persisted.
187 field_mapping: A dictionary mapping dataframe column names to feature names.
188 """
189 pass
190
191 async def ingest_df_async(
192 self,

Callers 1

write_to_online_storeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected