I have sql file and I want to pass parameters to that sql file using PostGresOperator.
"""select * from table_{} where id > ID """.format(mytable,myID)
My postGresOperator
mport_redshift_table = PostgresOperator(
task_id='copy_data_from_redshift_{}'.format(country),
postgres_conn_id='postgres_default',
sql="""
select * from table_{} where id > {}
""".format(mytable,myID)
How can I do the same and pass my parameters in my .sql file and still use .format(mytable,myID) ?
so that I can pass them into my referenced .sql file.
As explained in the How-to Guide for
PostgresOperator
, you can place your SQL in a file within a subfolder in the dag directory:Use
params
to pass in the key/value pairs that would be rendered within the SQL in your file:Edit
If you want to do it inline, without using the file, just use any string interpolation mechanism:
or
or if you want to use jinja, taking advantage of any of the default vairables, such as a param provided when the DAG was triggered you could do it like this: