class ContractStore: (source)
Constructors: ContractStore.empty()
, ContractStore.experimental()
, ContractStore.from_contracts(contracts)
, ContractStore.from_definition(repo)
, ContractStore.from_dir(path)
, ContractStore.from_glob(glob)
, ContractStore.from_reference_at_path(path, reference_file)
, ContractStore(feature_views, models, vector_indexes, sources)
Undocumented
Static Method | empty |
Creates a feature store with no features or models. |
Static Method | experimental |
Undocumented |
Static Method | from |
Undocumented |
Static Method | from |
Creates a feature store based on a repo definition A feature source can also be defined if wanted, otherwise will the batch source be used for reads |
Async Static Method | from |
Reads and generates a feature store based on the given directory's content. |
Async Static Method | from |
Reads and generates a feature store based on the given glob path. |
Async Static Method | from |
Looks for a file reference struct, and loads the associated repo. |
Method | __init__ |
Undocumented |
Method | add |
Adds a feature view or a model contract |
Method | add |
Undocumented |
Method | add |
Compiles and adds the feature view to the store |
Method | add |
Undocumented |
Method | add |
Compiles and adds the model to the store |
Method | add |
Compiles and adds the feature view to the store |
Method | combined |
Combines two different feature stores together. |
Method | dummy |
Creates a new contract store that only generates dummy data |
Method | event |
Undocumented |
Method | execute |
Undocumented |
Method | feature |
Selects a feature view based on a name. |
Method | features |
Returns a set of features given a set of entities. |
Method | features |
Undocumented |
Async Method | freshness |
Undocumented |
Async Method | insert |
Undocumented |
Method | model |
Selects a model for easy of use. |
Method | model |
Undocumented |
Method | needed |
Undocumented |
Method | needed |
Undocumented |
Async Method | overwrite |
Undocumented |
Method | predict |
Undocumented |
Method | raise |
Undocumented |
Method | remove |
Removing a feature view or a model contract from the store. |
Method | repo |
Undocumented |
Method | requests |
Undocumented |
Method | requests |
Undocumented |
Method | source |
Undocumented |
Method | sources |
Process all sources of a specific type |
Method | update |
Undocumented |
Async Method | upsert |
Undocumented |
Method | vector |
Undocumented |
Method | without |
Undocumented |
Method | write |
Undocumented |
Async Method | write |
Undocumented |
Instance Variable | feature |
Undocumented |
Instance Variable | models |
Undocumented |
Instance Variable | sources |
Undocumented |
Instance Variable | vector |
Undocumented |
Property | all |
Undocumented |
Property | source |
Undocumented |
Static Method | _requests |
Undocumented |
Creates a feature store with no features or models.
- Examples:
```python store = ContractStore.empty()
store.add(MyFeatureView) store.add(MyModel)
df = await store.execute_sql("SELECT * FROM my_view LIMIT 10").to_polars() ```
- Returns:
- ContractStore: An empty store with new views or models
def from_contracts(contracts:
list[ FeatureViewWrapper | ModelContractWrapper]
) -> ContractStore
:
(source)
¶
Undocumented
Creates a feature store based on a repo definition A feature source can also be defined if wanted, otherwise will the batch source be used for reads
` repo_file: bytes = ... repo_def = RepoDefinition.from_json(repo_file) feature_store = FeatureStore.from_definition(repo_def) `
- Args:
- repo (RepoDefinition): The definition to setup
- Returns:
- FeatureStore: A ready to use feature store
Reads and generates a feature store based on the given directory's content.
This will read the feature views, services etc in a given repo and generate a feature store. This can be used for fast development purposes.
If you rather want a more flexible deployable solution.
Consider using FeatureStore.from_reference_at_path(...)
which will can read an existing
generated file from different storages, based on an environment variable.
- Args:
- path (str, optional): the directory to read from. Defaults to ".".
- Returns:
- FeatureStore: The generated feature store
Reads and generates a feature store based on the given glob path.
This will read the feature views, services etc in a given repo and generate a feature store. This can be used for fast development purposes.
- Args:
- glob (str): the files to read. E.g.
src/**/*.py
- Returns:
- ContractStore: The generated contract store
async def from_reference_at_path(path:
str
= '.', reference_file: str
= 'feature_store_location.py') -> ContractStore
:
(source)
¶
Looks for a file reference struct, and loads the associated repo.
This can be used for changing which feature store definitions to read based on defined environment variables.
If you rather want to generate a feature store based on a dir,
then consider using FeatureStore.from_dir(...)
instead.
- Args:
- path (str, optional): The path of the dir to search. Defaults to ".".
- Returns:
- FeatureStore: A feature store based on the feature references
dict[ str, CompiledFeatureView]
, models: dict[ str, ModelSchema]
, vector_indexes: dict[ str, ModelSchema] | None
= None, sources: dict[ FeatureLocation, BatchDataSource] | None
= None):
(source)
¶
Undocumented
Adds a feature view or a model contract
- Args:
- contract (FeatureViewWrapper | ModelContractWrappe): The contract to add
- Examples:
```python @feature_view(...) class MyFeatures:
feature_id = String().as_entity() feature = Int32()
store.add(MyFeatures) ```
Compiles and adds the feature view to the store
- Examples:
```python @feature_view(...) class MyFeatureView:
id = Int32().as_entity()
my_feature = String()
store.add_compiled_view(MyFeatureView.compile()) ```
- Args:
- view (CompiledFeatureView): The feature view to add
FeatureView | FeatureViewWrapper | CompiledFeatureView
):
(source)
¶
Undocumented
Compiles and adds the feature view to the store
- Examples:
```python @feature_view(...) class MyFeatureView:
id = Int32().as_entity()
my_feature = String()
store.add_compiled_view(MyFeatureView.compile()) ```
- Args:
- view (CompiledFeatureView): The feature view to add
Selects a feature view based on a name.
From here can you query the feature view for features.
`python data = await store.feature_view('my_view').all(limit=10).to_pandas() `
- Args:
- view (str): The name of the feature view
- Returns:
- FeatureViewStore: The selected feature view ready for querying
ConvertableToRetrievalJob | RetrievalJob
, features: list[ str] | list[ FeatureReference] | list[ FeatureReferencable]
, event_timestamp_column: str | None
= None, model_version_as_entity: bool | None
= None) -> RetrievalJob
:
(source)
¶
Returns a set of features given a set of entities.
`python entities = { "user_id": [1, 2, 3, ...] } job = store.features_for(entities, features=["user:time_since_last_login", ...]) data = await job.to_pandas() `
- Args:
- entities (dict[str, list] | RetrievalJob): The entities to load data for features (list[str]): A list of features to load. Use the format (<feature_view>:<feature>)
- Returns:
- RetrievalJob: A job that knows how to fetch the features
FeatureRequest
, entities: ConvertableToRetrievalJob | RetrievalJob
, feature_names: set[ str]
) -> RetrievalJob
:
(source)
¶
Undocumented
ConvertableToLocation
, values: ConvertableToRetrievalJob | RetrievalJob
):
(source)
¶
Undocumented
Selects a model for easy of use.
`python entities = {"trip_id": [1, 2, 3, ...]} preds = await store.model("my_model").predict_over(entities).to_polars() `
- Returns:
- ModelFeatureStore: A new store that contains the selected model
ConvertableToLocation
, values: ConvertableToRetrievalJob | RetrievalJob
):
(source)
¶
Undocumented
Removing a feature view or a model contract from the store.
`python store.remove("feature_view:titanic") # or location = FeatureLocation.feature_view("titanic") store.remove(location) `
- Args:
- location (str | FeatureLocation): The contract to remove
RawStringFeatureRequest
, event_timestamp_column: str | None
= None, model_version_as_entity: bool | None
= None) -> FeatureRequest
:
(source)
¶
Undocumented
Iterable[ str] | list[ FeatureReference]
, event_timestamp_column: str | None
= None) -> FeatureRequest
:
(source)
¶
Undocumented
type[ T]
, function: Callable[ [ T, FeatureLocation], None]
):
(source)
¶
Process all sources of a specific type
```python store = await ContractStore.from_dir()
- def update_databricks_source(source: DatabricksSource, loc: FeatureLocation) -> None:
- source.config = DatabricksConfig.serverless()
- store.sources_of_type(
- DatabricksSource, update_databricks_source
)
- Args:
- source_type: The source type you want to process function (Callable[[T, FeatureLocation], None]): The function that process the source
ConvertableToLocation
, source: BatchDataSource
) -> ContractStore
:
(source)
¶
Undocumented
ConvertableToLocation
, values: ConvertableToRetrievalJob | RetrievalJob
):
(source)
¶
Undocumented