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

Elielson Silva

04/17/2023, 12:28 PM
Hello folks! Should Kedro replace global parameters specifying parameters at runtime? Ex: kedro run --params=“base_path=./new_source/data”
d

datajoely

04/17/2023, 12:29 PM
you can get this functionality with hooks, but CLI params like this don’t override the globals by default, it will override the parameters after templating has been interpolated
n

Nok Lam Chan

04/17/2023, 1:36 PM
Or you can use a custom TemplatedConfigLoader https://github.com/kedro-org/kedro/discussions/1782
e

Elielson Silva

04/17/2023, 1:44 PM
Thks guys!