Skip to main content
Version: 1.1

OfflineStoreConfig

Summary​

Configuration options to specify how a Feature View should materialize to the Offline Store.

Attributes​

The attributes are the same as the __init__ method parameters. See below.

Methods​

__init__(...)​

Parameters

  • kind: Literal['OfflineStoreConfig'] = OfflineStoreConfig
  • staging_table_format: Union[DeltaConfig, ParquetConfig] = None The table format for the staging table. The staging table contains partially transformed feature values that have not been fully aggregated.
  • publish_full_features: bool = False If True, Tecton will publish a full feature values to a separate table after materialization jobs to the staging table have completed. Users can query these feature values directly without further transformations or aggregations.
  • publish_start_time: Optional[datetime.datetime] = None If set, Tecton will publish features starting from the feature time. If not set, Tecton will default to the Feature View's feature_start_time.

Was this page helpful?