Hi Guilherme, I guess it depends what exactly you want to do as not everything works with jinja.
>From documentation: https://pythonhosted.org/airflow/concepts.html#jinja-templating You can use Jinja templating with every parameter that is marked as “templated” in the documentation. You can open source code for operators and see what parameters are actually templated. For example, if you open source code for BashOperator https://pythonhosted.org/airflow/_modules/bash_operator.html#BashOperator you will see this line of code: template_fields = ('bash_command', 'env') It means only bash_command and env will work with jinja templates. On Wed, Jan 18, 2017 at 12:45 PM, Guilherme Marthe < guilherme.mar...@enjoei.com.br> wrote: > Hey folks! > > I am trying to write a dag that works well with jinja templating, since > through my study of the documentation, is the best way to ensure > compatibility with the back-fill function. > > Are you guys aware of any examples online with this functionality working? > The, documentation is still a bit dry on insightful examples, and I am a > noobie developer, so I am trying to make the best use of the tool in the > "correct way". > > Thank you in advance for any resources you guys can share! > > Gui > > Ps: I ve been told I can email you guys with questions like these :) Hope > this is not a hassle ^_^ >