Skip to content

featurebyte.Deployment.compute_batch_feature_table

compute_batch_feature_table(
batch_request_table: BatchRequestTable,
batch_feature_table_name: str
) -> BatchFeatureTable

Description

Get batch features asynchronously using a batch request table. The batch request features will be materialized into a batch feature table.

Parameters

  • batch_request_table: BatchRequestTable
    Batch request table contains required serving names columns

  • batch_feature_table_name: str
    Name of the batch feature table to be created

Returns

  • BatchFeatureTable

Examples

. deployment = catalog.get_deployment() # doctest: +SKIP

>>> batch_features = deployment.compute_batch_feature_table(
...   batch_request_table=batch_request_table,
...   batch_feature_table_name = <batch_feature_table_name>
... )