Configuration
First we have to add a declarative S3 configuration in Python.s3_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 AWS S3 as a File Store
import featureform as ff
s3 = ff.register_s3(
name="s3-quickstart",
credentials=ff.AWSStaticCredentials(...),
bucket_name="bucket_name",
bucket_region=<bucket_region>,
path="path/to/store/featureform_files/in/",
description="An s3 store provider to store offline"
)
client.apply()