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
Please describe the feature you'd like to see
I would really like to be able to configure the output_table for the TransformOperator when using the @transform decorator.
Describe the solution you'd like
PRODUCTION_DATABASE=Table(
name="IMAGE",
conn_id=SNOWFLAKE_CONN_ID,
)
@dag(schedule="@daily",start_date=datetime(2023, 12, 12),)deffetch_missing_files():
@aql.transform(output_table=Table(conn_id="some_other_db"))deffetch_image(prod_database):
return""" SELECT image FROM {{prod_database}} WHERE <condition> """fetch_image(PRODUCTION_DATABASE)
Are there any alternatives to this feature?
🤔 I'm not sure. I mean, I could just not use the decorator and initialize the Operator myself, but that's not as fun.
Additional context
Nope. I love the product though. I'm really excited to start using more Airflow =)
Please describe the feature you'd like to see
I would really like to be able to configure the
output_table
for the TransformOperator when using the@transform
decorator.Describe the solution you'd like
Are there any alternatives to this feature?
🤔 I'm not sure. I mean, I could just not use the decorator and initialize the Operator myself, but that's not as fun.
Additional context
Nope. I love the product though. I'm really excited to start using more Airflow =)
Acceptance Criteria
The text was updated successfully, but these errors were encountered: