Documentation Index
Fetch the complete documentation index at: https://docs.featureform.com/llms.txt
Use this file to discover all available pages before exploring further.
Configuration
First we have to add a declarative Azure Blob configuration in Python.
import featureform as ff
azure_blob = ff.register_blob_store(
name="azure-quickstart",
description="An azure blob store provider to store offline and inference data" # Optional
container_name="my_company_container"
root_path="custom/path/in/container"
account_name="<azure_account_name>"
account_key="<azure_account_key>"
)
client.apply()
We can re-verify that the provider is created by checking the Providers tab of the Feature Registry or via the CLI.