Balazs Konig
11/29/2022, 3:09 PMconf/dev/
)
2. by pipeline (conf/base/data_connectors/xyz/
)
Is there a simple way to achieve this double filter without much hacking?datajoely
11/29/2022, 3:09 PMBalazs Konig
11/29/2022, 3:12 PMconf/base/data_connectors/xyz
or
, not an and
datajoely
11/29/2022, 3:14 PM--env
is the same as kedro run --env base
kedro run --pipeline a & kedro run --env b
&
will do an or in parallel, &&
will do an or one after the other and fail if the first failsBalazs Konig
11/29/2022, 3:16 PMdatajoely
11/29/2022, 3:17 PMNok Lam Chan
11/29/2022, 4:00 PMBalazs Konig
11/29/2022, 5:15 PMbase/
), and
• params that are env dependent (which we for now put into dev/
and prod/
)
And if we are running pipeline A in environment X, we should process the catalog/param related to A, and the params related to X, but no B, C or Y.
Does that make sense?