Replies: 1 comment
-
Workaround possible: set $PARAM_FROM_AIRFLOW as an environment variable - it will work, too |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need to run a checkpoint based on SQL query with parameters modifying that query from Airflow
Part of checkpoint.yml looks like:
validations:
datasource_name: snowflake
data_connector_name: default_runtime_data_connector_name
data_asset_name: db1.table1
runtime_parameters:
query: "SELECT *
from db1.table1
WHERE fld1 > $PARAM_FROM_AIRFLOW"
How to do it properly with GreatExpectationsOperator?
Is passing query_to_validate the only/recommended option for the GreatExpectationsOperator?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions