Configuration
First we have to add a declarative GCS configuration in Python.gcs_config.py
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Featureform supports Google Cloud Storage (GCS) as a File Store
import featureform as ff
gcs = ff.register_gcs(
name="gcs-quickstart",
credentials=ff.GCPCredentials(...),
bucket_name="bucket_name",
bucket_path="featureform/path/",
description="An gcs store provider to store offline"
)
client.apply()