https://kedro.org/ logo
#questions
Title
# questions
n

Nichita Morcotilo

10/26/2022, 10:02 AM
Hey! I have a question regarding kedro 0.17.7. I have three conf folders:
conf/base
,
conf/test
, and
conf/local
(empty directory). My
conf/test/pipelines.yml
is an empty file, and executing
kedro run --env=test
results in creating in
/data
directory folders for each of the nodes listed in
conf/base/pipelines.yml
It is expected behavior for kedro? I mean, if one of the environments has empty
pipelines.yml
to fallback for base env? Thank you!
🔥 1
e

em-pe

10/26/2022, 11:01 AM
yes, base is the default config that you can override with other envs - if there’s no specific configuration for given env if falls back to base
🌟 1
n

Nichita Morcotilo

10/26/2022, 11:05 AM
Thank you!
d

Deepyaman Datta

10/26/2022, 12:08 PM
each of the nodes listed in
conf/base/pipelines.yml
@em-pe’s answer is correct, but it also looks like you're using a separate plugin if you're defining nodes in
pipelines.yml
, so just be aware that some of the behaviors may be different based on that
1
2 Views