File data sources allow for the retrieval of historical feature values from files on disk for building training datasets, as well as for materializing features into an online store.
Example
from feast import FileSourcefrom feast.data_format import ParquetFormatparquet_file_source =FileSource( file_format=ParquetFormat(), file_url="file:///feast/customer.parquet",)