Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Warning: This is an experimental feature. It's intended for early testing and feedback, and could change without warnings in future releases.
Push sources allow feature values to be pushed to the online store in real time. This allows fresh feature values to be made available to applications. Push sources supercede the FeatureStore.write_to_online_store.
Push sources can be used by multiple feature views. When data is pushed to a push source, Feast propagates the feature values to all the consuming feature views.
Push sources must have a batch source specified, since that's the source used when retrieving historical features. When using a PushSource as a stream source in the definition of a feature view, a batch source doesn't need to be specified in the definition explicitly.
Streaming data sources are important sources of feature values. A typical setup with streaming data looks like:
Raw events come in (stream 1)
Streaming transformations applied (e.g. generating features like last_N_purchased_categories
) (stream 2)
Write stream 2 values to an offline store as a historical log for training
Write stream 2 values to an online store for low latency feature serving
Periodically materialize feature values from the offline store into the online store for improved correctness
Feast now allows users to push features previously registered in a feature view to the online store for fresher features.
Note that the push schema needs to also include the entity
See also Python feature server for instructions on how to push data to a deployed feature server.
Snowflake data sources allow for the retrieval of historical feature values from Snowflake for building training datasets as well as materializing features into an online store.
Either a table reference or a SQL query can be provided.
Using a table reference
Using a query
One thing to remember is how Snowflake handles table and column name conventions. You can read more about quote identifiers here
Configuration options are available here.
Redshift data sources allow for the retrieval of historical feature values from Redshift for building training datasets as well as materializing features into an online store.
Either a table name or a SQL query can be provided.
No performance guarantees can be provided over SQL query-based sources. Please use table references where possible.
Using a table name
Using a query
Configuration options are available here.
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.
FileSource is meant for development purposes only and is not optimized for production use.
Configuration options are available here.
BigQuery data sources allow for the retrieval of historical feature values from BigQuery for building training datasets as well as materializing features into an online store.
Either a table reference or a SQL query can be provided.
No performance guarantees can be provided over SQL query-based sources. Please use table references where possible.
Using a table reference
Using a query
Configuration options are available here.
NOTE: The Postgres plugin is a contrib plugin. This means it may not be fully stable.
The PostgreSQL data source allows for the retrieval of historical feature values from a PostgreSQL database for building training datasets as well as materializing features into an online store.
Defining a Postgres source
NOTE: Spark data source api is currently in alpha development and the API is not completely stable. The API may change or update in the future.
The spark data source API allows for the retrieval of historical feature values from file/database sources for building training datasets as well as materializing features into an online store.
Either a table name, a SQL query, or a file path can be provided.
Using a table reference from SparkSession(for example, either in memory or a Hive Metastore)
Using a query
Using a file reference
Please see Data Source for an explanation of data sources.