tom kurian
04/10/2024, 2:02 PMkedro run --pipeline=data_sampling.connector --env=prod
This is the command i am usingAnkita Katiyar
04/10/2024, 2:04 PMcatalog_globals.yml
, the keys are resolved per environment and then the entries as a whole from the “run environment” will overwrite the entry from base.Ankita Katiyar
04/10/2024, 2:05 PMglobals:
resolver is the way to go - docsNok Lam Chan
04/10/2024, 2:16 PMcatalog_globals
is more like catalog_template
, in fact Kedro treat the catalog_globals
equally just like any other catalog_xxx
file. This is only a convention to encourage splitting out the templated value to a separate file.
To have anything interpolated across environment, you can only use globals
and this is by design to reduce confusion, everything else are self-contained within its env.tom kurian
04/10/2024, 3:27 PMkedro run --pipeline=data_sample.connector --env=sample_1 --params "initial=0.8"
Nok Lam Chan
04/10/2024, 3:29 PMNok Lam Chan
04/10/2024, 3:30 PM