You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Today users are not able to schedule their feature transformations using simple configuration provided to feast objects.
Describe the solution you'd like
The orchestration of feature pipelines should be handled by tools such as Airflow. Schedules can be provided using the @Transform decorator.
@transform(
sources=[credit_data_batch],
entities=[user],
mode="python",
batch_schedule=timedelta(days=1), # Will automatically create a DAG and deploy assets during CICD
schema=[Field("user_id", String), Field("timestamp", Timestamp), Field("current_balance", Float64)],
)
def user_last_balance(transactions):
return transactions[["user_id", "timestamp", "current_balance"]]
Ideally the user can define their feature logic and schedule using the feature_view / transform decorator and provide their Airflow instance (local, astronomer, composer, etc.) configuration via the feature_store.yaml. Then the CICD (feast apply) should validate and deploy the correct assets to handle the orchestration of the transformations through airflow.
Describe alternatives you've considered
Alternatively we could provide examples of how to create an Airflow DAG using the feast SDK to run transformation jobs and not have to worry about the scheduling element in the transform decorator
Vishnu-Rangiah
changed the title
Add Airflow Orchestration support for Feature View transformations
Support Airflow Orchestration for Feature View transformations
Oct 25, 2024
Vishnu-Rangiah
changed the title
Support Airflow Orchestration for Feature View transformations
Add Airflow Orchestration for Feature View transformations
Oct 25, 2024
Vishnu-Rangiah
changed the title
Add Airflow Orchestration for Feature View transformations
Add Airflow Orchestration Integration for Feature View transformations
Oct 25, 2024
Vishnu-Rangiah
changed the title
Add Airflow Orchestration Integration for Feature View transformations
Add Airflow Orchestration Integration for Feature View Transformations
Oct 25, 2024
Is your feature request related to a problem? Please describe.
Today users are not able to schedule their feature transformations using simple configuration provided to feast objects.
Describe the solution you'd like
The orchestration of feature pipelines should be handled by tools such as Airflow. Schedules can be provided using the @Transform decorator.
Ideally the user can define their feature logic and schedule using the feature_view / transform decorator and provide their Airflow instance (local, astronomer, composer, etc.) configuration via the feature_store.yaml. Then the CICD (feast apply) should validate and deploy the correct assets to handle the orchestration of the transformations through airflow.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: