Does anyone have advice on how to best use paramet...
# questions
a
Does anyone have advice on how to best use parameters.yml in various DTAP environments where values may differ? Eg let's say I have a path parameter. In dev, test, acc, prod this value will be different. But other parameters will be the same across them. Do you have any advice on how to best do this so it works nicely in a Kedro pythonic manner?
šŸ‘€ 1
m
Common ones should go to
base/parameters.yml
and specific ones to
dev/parameters.yml
,
test/parameters.yml
etc. When you run Kedro in specific env, params are merged according to the strategy. Read more in: • https://docs.kedro.org/en/stable/configuration/configuration_basics.html#how-to-specify-additional-configuration-environments • https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-change-the-merge-strategy-used-by-omegaconfigloader
🄳 1
a
Thank you that's exactly what I'm looking for
šŸ‘ 1